-
Notifications
You must be signed in to change notification settings - Fork 850
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add new constants for collection_method on Invoice #674
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,6 +79,25 @@ class Invoice extends ApiResource | |
use ApiOperations\Retrieve; | ||
use ApiOperations\Update; | ||
|
||
/** | ||
* Possible string representations of the billing reason. | ||
* @link https://stripe.com/docs/api/invoices/object#invoice_object-billing_reason | ||
*/ | ||
const BILLING_REASON_MANUAL = 'manual'; | ||
const BILLING_REASON_SUBSCRIPTION = 'subscription'; | ||
const BILLING_REASON_SUBSCRIPTION_CREATE = 'subscription_create'; | ||
const BILLING_REASON_SUBSCRIPTION_CYCLE = 'subscription_cycle'; | ||
const BILLING_REASON_SUBSCRIPTION_THRESHOLD = 'subscription_threshold'; | ||
const BILLING_REASON_SUBSCRIPTION_UPDATE = 'subscription_update'; | ||
const BILLING_REASON_UPCOMING = 'upcoming'; | ||
|
||
/** | ||
* Possible string representations of the `collection_method` property. | ||
* @link https://stripe.com/docs/api/invoices/object#invoice_object-collection_method | ||
*/ | ||
const COLLECTION_METHOD_CHARGE_AUTOMATICALLY = 'charge_automatically'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (And same down here.) |
||
const COLLECTION_METHOD_SEND_INVOICE = 'send_invoice'; | ||
|
||
/** | ||
* Possible string representations of the invoice status. | ||
* @link https://stripe.com/docs/api/invoices/object#invoice_object-status | ||
|
@@ -90,23 +109,12 @@ class Invoice extends ApiResource | |
const STATUS_VOID = 'void'; | ||
|
||
/** | ||
* Possible string representations of the billing. | ||
* Possible string representations of the `billing` property. | ||
* @deprecated Use `collection_method` instead. | ||
* @link https://stripe.com/docs/api/invoices/object#invoice_object-billing | ||
*/ | ||
const BILLING_SEND_INVOICE = 'send_invoice'; | ||
const BILLING_CHARGE_AUTOMATICALLY = 'charge_automatically'; | ||
|
||
/** | ||
* Possible string representations of the billing reason. | ||
* @link https://stripe.com/docs/api/invoices/object#invoice_object-billing_reason | ||
*/ | ||
const BILLING_REASON_SUBSCRIPTION = 'subscription'; | ||
const BILLING_REASON_SUBSCRIPTION_CREATE = 'subscription_create'; | ||
const BILLING_REASON_SUBSCRIPTION_CYCLE = 'subscription_cycle'; | ||
const BILLING_REASON_SUBSCRIPTION_UPDATE = 'subscription_update'; | ||
const BILLING_REASON_SUBSCRIPTION_THRESHOLD = 'subscription_threshold'; | ||
const BILLING_REASON_MANUAL = 'manual'; | ||
const BILLING_REASON_UPCOMING = 'upcoming'; | ||
const BILLING_SEND_INVOICE = 'send_invoice'; | ||
|
||
/** | ||
* @param array|null $params | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Super nitpick: Looks like it was carried over from before, but minor misalphabetization here ("U" before "T").