type Card struct { // template/raw Type string `json:"type,omitempty"` // type为raw时:data为larkcard.MessageCard; type为raw时,data为TemplateCard Data interface{} `json:"data,omitempty"` }
type Card struct {
// template/raw
Type string
json:"type,omitempty"// type为raw时:data为larkcard.MessageCard; type为raw时,data为TemplateCard
Data interface{}
json:"data,omitempty"}