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