/** * 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 GetAllRefundsDefaultResponse */ export interface GetAllRefundsDefaultResponse { /** * * @type {string} * @memberof GetAllRefundsDefaultResponse */ errorCode?: string; /** * * @type {string} * @memberof GetAllRefundsDefaultResponse */ message?: string; } /** * Check if a given object implements the GetAllRefundsDefaultResponse interface. */ export declare function instanceOfGetAllRefundsDefaultResponse(value: object): boolean; export declare function GetAllRefundsDefaultResponseFromJSON(json: any): GetAllRefundsDefaultResponse; export declare function GetAllRefundsDefaultResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAllRefundsDefaultResponse; export declare function GetAllRefundsDefaultResponseToJSON(value?: GetAllRefundsDefaultResponse | null): any;