UNPKG

@vectorize-io/vectorize-client

Version:
33 lines (32 loc) 1.15 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. */ /** * Authentication configuration for GitHub * @export * @interface GITHUBAuthConfig */ export interface GITHUBAuthConfig { /** * Personal Access Token. Example: Enter your GitHub personal access token * @type {string} * @memberof GITHUBAuthConfig */ oauthToken: string; } /** * Check if a given object implements the GITHUBAuthConfig interface. */ export declare function instanceOfGITHUBAuthConfig(value: object): value is GITHUBAuthConfig; export declare function GITHUBAuthConfigFromJSON(json: any): GITHUBAuthConfig; export declare function GITHUBAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): GITHUBAuthConfig; export declare function GITHUBAuthConfigToJSON(json: any): GITHUBAuthConfig; export declare function GITHUBAuthConfigToJSONTyped(value?: GITHUBAuthConfig | null, ignoreDiscriminator?: boolean): any;