@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.38 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 { GITHUBAuthConfig } from './GITHUBAuthConfig';
/**
*
* @export
* @interface Github
*/
export interface Github {
/**
* Name of the connector
* @type {string}
* @memberof Github
*/
name: string;
/**
* Connector type (must be "GITHUB")
* @type {string}
* @memberof Github
*/
type: GithubTypeEnum;
/**
*
* @type {GITHUBAuthConfig}
* @memberof Github
*/
config: GITHUBAuthConfig;
}
/**
* @export
*/
export declare const GithubTypeEnum: {
readonly Github: "GITHUB";
};
export type GithubTypeEnum = typeof GithubTypeEnum[keyof typeof GithubTypeEnum];
/**
* Check if a given object implements the Github interface.
*/
export declare function instanceOfGithub(value: object): value is Github;
export declare function GithubFromJSON(json: any): Github;
export declare function GithubFromJSONTyped(json: any, ignoreDiscriminator: boolean): Github;
export declare function GithubToJSON(json: any): Github;
export declare function GithubToJSONTyped(value?: Github | null, ignoreDiscriminator?: boolean): any;