|
@@ -2242,6 +2242,8 @@ type ChatRecordsInfo struct {
|
|
|
Content *string `json:"content,optional"`
|
|
|
// 内容类型:1-提问 2-回答
|
|
|
ContentType *uint8 `json:"contentType,optional"`
|
|
|
+ // 角色类型:1-用户 2-智能体
|
|
|
+ RoleType *string `json:"roleType,optional"`
|
|
|
// 会话ID
|
|
|
SessionId *uint64 `json:"sessionId,optional"`
|
|
|
// 用户ID
|
|
@@ -2323,11 +2325,16 @@ type ChatSessionInfo struct {
|
|
|
// 名称
|
|
|
Name *string `json:"name,optional"`
|
|
|
// 用户ID
|
|
|
- UserId *uint64 `json:"userId,optional"`
|
|
|
+ UserId *uint64 `json:"userId,optional"`
|
|
|
+ UserName *string `json:"userName,optional"`
|
|
|
// 聊天ID
|
|
|
BotId *uint64 `json:"botId,optional"`
|
|
|
+ // 主体名称
|
|
|
+ BotName *string `json:"botName,optional"`
|
|
|
// 类型:1-微信 2-小程序card 3-智能体
|
|
|
BotType *uint8 `json:"botType,optional"`
|
|
|
+ // 类型:1-微信 2-小程序card 3-智能体
|
|
|
+ BotTypeStr *string `json:"botTypeStr,optional"`
|
|
|
}
|
|
|
|
|
|
// The response data of chat session list | ChatSession列表数据
|
|
@@ -2396,7 +2403,7 @@ type WxCardInfo struct {
|
|
|
AiInfo *string `json:"aiInfo,optional"`
|
|
|
// 个人介绍
|
|
|
Intro *string `json:"intro,optional"`
|
|
|
- ShowChat *bool `json:"showChat,optioal"`
|
|
|
+ ShowChat *bool `json:"showChat,optional"`
|
|
|
ShowAi *bool `json:"showAi,optional"`
|
|
|
IsVip *bool `json:"isVip,optional"`
|
|
|
}
|
|
@@ -2408,6 +2415,7 @@ type WxCardSimpleInfo struct {
|
|
|
Avatar *string `json:"avatar,optional"`
|
|
|
// 名称
|
|
|
Name *string `json:"name,optional"`
|
|
|
+ Type *string `json:"type,optional"`
|
|
|
}
|
|
|
|
|
|
// The response data of wx card list | WxCard列表数据
|
|
@@ -2505,6 +2513,8 @@ type WxCardUserListReq struct {
|
|
|
Account *string `json:"account,optional"`
|
|
|
// 头像
|
|
|
Avatar *string `json:"avatar,optional"`
|
|
|
+ // 昵称
|
|
|
+ Nickname *string `json:"nickname,optional"`
|
|
|
}
|
|
|
|
|
|
// WxCardUser information response | WxCardUser信息返回体
|
|
@@ -2521,11 +2531,15 @@ type WxCardVisitInfo struct {
|
|
|
BaseIDInfo
|
|
|
// user表ID
|
|
|
UserId *uint64 `json:"userId,optional"`
|
|
|
+ // user名
|
|
|
+ UserName *string `json:"userName,optional"`
|
|
|
// 被访ID
|
|
|
BotId *uint64 `json:"botId,optional"`
|
|
|
// 类型:1-微信 2-小程序 3-智能体
|
|
|
- BotType *uint8 `json:"botType,optional"`
|
|
|
- CardInfo WxCardSimpleInfo `json:"cardInfo,optional,omitempty"`
|
|
|
+ BotType *uint8 `json:"botType,optional"`
|
|
|
+ // 类型:1-微信 2-小程序 3-智能体
|
|
|
+ BotTypeStr *string `json:"botTypeStr,optional"`
|
|
|
+ CardInfo WxCardSimpleInfo `json:"cardInfo,optional,omitempty"`
|
|
|
}
|
|
|
|
|
|
// swagger:model WxCardVisitReq
|
|
@@ -2571,6 +2585,9 @@ type WxCardVisitListInfo struct {
|
|
|
// swagger:model WxCardVisitListReq
|
|
|
type WxCardVisitListReq struct {
|
|
|
PageInfo
|
|
|
+ BotId *uint64 `json:"botId,optional"`
|
|
|
+ BotType *uint8 `json:"botType,optional"`
|
|
|
+ BotName *string `json:"botName,optional"`
|
|
|
}
|
|
|
|
|
|
// WxCardVisit information response | WxCardVisit信息返回体
|