123456789101112131415161718192021 |
- package response
- type TextNotify struct {
- Content string `json:"content"`
- AtMobiles []string `json:"atMobiles"`
- IsAtAll bool `json:"isAtAll"`
- }
- type LinkNotify struct {
- Content string `json:"content"`
- Title string `json:"title"`
- PicUrl string `json:"picUrl"`
- MessageUrl string `json:"messageUrl"`
- }
- type MarkdownNotify struct {
- Title string `json:"title"`
- Content string `json:"content"`
- AtMobiles []string `json:"atMobiles"`
- IsAtAll bool `json:"isAtAll"`
- }
|