@apideck/node
Version:
Apideck Node.js SDK
34 lines (33 loc) • 977 B
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.
*/
/**
*
* @export
* @interface ConnectorTlsSupport
*/
export interface ConnectorTlsSupport {
/**
*
* @type {string}
* @memberof ConnectorTlsSupport
*/
type?: string;
/**
* Description of the TLS support
* @type {string}
* @memberof ConnectorTlsSupport
*/
description?: string;
}
export declare function ConnectorTlsSupportFromJSON(json: any): ConnectorTlsSupport;
export declare function ConnectorTlsSupportFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectorTlsSupport;
export declare function ConnectorTlsSupportToJSON(value?: ConnectorTlsSupport | null): any;