Skip to content

Commit

Permalink
Merge pull request #17 from faridibin/development
Browse files Browse the repository at this point in the history
Update PlanDTO to allow nullable readonly properties for send_invoice…
  • Loading branch information
faridibin authored Jan 18, 2025
2 parents 1214226 + d93570e commit 4b7bd11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DataTransferObjects/Recurring/PlanDTO.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ class PlanDTO implements DataTransferObject
*
* @var bool $send_invoices
*/
public readonly bool $send_invoices;
public readonly bool|null $send_invoices;

/**
* The send sms status
*
* @var bool $send_sms
*/
public readonly bool $send_sms;
public readonly bool|null $send_sms;

/**
* The collection of pages
Expand Down

0 comments on commit 4b7bd11

Please sign in to comment.