UNPKG

@vectorize-io/vectorize-client

Version:
34 lines (33 loc) 1.06 kB
/** * 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 Sharepoint1 */ export interface Sharepoint1 { /** * * @type {SHAREPOINTAuthConfig} * @memberof Sharepoint1 */ config?: SHAREPOINTAuthConfig; } /** * Check if a given object implements the Sharepoint1 interface. */ export declare function instanceOfSharepoint1(value: object): value is Sharepoint1; export declare function Sharepoint1FromJSON(json: any): Sharepoint1; export declare function Sharepoint1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Sharepoint1; export declare function Sharepoint1ToJSON(json: any): Sharepoint1; export declare function Sharepoint1ToJSONTyped(value?: Sharepoint1 | null, ignoreDiscriminator?: boolean): any;