@apideck/node
Version:
Apideck Node.js SDK
53 lines (52 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 { ResourceStatus } from './ResourceStatus';
/**
*
* @export
* @interface LinkedConnectorResource
*/
export interface LinkedConnectorResource {
/**
* ID of the resource, typically a lowercased version of name.
* @type {string}
* @memberof LinkedConnectorResource
*/
id?: string;
/**
* Name of the resource (plural)
* @type {string}
* @memberof LinkedConnectorResource
*/
name?: string;
/**
*
* @type {ResourceStatus}
* @memberof LinkedConnectorResource
*/
status?: ResourceStatus;
/**
* ID of the resource in the Connector's API (downstream)
* @type {string}
* @memberof LinkedConnectorResource
*/
downstream_id?: string;
/**
* Name of the resource in the Connector's API (downstream)
* @type {string}
* @memberof LinkedConnectorResource
*/
downstream_name?: string;
}
export declare function LinkedConnectorResourceFromJSON(json: any): LinkedConnectorResource;
export declare function LinkedConnectorResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkedConnectorResource;
export declare function LinkedConnectorResourceToJSON(value?: LinkedConnectorResource | null): any;