-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtemplate_card.go
145 lines (122 loc) · 5.3 KB
/
template_card.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package wxworkbot
const (
// TemplateCardTypeText 文本通知类型的模板卡片
TemplateCardTypeText = "text_notice"
// TemplateCardTypeNews 图文展示类型的模板卡片
TemplateCardTypeNews = "news_notice"
)
type templateCardMessage struct {
message
TemplateCard TemplateCard `json:"template_card"`
}
type TemplateCard struct {
CardType string `json:"card_type"`
Source *TemplateCardSource `json:"source"`
MainTitle TemplateCardMainTitle `json:"main_title"`
CardImage *TemplateCardImage `json:"card_image"`
ImageTextArea *TemplateCardImageTextArea `json:"image_text_area"`
EmphasisContent *TemplateCardEmphasisContent `json:"emphasis_content"`
QuoteArea *TemplateCardQuoteArea `json:"quote_area"`
SubTitleText *string `json:"sub_title_text"`
HorizontalContentList *[]TemplateCardHorizontalContent `json:"horizontal_content_list"`
JumpList *[]TemplateCardJump `json:"jump_list"`
CardAction TemplateCardAction `json:"card_action"`
}
type TemplateCardSourceDescColor int
// 来源文字的颜色,目前支持:0(默认) 灰色,1 黑色,2 红色,3 绿色
const (
TemplateCardSourceDescColorGrey = 0
TemplateCardSourceDescColorBlack = 1
TemplateCardSourceDescColorRed = 2
TemplateCardSourceDescColorGreen = 3
)
type TemplateCardSource struct {
IconUrl *string `json:"icon_url"`
Desc *string `json:"desc"`
DescColor int `json:"desc_color"`
}
type TemplateCardMainTitle struct {
Title *string `json:"title"`
Desc *string `json:"desc"`
}
type TemplateCardEmphasisContent struct {
Title *string `json:"title"`
Desc *string `json:"desc"`
}
type TemplateCardQuoteAreaType int
// 引用文献样式区域点击事件,0或不填代表没有点击事件,1 代表跳转url,2 代表跳转小程序
const (
TemplateCardQuoteAreaTypeNone TemplateCardQuoteAreaType = 0
TemplateCardQuoteAreaTypeUrl TemplateCardQuoteAreaType = 1
TemplateCardQuoteAreaTypeMiniApp TemplateCardQuoteAreaType = 2
)
type TemplateCardQuoteArea struct {
Type TemplateCardQuoteAreaType `json:"type"`
Url *string `json:"url"`
AppID *string `json:"appid"`
PagePath *string `json:"pagepath"`
Title *string `json:"title"`
QuoteText *string `json:"quote_text"`
}
type TemplateCardHorizontalContentType int
// 链接类型,0或不填代表是普通文本,1 代表跳转url,2 代表下载附件,3 代表@员工
const (
TemplateCardHorizontalContentTypeText TemplateCardHorizontalContentType = 0
TemplateCardHorizontalContentTypeUrl TemplateCardHorizontalContentType = 1
TemplateCardHorizontalContentTypeAttachment TemplateCardHorizontalContentType = 2
TemplateCardHorizontalContentTypeMention TemplateCardHorizontalContentType = 3
)
type TemplateCardHorizontalContent struct {
KeyName string `json:"keyname"`
Value *string `json:"value"`
Type TemplateCardHorizontalContentType `json:"type"`
Url *string `json:"url"`
MediaID *string `json:"media_id"`
UserID *string `json:"userid"`
}
type TemplateCardJumpType int
// 跳转链接类型,0或不填代表不是链接,1 代表跳转url,2 代表跳转小程序
const (
TemplateCardJumpTypeNone TemplateCardJumpType = 0
TemplateCardJumpTypeUrl TemplateCardJumpType = 1
TemplateCardJumpTypeMiniApp TemplateCardJumpType = 2
)
type TemplateCardJump struct {
Type TemplateCardJumpType `json:"type"`
Url *string `json:"url"`
Title string `json:"title"`
AppID *string `json:"appid"`
PagePath *string `json:"pagepath"`
}
type TemplateCardActionType int
// 卡片跳转类型,1 代表跳转url,2 代表打开小程序。text_notice模版卡片中该字段取值范围为[1,2]
const (
TemplateCardActionTypeUrl TemplateCardActionType = 1
TemplateCardActionTypeMiniApp TemplateCardActionType = 2
)
type TemplateCardAction struct {
Type TemplateCardActionType `json:"type"`
Url *string `json:"url"`
AppID *string `json:"appid"`
PagePath *string `json:"pagepath"`
}
type TemplateCardImage struct {
Url string `json:"url"`
// 图片的宽高比,宽高比要小于2.25,大于1.3,不填该参数默认1.3
AspectRatio *float64 `json:"aspect_ratio"`
}
type TemplateCardImageTextAreaType int
const (
TemplateCardImageTextAreaTypeNone TemplateCardImageTextAreaType = 0
TemplateCardImageTextAreaTypeUrl TemplateCardImageTextAreaType = 1
TemplateCardImageTextAreaTypeMiniApp TemplateCardImageTextAreaType = 2
)
type TemplateCardImageTextArea struct {
Type TemplateCardImageTextAreaType `json:"type"`
Url *string `json:"url"`
AppID *string `json:"appid"`
PagePath *string `json:"pagepath"`
Title *string `json:"title"`
Desc *string `json:"desc"`
ImageUrl string `json:"image_url"`
}