@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
45 lines (44 loc) • 1.42 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 Discord
* @export
* @interface DISCORDAuthConfig
*/
export interface DISCORDAuthConfig {
/**
* Server ID. Example: Enter Server ID
* @type {string}
* @memberof DISCORDAuthConfig
*/
serverId: string;
/**
* Bot token. Example: Enter Token
* @type {string}
* @memberof DISCORDAuthConfig
*/
botToken: string;
/**
* Channel ID. Example: Enter channel ID
* @type {Array<string>}
* @memberof DISCORDAuthConfig
*/
channelIds: Array<string>;
}
/**
* Check if a given object implements the DISCORDAuthConfig interface.
*/
export declare function instanceOfDISCORDAuthConfig(value: object): value is DISCORDAuthConfig;
export declare function DISCORDAuthConfigFromJSON(json: any): DISCORDAuthConfig;
export declare function DISCORDAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): DISCORDAuthConfig;
export declare function DISCORDAuthConfigToJSON(json: any): DISCORDAuthConfig;
export declare function DISCORDAuthConfigToJSONTyped(value?: DISCORDAuthConfig | null, ignoreDiscriminator?: boolean): any;