/** * 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 CreateRefund404Response */ export interface CreateRefund404Response { /** * * @type {string} * @memberof CreateRefund404Response */ errorCode?: CreateRefund404ResponseErrorCodeEnum; /** * * @type {string} * @memberof CreateRefund404Response */ message?: string; } /** * @export */ export declare const CreateRefund404ResponseErrorCodeEnum: { readonly DataNotFound: "DATA_NOT_FOUND"; }; export type CreateRefund404ResponseErrorCodeEnum = typeof CreateRefund404ResponseErrorCodeEnum[keyof typeof CreateRefund404ResponseErrorCodeEnum]; /** * Check if a given object implements the CreateRefund404Response interface. */ export declare function instanceOfCreateRefund404Response(value: object): boolean; export declare function CreateRefund404ResponseFromJSON(json: any): CreateRefund404Response; export declare function CreateRefund404ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateRefund404Response; export declare function CreateRefund404ResponseToJSON(value?: CreateRefund404Response | null): any;