@apideck/node
Version:
Apideck Node.js SDK
28 lines (27 loc) • 960 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.
*/
/**
* When a connector has schema_support, a call can be made to retrieve a json schema that describes a downstream resource.
* @export
* @interface SchemaSupport
*/
export interface SchemaSupport {
/**
* Can a resource schema be retrieved for this connector?
* @type {boolean}
* @memberof SchemaSupport
*/
supported?: boolean;
}
export declare function SchemaSupportFromJSON(json: any): SchemaSupport;
export declare function SchemaSupportFromJSONTyped(json: any, ignoreDiscriminator: boolean): SchemaSupport;
export declare function SchemaSupportToJSON(value?: SchemaSupport | null): any;