/** * 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 ValidationError */ export interface ValidationError { /** * * @type {number} * @memberof ValidationError */ statusCode: number; /** * * @type {string} * @memberof ValidationError */ error: string; /** * * @type {string} * @memberof ValidationError */ message: string; /** * * @type {object} * @memberof ValidationError */ validation?: object | null; } /** * Check if a given object implements the ValidationError interface. */ export declare function instanceOfValidationError(value: object): boolean; export declare function ValidationErrorFromJSON(json: any): ValidationError; export declare function ValidationErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationError; export declare function ValidationErrorToJSON(value?: ValidationError | null): any;