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