v1

package
v1.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 12, 2023 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MessageCollectReq added in v1.0.0

type MessageCollectReq struct {
	g.Meta `path:"/message/collect" tags:"talk_message" method:"post" summary:"收藏会话表情图片接口"`
	model.MessageCollectReq
}

收藏会话表情图片接口请求参数

type MessageCollectRes added in v1.0.0

type MessageCollectRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

收藏会话表情图片接口响应参数

type MessageDeleteReq added in v1.0.0

type MessageDeleteReq struct {
	g.Meta `path:"/message/delete" tags:"talk_message" method:"post" summary:"删除聊天记录接口"`
	model.MessageDeleteReq
}

删除聊天记录接口请求参数

type MessageDeleteRes added in v1.0.0

type MessageDeleteRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

删除聊天记录接口响应参数

type MessageFileReq added in v1.0.0

type MessageFileReq struct {
	g.Meta `path:"/message/file" tags:"talk_message" method:"post" summary:"发送文件消息接口"`
	model.MessageFileReq
}

发送文件消息接口请求参数

type MessageFileRes added in v1.0.0

type MessageFileRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

发送文件消息接口响应参数

type MessagePublishReq added in v1.0.0

type MessagePublishReq struct {
	g.Meta `path:"/message/publish" tags:"talk_message" method:"post" summary:"发送消息接口"`
	model.MessagePublishReq
}

发送消息接口请求参数

type MessagePublishRes added in v1.0.0

type MessagePublishRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

发送消息接口响应参数

type MessageRevokeReq added in v1.0.0

type MessageRevokeReq struct {
	g.Meta `path:"/message/revoke" tags:"talk_message" method:"post" summary:"撤销聊天消息接口"`
	model.MessageRevokeReq
}

撤销聊天消息接口请求参数

type MessageRevokeRes added in v1.0.0

type MessageRevokeRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

撤销聊天消息接口响应参数

type MessageVoteHandleReq added in v1.0.0

type MessageVoteHandleReq struct {
	g.Meta `path:"/message/vote/handle" tags:"talk_message" method:"post" summary:"投票消息处理接口"`
	model.MessageVoteHandleReq
}

投票消息处理接口请求参数

type MessageVoteHandleRes added in v1.0.0

type MessageVoteHandleRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.VoteStatistics
}

投票消息接口响应参数

type MessageVoteReq added in v1.0.0

type MessageVoteReq struct {
	g.Meta `path:"/message/vote" tags:"talk_message" method:"post" summary:"投票消息接口"`
	model.MessageVoteReq
}

投票消息接口请求参数

type MessageVoteRes added in v1.0.0

type MessageVoteRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

投票消息接口响应参数

type RecordsFileDownloadReq

type RecordsFileDownloadReq struct {
	g.Meta `path:"/records/file/download" tags:"talk_records" method:"get" summary:"会话文件下载接口"`
	model.RecordsFileDownloadReq
}

会话文件下载接口请求参数

type RecordsFileDownloadRes

type RecordsFileDownloadRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

会话文件下载接口响应参数

type RecordsForwardReq added in v1.0.0

type RecordsForwardReq struct {
	g.Meta `path:"/records/forward" tags:"talk_records" method:"get" summary:"会话转发记录接口"`
	model.RecordsForwardReq
}

会话转发记录接口请求参数

type RecordsForwardRes added in v1.0.0

type RecordsForwardRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.TalkRecordsRes
}

会话转发记录接口响应参数

type RecordsReq added in v1.0.0

type RecordsReq struct {
	g.Meta `path:"/records" tags:"talk_records" method:"get" summary:"会话面板记录接口"`
	model.TalkRecordsReq
}

会话面板记录接口请求参数

type RecordsRes added in v1.0.0

type RecordsRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.TalkRecordsRes
}

会话面板记录接口响应参数

type RecordsSearchHistoryReq added in v1.0.0

type RecordsSearchHistoryReq struct {
	g.Meta `path:"/records/history" tags:"talk_records" method:"get" summary:"历史会话记录接口"`
	model.TalkRecordsReq
}

历史会话记录接口请求参数

type RecordsSearchHistoryRes added in v1.0.0

type RecordsSearchHistoryRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.TalkRecordsRes
}

历史会话记录接口响应参数

type SessionClearContextReq added in v1.0.0

type SessionClearContextReq struct {
	g.Meta `path:"/clear/context" tags:"talk_session" method:"post" summary:"清空上下文接口"`
	model.SessionClearContextReq
}

清空上下文接口请求参数

type SessionClearContextRes added in v1.0.0

type SessionClearContextRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

清空上下文接口响应参数

type SessionClearUnreadNumReq added in v1.0.0

type SessionClearUnreadNumReq struct {
	g.Meta `path:"/unread/clear" tags:"talk_session" method:"post" summary:"会话未读数清除接口"`
	model.SessionClearUnreadNumReq
}

会话未读数清除接口请求参数

type SessionClearUnreadNumRes added in v1.0.0

type SessionClearUnreadNumRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

会话未读数清除接口响应参数

type SessionCreateReq added in v1.0.0

type SessionCreateReq struct {
	g.Meta `path:"/create" tags:"talk_session" method:"post" summary:"会话创建接口"`
	model.SessionCreateReq
}

会话创建接口请求参数

type SessionCreateRes added in v1.0.0

type SessionCreateRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.SessionCreateRes
}

会话创建接口响应参数

type SessionDeleteReq added in v1.0.0

type SessionDeleteReq struct {
	g.Meta `path:"/delete" tags:"talk_session" method:"post" summary:"会话删除接口"`
	model.SessionDeleteReq
}

会话删除接口请求参数

type SessionDeleteRes added in v1.0.0

type SessionDeleteRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

会话删除接口响应参数

type SessionDisturbReq added in v1.0.0

type SessionDisturbReq struct {
	g.Meta `path:"/disturb" tags:"talk_session" method:"post" summary:"会话免打扰接口"`
	model.SessionDisturbReq
}

会话免打扰接口请求参数

type SessionDisturbRes added in v1.0.0

type SessionDisturbRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

会话免打扰接口响应参数

type SessionListReq added in v1.0.0

type SessionListReq struct {
	g.Meta `path:"/list" tags:"talk_session" method:"get" summary:"会话列表接口"`
}

会话列表接口请求参数

type SessionListRes added in v1.0.0

type SessionListRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.SessionListRes
}

会话列表接口响应参数

type SessionOpenContextReq added in v1.0.0

type SessionOpenContextReq struct {
	g.Meta `path:"/open/context" tags:"talk_session" method:"post" summary:"开启/关闭上下文接口"`
	model.SessionOpenContextReq
}

开启/关闭上下文接口请求参数

type SessionOpenContextRes added in v1.0.0

type SessionOpenContextRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

开启/关闭上下文接口响应参数

type SessionTopReq added in v1.0.0

type SessionTopReq struct {
	g.Meta `path:"/topping" tags:"talk_session" method:"post" summary:"会话置顶接口"`
	model.SessionTopReq
}

会话置顶接口请求参数

type SessionTopRes added in v1.0.0

type SessionTopRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

会话置顶接口响应参数

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL