
1package main
2
3import (
4 "bytes"
5 "demo/wxpay_utility"
6 "encoding/json"
7 "fmt"
8 "net/http"
9 "net/url"
10 "strings"
11 "time"
12)
13
14func main() {
15
16 config, err := wxpay_utility.CreateMchConfig(
17 "19xxxxxxxx",
18 "1DDE55AD98Exxxxxxxxxx",
19 "/path/to/apiclient_key.pem",
20 "PUB_KEY_ID_xxxxxxxxxxxxx",
21 "/path/to/wxp_pub.pem",
22 )
23 if err != nil {
24 fmt.Println(err)
25 return
26 }
27
28 request := &DeactivateUserProductCouponBundleRequest{
29 UserCouponBundleId: wxpay_utility.String("123446565767"),
30 Openid: wxpay_utility.String("oh-394z-6CGkNoJrsDLTTUKiAnp4"),
31 ProductCouponId: wxpay_utility.String("1002323"),
32 StockBundleId: wxpay_utility.String("100232301"),
33 Appid: wxpay_utility.String("wx233544546545989"),
34 OutRequestNo: wxpay_utility.String("1002600620019090123144054436"),
35 DeactivateReason: wxpay_utility.String("商品已下线,使用户商品券失效"),
36 BrandId: wxpay_utility.String("120344"),
37 }
38
39 response, err := DeactivateUserProductCouponBundle(config, request)
40 if err != nil {
41 fmt.Printf("请求失败: %+v\n", err)
42
43 return
44 }
45
46
47 fmt.Printf("请求成功: %+v\n", response)
48}
49
50func DeactivateUserProductCouponBundle(config *wxpay_utility.MchConfig, request *DeactivateUserProductCouponBundleRequest) (response *DeactivateUserProductCouponBundleResponse, err error) {
51 const (
52 host = "https://api.mch.weixin.qq.com"
53 method = "POST"
54 path = "/v3/marketing/partner/product-coupon/users/{openid}/coupon-bundles/{user_coupon_bundle_id}/deactivate"
55 )
56
57 reqUrl, err := url.Parse(fmt.Sprintf("%s%s", host, path))
58 if err != nil {
59 return nil, err
60 }
61 reqUrl.Path = strings.Replace(reqUrl.Path, "{user_coupon_bundle_id}", url.PathEscape(*request.UserCouponBundleId), -1)
62 reqUrl.Path = strings.Replace(reqUrl.Path, "{openid}", url.PathEscape(*request.Openid), -1)
63 reqBody, err := json.Marshal(request)
64 if err != nil {
65 return nil, err
66 }
67 httpRequest, err := http.NewRequest(method, reqUrl.String(), bytes.NewReader(reqBody))
68 if err != nil {
69 return nil, err
70 }
71 httpRequest.Header.Set("Accept", "application/json")
72 httpRequest.Header.Set("Wechatpay-Serial", config.WechatPayPublicKeyId())
73 httpRequest.Header.Set("Content-Type", "application/json")
74 authorization, err := wxpay_utility.BuildAuthorization(config.MchId(), config.CertificateSerialNo(), config.PrivateKey(), method, reqUrl.RequestURI(), reqBody)
75 if err != nil {
76 return nil, err
77 }
78 httpRequest.Header.Set("Authorization", authorization)
79
80 client := &http.Client{}
81 httpResponse, err := client.Do(httpRequest)
82 if err != nil {
83 return nil, err
84 }
85 respBody, err := wxpay_utility.ExtractResponseBody(httpResponse)
86 if err != nil {
87 return nil, err
88 }
89 if httpResponse.StatusCode >= 200 && httpResponse.StatusCode < 300 {
90
91 err = wxpay_utility.ValidateResponse(
92 config.WechatPayPublicKeyId(),
93 config.WechatPayPublicKey(),
94 &httpResponse.Header,
95 respBody,
96 )
97 if err != nil {
98 return nil, err
99 }
100 response := &DeactivateUserProductCouponBundleResponse{}
101 if err := json.Unmarshal(respBody, response); err != nil {
102 return nil, err
103 }
104
105 return response, nil
106 } else {
107 return nil, wxpay_utility.NewApiException(
108 httpResponse.StatusCode,
109 httpResponse.Header,
110 respBody,
111 )
112 }
113}
114
115type DeactivateUserProductCouponBundleRequest struct {
116 ProductCouponId *string `json:"product_coupon_id,omitempty"`
117 StockBundleId *string `json:"stock_bundle_id,omitempty"`
118 UserCouponBundleId *string `json:"user_coupon_bundle_id,omitempty"`
119 Appid *string `json:"appid,omitempty"`
120 Openid *string `json:"openid,omitempty"`
121 OutRequestNo *string `json:"out_request_no,omitempty"`
122 DeactivateReason *string `json:"deactivate_reason,omitempty"`
123 BrandId *string `json:"brand_id,omitempty"`
124}
125
126func (o *DeactivateUserProductCouponBundleRequest) MarshalJSON() ([]byte, error) {
127 type Alias DeactivateUserProductCouponBundleRequest
128 a := &struct {
129 UserCouponBundleId *string `json:"user_coupon_bundle_id,omitempty"`
130 Openid *string `json:"openid,omitempty"`
131 *Alias
132 }{
133
134 UserCouponBundleId: nil,
135 Openid: nil,
136 Alias: (*Alias)(o),
137 }
138 return json.Marshal(a)
139}
140
141type DeactivateUserProductCouponBundleResponse struct {
142 UserCouponBundleId *string `json:"user_coupon_bundle_id,omitempty"`
143 UserProductCouponList []UserProductCouponEntity `json:"user_product_coupon_list,omitempty"`
144}
145
146type UserProductCouponEntity struct {
147 CouponCode *string `json:"coupon_code,omitempty"`
148 CouponState *UserProductCouponState `json:"coupon_state,omitempty"`
149 ValidBeginTime *time.Time `json:"valid_begin_time,omitempty"`
150 ValidEndTime *time.Time `json:"valid_end_time,omitempty"`
151 ReceiveTime *string `json:"receive_time,omitempty"`
152 SendRequestNo *string `json:"send_request_no,omitempty"`
153 SendChannel *UserProductCouponSendChannel `json:"send_channel,omitempty"`
154 ConfirmRequestNo *string `json:"confirm_request_no,omitempty"`
155 ConfirmTime *time.Time `json:"confirm_time,omitempty"`
156 DeactivateRequestNo *string `json:"deactivate_request_no,omitempty"`
157 DeactivateTime *string `json:"deactivate_time,omitempty"`
158 DeactivateReason *string `json:"deactivate_reason,omitempty"`
159 ProgressiveBundleUsageDetail *CouponUsageDetail `json:"progressive_bundle_usage_detail,omitempty"`
160 UserProductCouponBundleInfo *UserProductCouponBundleInfo `json:"user_product_coupon_bundle_info,omitempty"`
161 ProductCoupon *ProductCouponEntity `json:"product_coupon,omitempty"`
162 Stock *StockEntity `json:"stock,omitempty"`
163 Attach *string `json:"attach,omitempty"`
164 ChannelCustomInfo *string `json:"channel_custom_info,omitempty"`
165 CouponTagInfo *CouponTagInfo `json:"coupon_tag_info,omitempty"`
166 BrandId *string `json:"brand_id,omitempty"`
167}
168
169type UserProductCouponState string
170
171func (e UserProductCouponState) Ptr() *UserProductCouponState {
172 return &e
173}
174
175const (
176 USERPRODUCTCOUPONSTATE_CONFIRMING UserProductCouponState = "CONFIRMING"
177 USERPRODUCTCOUPONSTATE_PENDING UserProductCouponState = "PENDING"
178 USERPRODUCTCOUPONSTATE_EFFECTIVE UserProductCouponState = "EFFECTIVE"
179 USERPRODUCTCOUPONSTATE_USED UserProductCouponState = "USED"
180 USERPRODUCTCOUPONSTATE_EXPIRED UserProductCouponState = "EXPIRED"
181 USERPRODUCTCOUPONSTATE_DELETED UserProductCouponState = "DELETED"
182 USERPRODUCTCOUPONSTATE_DEACTIVATED UserProductCouponState = "DEACTIVATED"
183)
184
185type UserProductCouponSendChannel string
186
187func (e UserProductCouponSendChannel) Ptr() *UserProductCouponSendChannel {
188 return &e
189}
190
191const (
192 USERPRODUCTCOUPONSENDCHANNEL_BRAND_MANAGE UserProductCouponSendChannel = "BRAND_MANAGE"
193 USERPRODUCTCOUPONSENDCHANNEL_API UserProductCouponSendChannel = "API"
194 USERPRODUCTCOUPONSENDCHANNEL_RECEIVE_COMPONENT UserProductCouponSendChannel = "RECEIVE_COMPONENT"
195)
196
197type CouponUsageDetail struct {
198 UseRequestNo *string `json:"use_request_no,omitempty"`
199 UseTime *time.Time `json:"use_time,omitempty"`
200 ReturnRequestNo *string `json:"return_request_no,omitempty"`
201 ReturnTime *time.Time `json:"return_time,omitempty"`
202 AssociatedOrderInfo *UserProductCouponAssociatedOrderInfo `json:"associated_order_info,omitempty"`
203 AssociatedPayScoreOrderInfo *UserProductCouponAssociatedPayScoreOrderInfo `json:"associated_pay_score_order_info,omitempty"`
204 SavedAmount *int64 `json:"saved_amount,omitempty"`
205}
206
207type UserProductCouponBundleInfo struct {
208 UserCouponBundleId *string `json:"user_coupon_bundle_id,omitempty"`
209 UserCouponBundleIndex *int64 `json:"user_coupon_bundle_index,omitempty"`
210 TotalCount *int64 `json:"total_count,omitempty"`
211 UsedCount *int64 `json:"used_count,omitempty"`
212}
213
214type ProductCouponEntity struct {
215 ProductCouponId *string `json:"product_coupon_id,omitempty"`
216 Scope *ProductCouponScope `json:"scope,omitempty"`
217 Type *ProductCouponType `json:"type,omitempty"`
218 UsageMode *UsageMode `json:"usage_mode,omitempty"`
219 SingleUsageInfo *SingleUsageInfo `json:"single_usage_info,omitempty"`
220 ProgressiveBundleUsageInfo *ProgressiveBundleUsageInfo `json:"progressive_bundle_usage_info,omitempty"`
221 DisplayInfo *ProductCouponDisplayInfo `json:"display_info,omitempty"`
222 OutProductNo *string `json:"out_product_no,omitempty"`
223 State *ProductCouponState `json:"state,omitempty"`
224 DeactivateRequestNo *string `json:"deactivate_request_no,omitempty"`
225 DeactivateTime *string `json:"deactivate_time,omitempty"`
226 DeactivateReason *string `json:"deactivate_reason,omitempty"`
227 BrandId *string `json:"brand_id,omitempty"`
228}
229
230type StockEntity struct {
231 ProductCouponId *string `json:"product_coupon_id,omitempty"`
232 StockId *string `json:"stock_id,omitempty"`
233 Remark *string `json:"remark,omitempty"`
234 CouponCodeMode *CouponCodeMode `json:"coupon_code_mode,omitempty"`
235 CouponCodeCountInfo *CouponCodeCountInfo `json:"coupon_code_count_info,omitempty"`
236 StockSendRule *StockSendRule `json:"stock_send_rule,omitempty"`
237 ProgressiveBundleUsageRule *StockUsageRule `json:"progressive_bundle_usage_rule,omitempty"`
238 StockBundleInfo *StockBundleInfo `json:"stock_bundle_info,omitempty"`
239 UsageRuleDisplayInfo *UsageRuleDisplayInfo `json:"usage_rule_display_info,omitempty"`
240 CouponDisplayInfo *CouponDisplayInfo `json:"coupon_display_info,omitempty"`
241 NotifyConfig *NotifyConfig `json:"notify_config,omitempty"`
242 StoreScope *StockStoreScope `json:"store_scope,omitempty"`
243 SentCountInfo *StockSentCountInfo `json:"sent_count_info,omitempty"`
244 State *StockState `json:"state,omitempty"`
245 DeactivateRequestNo *string `json:"deactivate_request_no,omitempty"`
246 DeactivateTime *time.Time `json:"deactivate_time,omitempty"`
247 DeactivateReason *string `json:"deactivate_reason,omitempty"`
248 BrandId *string `json:"brand_id,omitempty"`
249}
250
251type CouponTagInfo struct {
252 CouponTagList []UserProductCouponTag `json:"coupon_tag_list,omitempty"`
253 MemberTagInfo *MemberTagInfo `json:"member_tag_info,omitempty"`
254}
255
256type UserProductCouponAssociatedOrderInfo struct {
257 TransactionId *string `json:"transaction_id,omitempty"`
258 OutTradeNo *string `json:"out_trade_no,omitempty"`
259 Mchid *string `json:"mchid,omitempty"`
260 SubMchid *string `json:"sub_mchid,omitempty"`
261}
262
263type UserProductCouponAssociatedPayScoreOrderInfo struct {
264 OrderId *string `json:"order_id,omitempty"`
265 OutOrderNo *string `json:"out_order_no,omitempty"`
266 Mchid *string `json:"mchid,omitempty"`
267 SubMchid *string `json:"sub_mchid,omitempty"`
268}
269
270type ProductCouponScope string
271
272func (e ProductCouponScope) Ptr() *ProductCouponScope {
273 return &e
274}
275
276const (
277 PRODUCTCOUPONSCOPE_ALL ProductCouponScope = "ALL"
278 PRODUCTCOUPONSCOPE_SINGLE ProductCouponScope = "SINGLE"
279 PRODUCTCOUPONSCOPE_CATEGORY ProductCouponScope = "CATEGORY"
280)
281
282type ProductCouponType string
283
284func (e ProductCouponType) Ptr() *ProductCouponType {
285 return &e
286}
287
288const (
289 PRODUCTCOUPONTYPE_NORMAL ProductCouponType = "NORMAL"
290 PRODUCTCOUPONTYPE_DISCOUNT ProductCouponType = "DISCOUNT"
291 PRODUCTCOUPONTYPE_EXCHANGE ProductCouponType = "EXCHANGE"
292)
293
294type UsageMode string
295
296func (e UsageMode) Ptr() *UsageMode {
297 return &e
298}
299
300const (
301 USAGEMODE_SINGLE UsageMode = "SINGLE"
302 USAGEMODE_PROGRESSIVE_BUNDLE UsageMode = "PROGRESSIVE_BUNDLE"
303)
304
305type SingleUsageInfo struct {
306 NormalCoupon *NormalCouponUsageRule `json:"normal_coupon,omitempty"`
307 DiscountCoupon *DiscountCouponUsageRule `json:"discount_coupon,omitempty"`
308}
309
310type ProgressiveBundleUsageInfo struct {
311 Count *int64 `json:"count,omitempty"`
312 IntervalDays *int64 `json:"interval_days,omitempty"`
313}
314
315type ProductCouponDisplayInfo struct {
316 Name *string `json:"name,omitempty"`
317 ImageUrl *string `json:"image_url,omitempty"`
318 BackgroundUrl *string `json:"background_url,omitempty"`
319 DetailImageUrlList []string `json:"detail_image_url_list,omitempty"`
320 OriginalPrice *int64 `json:"original_price,omitempty"`
321 ComboPackageList []ComboPackage `json:"combo_package_list,omitempty"`
322}
323
324type ProductCouponState string
325
326func (e ProductCouponState) Ptr() *ProductCouponState {
327 return &e
328}
329
330const (
331 PRODUCTCOUPONSTATE_AUDITING ProductCouponState = "AUDITING"
332 PRODUCTCOUPONSTATE_EFFECTIVE ProductCouponState = "EFFECTIVE"
333 PRODUCTCOUPONSTATE_DEACTIVATED ProductCouponState = "DEACTIVATED"
334)
335
336type CouponCodeMode string
337
338func (e CouponCodeMode) Ptr() *CouponCodeMode {
339 return &e
340}
341
342const (
343 COUPONCODEMODE_WECHATPAY CouponCodeMode = "WECHATPAY"
344 COUPONCODEMODE_UPLOAD CouponCodeMode = "UPLOAD"
345)
346
347type CouponCodeCountInfo struct {
348 TotalCount *int64 `json:"total_count,omitempty"`
349 AvailableCount *int64 `json:"available_count,omitempty"`
350}
351
352type StockSendRule struct {
353 MaxCount *int64 `json:"max_count,omitempty"`
354 MaxCountPerDay *int64 `json:"max_count_per_day,omitempty"`
355 MaxCountPerUser *int64 `json:"max_count_per_user,omitempty"`
356}
357
358type StockUsageRule struct {
359 CouponAvailablePeriod *CouponAvailablePeriod `json:"coupon_available_period,omitempty"`
360 NormalCoupon *NormalCouponUsageRule `json:"normal_coupon,omitempty"`
361 DiscountCoupon *DiscountCouponUsageRule `json:"discount_coupon,omitempty"`
362 ExchangeCoupon *ExchangeCouponUsageRule `json:"exchange_coupon,omitempty"`
363}
364
365type StockBundleInfo struct {
366 StockBundleId *string `json:"stock_bundle_id,omitempty"`
367 StockBundleIndex *int64 `json:"stock_bundle_index,omitempty"`
368}
369
370type UsageRuleDisplayInfo struct {
371 CouponUsageMethodList []CouponUsageMethod `json:"coupon_usage_method_list,omitempty"`
372 MiniProgramAppid *string `json:"mini_program_appid,omitempty"`
373 MiniProgramPath *string `json:"mini_program_path,omitempty"`
374 AppPath *string `json:"app_path,omitempty"`
375 UsageDescription *string `json:"usage_description,omitempty"`
376 CouponAvailableStoreInfo *CouponAvailableStoreInfo `json:"coupon_available_store_info,omitempty"`
377 AppJumpType *AppJumpType `json:"app_jump_type,omitempty"`
378 PasscodeLink *string `json:"passcode_link,omitempty"`
379}
380
381type CouponDisplayInfo struct {
382 CodeDisplayMode *CouponCodeDisplayMode `json:"code_display_mode,omitempty"`
383 BackgroundColor *string `json:"background_color,omitempty"`
384 EntranceMiniProgram *EntranceMiniProgram `json:"entrance_mini_program,omitempty"`
385 EntranceOfficialAccount *EntranceOfficialAccount `json:"entrance_official_account,omitempty"`
386 EntranceFinder *EntranceFinder `json:"entrance_finder,omitempty"`
387}
388
389type NotifyConfig struct {
390 NotifyAppid *string `json:"notify_appid,omitempty"`
391}
392
393type StockStoreScope string
394
395func (e StockStoreScope) Ptr() *StockStoreScope {
396 return &e
397}
398
399const (
400 STOCKSTORESCOPE_NONE StockStoreScope = "NONE"
401 STOCKSTORESCOPE_ALL StockStoreScope = "ALL"
402 STOCKSTORESCOPE_SPECIFIC StockStoreScope = "SPECIFIC"
403)
404
405type StockSentCountInfo struct {
406 TotalCount *int64 `json:"total_count,omitempty"`
407 TodayCount *int64 `json:"today_count,omitempty"`
408}
409
410type StockState string
411
412func (e StockState) Ptr() *StockState {
413 return &e
414}
415
416const (
417 STOCKSTATE_AUDITING StockState = "AUDITING"
418 STOCKSTATE_SENDING StockState = "SENDING"
419 STOCKSTATE_PAUSED StockState = "PAUSED"
420 STOCKSTATE_STOPPED StockState = "STOPPED"
421 STOCKSTATE_DEACTIVATED StockState = "DEACTIVATED"
422)
423
424type UserProductCouponTag string
425
426func (e UserProductCouponTag) Ptr() *UserProductCouponTag {
427 return &e
428}
429
430const (
431 USERPRODUCTCOUPONTAG_MEMBER UserProductCouponTag = "MEMBER"
432)
433
434type MemberTagInfo struct {
435 MemberCardId *string `json:"member_card_id,omitempty"`
436}
437
438type NormalCouponUsageRule struct {
439 Threshold *int64 `json:"threshold,omitempty"`
440 DiscountAmount *int64 `json:"discount_amount,omitempty"`
441}
442
443type DiscountCouponUsageRule struct {
444 Threshold *int64 `json:"threshold,omitempty"`
445 PercentOff *int64 `json:"percent_off,omitempty"`
446}
447
448type ComboPackage struct {
449 Name *string `json:"name,omitempty"`
450 PickCount *int64 `json:"pick_count,omitempty"`
451 ChoiceList []ComboPackageChoice `json:"choice_list,omitempty"`
452}
453
454type CouponAvailablePeriod struct {
455 AvailableBeginTime *string `json:"available_begin_time,omitempty"`
456 AvailableEndTime *string `json:"available_end_time,omitempty"`
457 AvailableDays *int64 `json:"available_days,omitempty"`
458 WaitDaysAfterReceive *int64 `json:"wait_days_after_receive,omitempty"`
459 WeeklyAvailablePeriod *FixedWeekPeriod `json:"weekly_available_period,omitempty"`
460 IrregularAvailablePeriodList []TimePeriod `json:"irregular_available_period_list,omitempty"`
461 AvailableSeconds *int64 `json:"available_seconds,omitempty"`
462}
463
464type ExchangeCouponUsageRule struct {
465 Threshold *int64 `json:"threshold,omitempty"`
466 ExchangePrice *int64 `json:"exchange_price,omitempty"`
467}
468
469type CouponUsageMethod string
470
471func (e CouponUsageMethod) Ptr() *CouponUsageMethod {
472 return &e
473}
474
475const (
476 COUPONUSAGEMETHOD_OFFLINE CouponUsageMethod = "OFFLINE"
477 COUPONUSAGEMETHOD_MINI_PROGRAM CouponUsageMethod = "MINI_PROGRAM"
478 COUPONUSAGEMETHOD_APP CouponUsageMethod = "APP"
479 COUPONUSAGEMETHOD_PAYMENT_CODE CouponUsageMethod = "PAYMENT_CODE"
480)
481
482type CouponAvailableStoreInfo struct {
483 Description *string `json:"description,omitempty"`
484 MiniProgramAppid *string `json:"mini_program_appid,omitempty"`
485 MiniProgramPath *string `json:"mini_program_path,omitempty"`
486}
487
488type AppJumpType string
489
490func (e AppJumpType) Ptr() *AppJumpType {
491 return &e
492}
493
494const (
495 APPJUMPTYPE_H5 AppJumpType = "H5"
496 APPJUMPTYPE_PASSCODE_LINK AppJumpType = "PASSCODE_LINK"
497 APPJUMPTYPE_USAGE_GUIDE AppJumpType = "USAGE_GUIDE"
498)
499
500type CouponCodeDisplayMode string
501
502func (e CouponCodeDisplayMode) Ptr() *CouponCodeDisplayMode {
503 return &e
504}
505
506const (
507 COUPONCODEDISPLAYMODE_INVISIBLE CouponCodeDisplayMode = "INVISIBLE"
508 COUPONCODEDISPLAYMODE_BARCODE CouponCodeDisplayMode = "BARCODE"
509 COUPONCODEDISPLAYMODE_QRCODE CouponCodeDisplayMode = "QRCODE"
510)
511
512type EntranceMiniProgram struct {
513 Appid *string `json:"appid,omitempty"`
514 Path *string `json:"path,omitempty"`
515 EntranceWording *string `json:"entrance_wording,omitempty"`
516 GuidanceWording *string `json:"guidance_wording,omitempty"`
517}
518
519type EntranceOfficialAccount struct {
520 Appid *string `json:"appid,omitempty"`
521}
522
523type EntranceFinder struct {
524 FinderId *string `json:"finder_id,omitempty"`
525 FinderVideoId *string `json:"finder_video_id,omitempty"`
526 FinderVideoCoverImageUrl *string `json:"finder_video_cover_image_url,omitempty"`
527}
528
529type ComboPackageChoice struct {
530 Name *string `json:"name,omitempty"`
531 Price *int64 `json:"price,omitempty"`
532 Count *int64 `json:"count,omitempty"`
533 ImageUrl *string `json:"image_url,omitempty"`
534 MiniProgramAppid *string `json:"mini_program_appid,omitempty"`
535 MiniProgramPath *string `json:"mini_program_path,omitempty"`
536}
537
538type FixedWeekPeriod struct {
539 DayList []WeekEnum `json:"day_list,omitempty"`
540 DayPeriodList []PeriodOfTheDay `json:"day_period_list,omitempty"`
541}
542
543type TimePeriod struct {
544 BeginTime *string `json:"begin_time,omitempty"`
545 EndTime *string `json:"end_time,omitempty"`
546}
547
548type WeekEnum string
549
550func (e WeekEnum) Ptr() *WeekEnum {
551 return &e
552}
553
554const (
555 WEEKENUM_MONDAY WeekEnum = "MONDAY"
556 WEEKENUM_TUESDAY WeekEnum = "TUESDAY"
557 WEEKENUM_WEDNESDAY WeekEnum = "WEDNESDAY"
558 WEEKENUM_THURSDAY WeekEnum = "THURSDAY"
559 WEEKENUM_FRIDAY WeekEnum = "FRIDAY"
560 WEEKENUM_SATURDAY WeekEnum = "SATURDAY"
561 WEEKENUM_SUNDAY WeekEnum = "SUNDAY"
562)
563
564type PeriodOfTheDay struct {
565 BeginTime *int64 `json:"begin_time,omitempty"`
566 EndTime *int64 `json:"end_time,omitempty"`
567}
568