@apideck/node
Version:
Apideck Node.js SDK
48 lines (47 loc) • 1.31 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.
*/
import { Connection } from './Connection';
import { Raw } from './Raw';
/**
*
* @export
* @interface GetConnectionResponse
*/
export interface GetConnectionResponse {
/**
* HTTP Response Status Code
* @type {number}
* @memberof GetConnectionResponse
*/
status_code: number;
/**
* HTTP Response Status
* @type {string}
* @memberof GetConnectionResponse
*/
status: string;
/**
*
* @type {Connection}
* @memberof GetConnectionResponse
*/
data: Connection;
/**
*
* @type {Raw}
* @memberof GetConnectionResponse
*/
_raw?: Raw | null;
}
export declare function GetConnectionResponseFromJSON(json: any): GetConnectionResponse;
export declare function GetConnectionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetConnectionResponse;
export declare function GetConnectionResponseToJSON(value?: GetConnectionResponse | null): any;