We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dd3fff commit 6c78c48Copy full SHA for 6c78c48
dto/message_create.go
@@ -20,8 +20,9 @@ type MessageReference struct {
20
21
// Markdown markdown 消息
22
type Markdown struct {
23
- TemplateID int `json:"template_id"`
24
- Params []*MarkdownParams `json:"params"`
+ TemplateID int `json:"template_id"` // 模版 id
+ Params []*MarkdownParams `json:"params"` // 模版参数
25
+ Content string `json:"content"` // 原生 markdown
26
}
27
28
// MarkdownParams markdown 模版参数 键值对
0 commit comments