@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
45 lines (44 loc) • 1.55 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 Confluence
* @export
* @interface CONFLUENCEAuthConfig
*/
export interface CONFLUENCEAuthConfig {
/**
* Username. Example: Enter your Confluence username
* @type {string}
* @memberof CONFLUENCEAuthConfig
*/
username: string;
/**
* API Token. Example: Enter your Confluence API token
* @type {string}
* @memberof CONFLUENCEAuthConfig
*/
apiToken: string;
/**
* Domain. Example: Enter your Confluence domain (e.g. my-domain.atlassian.net or confluence.<my-company>.com)
* @type {string}
* @memberof CONFLUENCEAuthConfig
*/
domain: string;
}
/**
* Check if a given object implements the CONFLUENCEAuthConfig interface.
*/
export declare function instanceOfCONFLUENCEAuthConfig(value: object): value is CONFLUENCEAuthConfig;
export declare function CONFLUENCEAuthConfigFromJSON(json: any): CONFLUENCEAuthConfig;
export declare function CONFLUENCEAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): CONFLUENCEAuthConfig;
export declare function CONFLUENCEAuthConfigToJSON(json: any): CONFLUENCEAuthConfig;
export declare function CONFLUENCEAuthConfigToJSONTyped(value?: CONFLUENCEAuthConfig | null, ignoreDiscriminator?: boolean): any;