UNPKG

@apideck/node

Version:
58 lines (57 loc) 1.79 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * 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 UnexpectedErrorResponse */ export interface UnexpectedErrorResponse { /** * HTTP status code * @type {number} * @memberof UnexpectedErrorResponse */ status_code?: number; /** * Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 7231) * @type {string} * @memberof UnexpectedErrorResponse */ error?: string; /** * The type of error returned * @type {string} * @memberof UnexpectedErrorResponse */ type_name?: string; /** * A human-readable message providing more details about the error. * @type {string} * @memberof UnexpectedErrorResponse */ message?: string; /** * Contains parameter or domain specific information related to the error and why it occurred. * @type {string | object} * @memberof UnexpectedErrorResponse */ detail?: string | object | null; /** * Link to documentation of error type * @type {string} * @memberof UnexpectedErrorResponse */ ref?: string; } export declare function UnexpectedErrorResponseFromJSON(json: any): UnexpectedErrorResponse; export declare function UnexpectedErrorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnexpectedErrorResponse; export declare function UnexpectedErrorResponseToJSON(value?: UnexpectedErrorResponse | null): any;