/** * 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 GetCustomerByReferenceID400ResponseAllOf */ export interface GetCustomerByReferenceID400ResponseAllOf { /** * * @type {string} * @memberof GetCustomerByReferenceID400ResponseAllOf */ errorCode?: GetCustomerByReferenceID400ResponseAllOfErrorCodeEnum; /** * * @type {any} * @memberof GetCustomerByReferenceID400ResponseAllOf */ message?: any | null; } /** * @export */ export declare const GetCustomerByReferenceID400ResponseAllOfErrorCodeEnum: { readonly EntityNotFoundError: "ENTITY_NOT_FOUND_ERROR"; readonly ClientNotFoundError: "CLIENT_NOT_FOUND_ERROR"; readonly EndCustomerNotFoundError: "END_CUSTOMER_NOT_FOUND_ERROR"; readonly ApiValidationError: "API_VALIDATION_ERROR"; }; export type GetCustomerByReferenceID400ResponseAllOfErrorCodeEnum = typeof GetCustomerByReferenceID400ResponseAllOfErrorCodeEnum[keyof typeof GetCustomerByReferenceID400ResponseAllOfErrorCodeEnum]; /** * Check if a given object implements the GetCustomerByReferenceID400ResponseAllOf interface. */ export declare function instanceOfGetCustomerByReferenceID400ResponseAllOf(value: object): boolean; export declare function GetCustomerByReferenceID400ResponseAllOfFromJSON(json: any): GetCustomerByReferenceID400ResponseAllOf; export declare function GetCustomerByReferenceID400ResponseAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCustomerByReferenceID400ResponseAllOf; export declare function GetCustomerByReferenceID400ResponseAllOfToJSON(value?: GetCustomerByReferenceID400ResponseAllOf | null): any;