@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
45 lines (44 loc) • 1.47 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.
*/
/**
* Authentication configuration for SharePoint
* @export
* @interface SHAREPOINTAuthConfig
*/
export interface SHAREPOINTAuthConfig {
/**
* Client Id. Example: Enter Client Id
* @type {string}
* @memberof SHAREPOINTAuthConfig
*/
msClientId: string;
/**
* Tenant Id. Example: Enter Tenant Id
* @type {string}
* @memberof SHAREPOINTAuthConfig
*/
msTenantId: string;
/**
* Client Secret. Example: Enter Client Secret
* @type {string}
* @memberof SHAREPOINTAuthConfig
*/
msClientSecret: string;
}
/**
* Check if a given object implements the SHAREPOINTAuthConfig interface.
*/
export declare function instanceOfSHAREPOINTAuthConfig(value: object): value is SHAREPOINTAuthConfig;
export declare function SHAREPOINTAuthConfigFromJSON(json: any): SHAREPOINTAuthConfig;
export declare function SHAREPOINTAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): SHAREPOINTAuthConfig;
export declare function SHAREPOINTAuthConfigToJSON(json: any): SHAREPOINTAuthConfig;
export declare function SHAREPOINTAuthConfigToJSONTyped(value?: SHAREPOINTAuthConfig | null, ignoreDiscriminator?: boolean): any;