@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 1.06 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 { CONFLUENCEAuthConfig } from './CONFLUENCEAuthConfig';
/**
*
* @export
* @interface Confluence1
*/
export interface Confluence1 {
/**
*
* @type {CONFLUENCEAuthConfig}
* @memberof Confluence1
*/
config?: CONFLUENCEAuthConfig;
}
/**
* Check if a given object implements the Confluence1 interface.
*/
export declare function instanceOfConfluence1(value: object): value is Confluence1;
export declare function Confluence1FromJSON(json: any): Confluence1;
export declare function Confluence1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Confluence1;
export declare function Confluence1ToJSON(json: any): Confluence1;
export declare function Confluence1ToJSONTyped(value?: Confluence1 | null, ignoreDiscriminator?: boolean): any;