UNPKG

@apideck/node

Version:
59 lines (58 loc) 1.8 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. */ import { TooManyRequestsResponseDetail } from './TooManyRequestsResponseDetail'; /** * * @export * @interface TooManyRequestsResponse */ export interface TooManyRequestsResponse { /** * HTTP status code * @type {number} * @memberof TooManyRequestsResponse */ status_code?: number; /** * Contains an explanation of the status_code as defined in HTTP/1.1 standard (RFC 6585) * @type {string} * @memberof TooManyRequestsResponse */ error?: string; /** * The type of error returned * @type {string} * @memberof TooManyRequestsResponse */ type_name?: string; /** * A human-readable message providing more details about the error. * @type {string} * @memberof TooManyRequestsResponse */ message?: string; /** * * @type {TooManyRequestsResponseDetail} * @memberof TooManyRequestsResponse */ detail?: TooManyRequestsResponseDetail; /** * Link to documentation of error type * @type {string} * @memberof TooManyRequestsResponse */ ref?: string; } export declare function TooManyRequestsResponseFromJSON(json: any): TooManyRequestsResponse; export declare function TooManyRequestsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TooManyRequestsResponse; export declare function TooManyRequestsResponseToJSON(value?: TooManyRequestsResponse | null): any;