Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Naoray committed Dec 15, 2024
1 parent 7a41616 commit 011ade9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Types/SalesInvoiceStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ class SalesInvoiceStatus
/**
* The sales invoice is in draft status and has not been sent or paid.
*/
const DRAFT = 'draft';
public const DRAFT = 'draft';

/**
* The sales invoice has been issued to the customer but has not been paid yet.
*/
const ISSUED = 'issued';
public const ISSUED = 'issued';

/**
* The sales invoice has been fully paid.
*/
const PAID = 'paid';
public const PAID = 'paid';
}

0 comments on commit 011ade9

Please sign in to comment.