@apideck/node
Version:
Apideck Node.js SDK
62 lines (61 loc) • 1.6 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 { Connector } from './Connector';
import { Links } from './Links';
import { Meta } from './Meta';
import { Raw } from './Raw';
/**
*
* @export
* @interface GetConnectorsResponse
*/
export interface GetConnectorsResponse {
/**
* HTTP Response Status Code
* @type {number}
* @memberof GetConnectorsResponse
*/
status_code: number;
/**
* HTTP Response Status
* @type {string}
* @memberof GetConnectorsResponse
*/
status: string;
/**
*
* @type {Array<Connector>}
* @memberof GetConnectorsResponse
*/
data: Array<Connector>;
/**
*
* @type {Raw}
* @memberof GetConnectorsResponse
*/
_raw?: Raw | null;
/**
*
* @type {Meta}
* @memberof GetConnectorsResponse
*/
meta?: Meta;
/**
*
* @type {Links}
* @memberof GetConnectorsResponse
*/
links?: Links;
}
export declare function GetConnectorsResponseFromJSON(json: any): GetConnectorsResponse;
export declare function GetConnectorsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetConnectorsResponse;
export declare function GetConnectorsResponseToJSON(value?: GetConnectorsResponse | null): any;