@getopenpay/client
Version:
OpenPay API TypeScript SDK
33 lines (32 loc) • 1.59 kB
TypeScript
/**
* OpenPay API
* super charge your subscription management.
*
* The version of the OpenAPI document: 1.2.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* refer https://stripe.com/docs/billing/customer/balance#types
* @export
*/
export declare const CustomerBalanceTransactionType: {
readonly Adjustment: "adjustment";
readonly AppliedToInvoice: "applied_to_invoice";
readonly CreditNote: "credit_note";
readonly Initial: "initial";
readonly InvoiceOverpaid: "invoice_overpaid";
readonly InvoiceTooLarge: "invoice_too_large";
readonly InvoiceTooSmall: "invoice_too_small";
readonly UnspentReceiverCredit: "unspent_receiver_credit";
readonly UnappliedFromInvoice: "unapplied_from_invoice";
};
export type CustomerBalanceTransactionType = typeof CustomerBalanceTransactionType[keyof typeof CustomerBalanceTransactionType];
export declare function instanceOfCustomerBalanceTransactionType(value: any): boolean;
export declare function CustomerBalanceTransactionTypeFromJSON(json: any): CustomerBalanceTransactionType;
export declare function CustomerBalanceTransactionTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerBalanceTransactionType;
export declare function CustomerBalanceTransactionTypeToJSON(value?: CustomerBalanceTransactionType | null): any;
export declare function CustomerBalanceTransactionTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): CustomerBalanceTransactionType;