mirror of
https://github.com/deanxv/coze-discord-proxy.git
synced 2026-06-04 21:02:47 +08:00
13 lines
497 B
Go
13 lines
497 B
Go
package model
|
|
|
|
type ThreadResp struct {
|
|
Id string `json:"id" swaggertype:"string" description:"线程ID"`
|
|
Name string `json:"name" swaggertype:"string" description:"线程名称"`
|
|
}
|
|
|
|
type ThreadReq struct {
|
|
ChannelId string `json:"channelId" swaggertype:"string" description:"频道Id"`
|
|
Name string `json:"name" swaggertype:"string" description:"线程名称"`
|
|
ArchiveDuration int `json:"archiveDuration" swaggertype:"number" description:"线程存档时间[分钟]"`
|
|
}
|