UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

28 lines (27 loc) 1.08 kB
/** * 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. */ /** * * @export */ export declare const CreditNoteReason: { readonly Duplicate: "duplicate"; readonly Fraudulent: "fraudulent"; readonly OrderChange: "order_change"; readonly ProductUnsatisfactory: "product_unsatisfactory"; }; export type CreditNoteReason = typeof CreditNoteReason[keyof typeof CreditNoteReason]; export declare function instanceOfCreditNoteReason(value: any): boolean; export declare function CreditNoteReasonFromJSON(json: any): CreditNoteReason; export declare function CreditNoteReasonFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreditNoteReason; export declare function CreditNoteReasonToJSON(value?: CreditNoteReason | null): any; export declare function CreditNoteReasonToJSONTyped(value: any, ignoreDiscriminator: boolean): CreditNoteReason;