/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * * @export * @interface CreateRefund503Response */ export interface CreateRefund503Response { /** * * @type {string} * @memberof CreateRefund503Response */ errorCode?: CreateRefund503ResponseErrorCodeEnum; /** * * @type {string} * @memberof CreateRefund503Response */ message?: string; } /** * @export */ export declare const CreateRefund503ResponseErrorCodeEnum: { readonly ChannelUnavailable: "CHANNEL_UNAVAILABLE"; readonly OtpDeliveryError: "OTP_DELIVERY_ERROR"; }; export type CreateRefund503ResponseErrorCodeEnum = typeof CreateRefund503ResponseErrorCodeEnum[keyof typeof CreateRefund503ResponseErrorCodeEnum]; /** * Check if a given object implements the CreateRefund503Response interface. */ export declare function instanceOfCreateRefund503Response(value: object): boolean; export declare function CreateRefund503ResponseFromJSON(json: any): CreateRefund503Response; export declare function CreateRefund503ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateRefund503Response; export declare function CreateRefund503ResponseToJSON(value?: CreateRefund503Response | null): any;