/** * 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 CreateRefund403Response */ export interface CreateRefund403Response { /** * * @type {string} * @memberof CreateRefund403Response */ errorCode?: CreateRefund403ResponseErrorCodeEnum; /** * * @type {string} * @memberof CreateRefund403Response */ message?: string; } /** * @export */ export declare const CreateRefund403ResponseErrorCodeEnum: { readonly Unauthorized: "UNAUTHORIZED"; }; export type CreateRefund403ResponseErrorCodeEnum = typeof CreateRefund403ResponseErrorCodeEnum[keyof typeof CreateRefund403ResponseErrorCodeEnum]; /** * Check if a given object implements the CreateRefund403Response interface. */ export declare function instanceOfCreateRefund403Response(value: object): boolean; export declare function CreateRefund403ResponseFromJSON(json: any): CreateRefund403Response; export declare function CreateRefund403ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateRefund403Response; export declare function CreateRefund403ResponseToJSON(value?: CreateRefund403Response | null): any;