/** * 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 ErrorErrorsInner */ export interface ErrorErrorsInner { /** * Precise location of the error * @type {string} * @memberof ErrorErrorsInner */ path: string; /** * Specific description of the error * @type {string} * @memberof ErrorErrorsInner */ message: string; } /** * Check if a given object implements the ErrorErrorsInner interface. */ export declare function instanceOfErrorErrorsInner(value: object): boolean; export declare function ErrorErrorsInnerFromJSON(json: any): ErrorErrorsInner; export declare function ErrorErrorsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorErrorsInner; export declare function ErrorErrorsInnerToJSON(value?: ErrorErrorsInner | null): any;