UNPKG

@apideck/node

Version:
58 lines (57 loc) 1.75 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 UnauthorizedResponse */ export interface UnauthorizedResponse { /** * HTTP status code * @type {number} * @memberof UnauthorizedResponse */ status_code?: number; /** * Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 7231) * @type {string} * @memberof UnauthorizedResponse */ error?: string; /** * The type of error returned * @type {string} * @memberof UnauthorizedResponse */ type_name?: string; /** * A human-readable message providing more details about the error. * @type {string} * @memberof UnauthorizedResponse */ message?: string; /** * Contains parameter or domain specific information related to the error and why it occurred. * @type {string | object} * @memberof UnauthorizedResponse */ detail?: string | object | null; /** * Link to documentation of error type * @type {string} * @memberof UnauthorizedResponse */ ref?: string; } export declare function UnauthorizedResponseFromJSON(json: any): UnauthorizedResponse; export declare function UnauthorizedResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnauthorizedResponse; export declare function UnauthorizedResponseToJSON(value?: UnauthorizedResponse | null): any;