@getopenpay/client
Version:
OpenPay API TypeScript SDK
29 lines (28 loc) • 1.14 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.
*/
/**
*
* @export
*/
export declare const RefundReasonEnum: {
readonly Manual: "manual";
readonly Duplicate: "duplicate";
readonly Fraudulent: "fraudulent";
readonly RequestedByCustomer: "requested_by_customer";
readonly ExpiredUncapturedCharge: "expired_uncaptured_charge";
};
export type RefundReasonEnum = typeof RefundReasonEnum[keyof typeof RefundReasonEnum];
export declare function instanceOfRefundReasonEnum(value: any): boolean;
export declare function RefundReasonEnumFromJSON(json: any): RefundReasonEnum;
export declare function RefundReasonEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): RefundReasonEnum;
export declare function RefundReasonEnumToJSON(value?: RefundReasonEnum | null): any;
export declare function RefundReasonEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): RefundReasonEnum;