UNPKG

@meeting-baas/sdk

Version:

Official SDK for Meeting BaaS API - https://meetingbaas.com

87 lines (86 loc) 2.06 kB
/** * Meeting BaaS API * Meeting BaaS API * * The version of the OpenAPI document: 1.1 * * * 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 RecentBotEntry */ export interface RecentBotEntry { /** * Number of times this bot data has been accessed (if tracked) * @type {number} * @memberof RecentBotEntry */ 'access_count'?: number | null; /** * Name of the bot * @type {string} * @memberof RecentBotEntry */ 'botName': string; /** * Creation timestamp of the bot in ISO-8601 format * @type {string} * @memberof RecentBotEntry */ 'createdAt': string; /** * Duration of the bot session in seconds (if completed) * @type {number} * @memberof RecentBotEntry */ 'duration'?: number | null; /** * End time of the bot session (if completed) in ISO-8601 format * @type {string} * @memberof RecentBotEntry */ 'ended_at'?: string | null; /** * Custom data object * @type {{ [key: string]: any | undefined; }} * @memberof RecentBotEntry */ 'extra': { [key: string]: any | undefined; }; /** * Unique identifier of the bot * @type {string} * @memberof RecentBotEntry */ 'id': string; /** * Last time this bot data was accessed (if available) * @type {string} * @memberof RecentBotEntry */ 'last_accessed_at'?: string | null; /** * URL of the meeting the bot joined * @type {string} * @memberof RecentBotEntry */ 'meetingUrl': string; /** * Session ID if the bot is active * @type {string} * @memberof RecentBotEntry */ 'session_id'?: string | null; /** * List of unique speaker names from the bot\'s transcripts * @type {Array<string>} * @memberof RecentBotEntry */ 'speakers': Array<string>; }