@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 1.01 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 { DISCORDAuthConfig } from './DISCORDAuthConfig';
/**
*
* @export
* @interface Discord1
*/
export interface Discord1 {
/**
*
* @type {DISCORDAuthConfig}
* @memberof Discord1
*/
config?: DISCORDAuthConfig;
}
/**
* Check if a given object implements the Discord1 interface.
*/
export declare function instanceOfDiscord1(value: object): value is Discord1;
export declare function Discord1FromJSON(json: any): Discord1;
export declare function Discord1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Discord1;
export declare function Discord1ToJSON(json: any): Discord1;
export declare function Discord1ToJSONTyped(value?: Discord1 | null, ignoreDiscriminator?: boolean): any;