type DingTalkMsg struct {
MessageType string `json:"msgtype"`
Text Text `json:"text,omitempty"`
Link Link `json:"link,omitempty"`
MarkDown MarkDown `json:"markdown,omitempty"`
At At `json:"at,omitempty"`
}
type Link struct {
Title string `json:"title"`
Text string `json:"text"`
MessageURL string `json:"messageUrl"`
PictureURL string `json:"picUrl,omitempty"`
}