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