/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface ErrorResponse */ export interface ErrorResponse { /** * HTTP status code * @type {number} * @memberof ErrorResponse */ code: number; /** * Custom error code type * @type {string} * @memberof ErrorResponse */ codeType: string; /** * Additional error details * @type {Array} * @memberof ErrorResponse */ details: Array; /** * Error message * @type {string} * @memberof ErrorResponse */ message: string; } /** * Check if a given object implements the ErrorResponse interface. */ export declare function instanceOfErrorResponse(value: object): value is ErrorResponse; export declare function ErrorResponseFromJSON(json: any): ErrorResponse; export declare function ErrorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorResponse; export declare function ErrorResponseToJSON(json: any): ErrorResponse; export declare function ErrorResponseToJSONTyped(value?: ErrorResponse | null, ignoreDiscriminator?: boolean): any;