/** * ChatGPT Function * Backend for Azure OpenAI integrations * * The version of the OpenAPI document: v1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface Event */ export interface Event { /** * * @type {string} * @memberof Event */ type?: string | null; /** * * @type {string} * @memberof Event */ text?: string | null; /** * * @type {Array} * @memberof Event */ files?: Array | null; /** * * @type {boolean} * @memberof Event */ upload?: boolean | null; /** * * @type {string} * @memberof Event */ user?: string | null; /** * * @type {boolean} * @memberof Event */ displayAsBot?: boolean | null; /** * * @type {string} * @memberof Event */ botId?: string | null; /** * * @type {string} * @memberof Event */ ts?: string | null; /** * * @type {string} * @memberof Event */ channel?: string | null; /** * * @type {string} * @memberof Event */ subtype?: string | null; /** * * @type {string} * @memberof Event */ eventTs?: string | null; /** * * @type {string} * @memberof Event */ channelType?: string | null; } /** * Check if a given object implements the Event interface. */ export declare function instanceOfEvent(value: object): value is Event; export declare function EventFromJSON(json: any): Event; export declare function EventFromJSONTyped(json: any, ignoreDiscriminator: boolean): Event; export declare function EventToJSON(json: any): Event; export declare function EventToJSONTyped(value?: Event | null, ignoreDiscriminator?: boolean): any;