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