@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.5 kB
TypeScript
/**
* Vectorize API
* API for Vectorize services (Beta)
*
* The version of the OpenAPI document: 0.1.2
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { SHAREPOINTAuthConfig } from './SHAREPOINTAuthConfig';
/**
*
* @export
* @interface Sharepoint
*/
export interface Sharepoint {
/**
* Name of the connector
* @type {string}
* @memberof Sharepoint
*/
name: string;
/**
* Connector type (must be "SHAREPOINT")
* @type {string}
* @memberof Sharepoint
*/
type: SharepointTypeEnum;
/**
*
* @type {SHAREPOINTAuthConfig}
* @memberof Sharepoint
*/
config: SHAREPOINTAuthConfig;
}
/**
* @export
*/
export declare const SharepointTypeEnum: {
readonly Sharepoint: "SHAREPOINT";
};
export type SharepointTypeEnum = typeof SharepointTypeEnum[keyof typeof SharepointTypeEnum];
/**
* Check if a given object implements the Sharepoint interface.
*/
export declare function instanceOfSharepoint(value: object): value is Sharepoint;
export declare function SharepointFromJSON(json: any): Sharepoint;
export declare function SharepointFromJSONTyped(json: any, ignoreDiscriminator: boolean): Sharepoint;
export declare function SharepointToJSON(json: any): Sharepoint;
export declare function SharepointToJSONTyped(value?: Sharepoint | null, ignoreDiscriminator?: boolean): any;