TranscriptStore interface
脚本记录器存储对话活动以供召回。
- 扩展
方法
delete |
删除特定对话及其所有活动。 |
get |
获取对话的活动(例如脚本) |
list |
列出 channelId 中的对话。 |
继承的方法
log |
将活动记录到脚本。 |
方法详细信息
deleteTranscript(string, string)
删除特定对话及其所有活动。
function deleteTranscript(channelId: string, conversationId: string): Promise<void>
参数
- channelId
-
string
对话所在的频道 ID。
- conversationId
-
string
要删除的会话的 ID。
返回
Promise<void>
getTranscriptActivities(string, string, string, Date)
获取对话的活动(例如脚本)
function getTranscriptActivities(channelId: string, conversationId: string, continuationToken?: string, startDate?: Date): Promise<PagedResult<Activity>>
参数
- channelId
-
string
通道 ID。
- conversationId
-
string
对话 ID。
- continuationToken
-
string
继续标记以分页浏览结果。
- startDate
-
Date
最早包含的时间。
返回
Promise<PagedResult<Activity>>
listTranscripts(string, string)
列出 channelId 中的对话。
function listTranscripts(channelId: string, continuationToken?: string): Promise<PagedResult<TranscriptInfo>>
参数
- channelId
-
string
通道 ID。
- continuationToken
-
string
继续标记以分页浏览结果。
返回
Promise<PagedResult<TranscriptInfo>>
继承的方法详细信息
logActivity(Activity)
将活动记录到脚本。
function logActivity(activity: Activity): void | Promise<void>
参数
- activity
-
Activity
正在记录的活动。
返回
void | Promise<void>