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