/** * 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 GetCustomerByReferenceID400Response */ export interface GetCustomerByReferenceID400Response { /** * * @type {string} * @memberof GetCustomerByReferenceID400Response */ errorCode: GetCustomerByReferenceID400ResponseErrorCodeEnum; /** * * @type {any} * @memberof GetCustomerByReferenceID400Response */ message: any | null; /** * * @type {Array} * @memberof GetCustomerByReferenceID400Response */ errors?: Array; } /** * @export */ export declare const GetCustomerByReferenceID400ResponseErrorCodeEnum: { 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 GetCustomerByReferenceID400ResponseErrorCodeEnum = typeof GetCustomerByReferenceID400ResponseErrorCodeEnum[keyof typeof GetCustomerByReferenceID400ResponseErrorCodeEnum]; /** * Check if a given object implements the GetCustomerByReferenceID400Response interface. */ export declare function instanceOfGetCustomerByReferenceID400Response(value: object): boolean; export declare function GetCustomerByReferenceID400ResponseFromJSON(json: any): GetCustomerByReferenceID400Response; export declare function GetCustomerByReferenceID400ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCustomerByReferenceID400Response; export declare function GetCustomerByReferenceID400ResponseToJSON(value?: GetCustomerByReferenceID400Response | null): any;