/** * 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 RealtimeAgentsDto */ export interface RealtimeAgentsDto { /** * * @type {string} * @memberof RealtimeAgentsDto */ context?: string; /** * * @type {string} * @memberof RealtimeAgentsDto */ description?: string; } /** * Check if a given object implements the RealtimeAgentsDto interface. */ export declare function instanceOfRealtimeAgentsDto(value: object): value is RealtimeAgentsDto; export declare function RealtimeAgentsDtoFromJSON(json: any): RealtimeAgentsDto; export declare function RealtimeAgentsDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): RealtimeAgentsDto; export declare function RealtimeAgentsDtoToJSON(json: any): RealtimeAgentsDto; export declare function RealtimeAgentsDtoToJSONTyped(value?: RealtimeAgentsDto | null, ignoreDiscriminator?: boolean): any;