UNPKG

@apideck/node

Version:
91 lines (85 loc) 2.41 kB
/* tslint:disable */ /* eslint-disable */ /** * 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 { exists } from '../runtime' import { ResourceStatus, ResourceStatusFromJSON, ResourceStatusToJSON } 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 function LinkedConnectorResourceFromJSON(json: any): LinkedConnectorResource { return LinkedConnectorResourceFromJSONTyped(json, false) } export function LinkedConnectorResourceFromJSONTyped( json: any, ignoreDiscriminator: boolean ): LinkedConnectorResource { if (json === undefined || json === null) { return json } return { id: !exists(json, 'id') ? undefined : json['id'], name: !exists(json, 'name') ? undefined : json['name'], status: !exists(json, 'status') ? undefined : ResourceStatusFromJSON(json['status']), downstream_id: !exists(json, 'downstream_id') ? undefined : json['downstream_id'], downstream_name: !exists(json, 'downstream_name') ? undefined : json['downstream_name'] } } export function LinkedConnectorResourceToJSON(value?: LinkedConnectorResource | null): any { if (value === undefined) { return undefined } if (value === null) { return null } return { id: value.id, name: value.name, status: ResourceStatusToJSON(value.status), downstream_id: value.downstream_id, downstream_name: value.downstream_name } }