/** * 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 CreateCustomer400ResponseAllOf */ export interface CreateCustomer400ResponseAllOf { /** * * @type {string} * @memberof CreateCustomer400ResponseAllOf */ errorCode?: CreateCustomer400ResponseAllOfErrorCodeEnum; /** * * @type {any} * @memberof CreateCustomer400ResponseAllOf */ message?: any | null; } /** * @export */ export declare const CreateCustomer400ResponseAllOfErrorCodeEnum: { readonly DuplicateEndCustomerError: "DUPLICATE_END_CUSTOMER_ERROR"; readonly ApiValidationError: "API_VALIDATION_ERROR"; }; export type CreateCustomer400ResponseAllOfErrorCodeEnum = typeof CreateCustomer400ResponseAllOfErrorCodeEnum[keyof typeof CreateCustomer400ResponseAllOfErrorCodeEnum]; /** * Check if a given object implements the CreateCustomer400ResponseAllOf interface. */ export declare function instanceOfCreateCustomer400ResponseAllOf(value: object): boolean; export declare function CreateCustomer400ResponseAllOfFromJSON(json: any): CreateCustomer400ResponseAllOf; export declare function CreateCustomer400ResponseAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCustomer400ResponseAllOf; export declare function CreateCustomer400ResponseAllOfToJSON(value?: CreateCustomer400ResponseAllOf | null): any;