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