Skip to content

Commit

Permalink
Update PlanDTO to allow nullable readonly properties for send_invoice…
Browse files Browse the repository at this point in the history
…s and send_sms
  • Loading branch information
faridibin committed Jan 18, 2025
1 parent fc0267e commit d93570e
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 d93570e

Please sign in to comment.