UNPKG

@apideck/node

Version:
48 lines (47 loc) 1.35 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 { Connection } from './Connection'; import { Raw } from './Raw'; /** * * @export * @interface CreateConnectionResponse */ export interface CreateConnectionResponse { /** * HTTP Response Status Code * @type {number} * @memberof CreateConnectionResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof CreateConnectionResponse */ status: string; /** * * @type {Connection} * @memberof CreateConnectionResponse */ data: Connection; /** * * @type {Raw} * @memberof CreateConnectionResponse */ _raw?: Raw | null; } export declare function CreateConnectionResponseFromJSON(json: any): CreateConnectionResponse; export declare function CreateConnectionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateConnectionResponse; export declare function CreateConnectionResponseToJSON(value?: CreateConnectionResponse | null): any;