28 lines
550 B
TypeScript
28 lines
550 B
TypeScript
/**
|
|
* @enum
|
|
*
|
|
* The payment collection's status.
|
|
*/
|
|
export enum PaymentCollectionStatus {
|
|
/**
|
|
* The payment collection isn't paid.
|
|
*/
|
|
NOT_PAID = "not_paid",
|
|
/**
|
|
* The payment collection is awaiting payment.
|
|
*/
|
|
AWAITING = "awaiting",
|
|
/**
|
|
* The payment collection is authorized.
|
|
*/
|
|
AUTHORIZED = "authorized",
|
|
/**
|
|
* Some of the payments in the payment collection are authorized.
|
|
*/
|
|
PARTIALLY_AUTHORIZED = "partially_authorized",
|
|
/**
|
|
* The payment collection is canceled.
|
|
*/
|
|
CANCELED = "canceled",
|
|
}
|