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