UNPKG

@apideck/node

Version:
67 lines (66 loc) 1.61 kB
/** * 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 ConnectorDoc */ export interface ConnectorDoc { /** * A unique identifier for an object. * @type {string} * @memberof ConnectorDoc */ readonly id?: string; /** * Name of the doc. * @type {string} * @memberof ConnectorDoc */ name?: string; /** * Audience for the doc. * @type {string} * @memberof ConnectorDoc */ audience?: ConnectorDocAudience; /** * Format of the doc. * @type {string} * @memberof ConnectorDoc */ format?: ConnectorDocFormat; /** * Link to fetch the content of the doc. * @type {string} * @memberof ConnectorDoc */ url?: string; } /** * @export * @enum {string} */ export declare enum ConnectorDocAudience { application_owner = "application_owner", consumer = "consumer" } /** * @export * @enum {string} */ export declare enum ConnectorDocFormat { markdown = "markdown" } export declare function ConnectorDocFromJSON(json: any): ConnectorDoc; export declare function ConnectorDocFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectorDoc; export declare function ConnectorDocToJSON(value?: ConnectorDoc | null): any;