
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}
372
373type CouponDisplayInfo struct {
374 CodeDisplayMode *CouponCodeDisplayMode `json:"code_display_mode,omitempty"`
375 BackgroundColor *string `json:"background_color,omitempty"`
376 EntranceMiniProgram *EntranceMiniProgram `json:"entrance_mini_program,omitempty"`
377 EntranceOfficialAccount *EntranceOfficialAccount `json:"entrance_official_account,omitempty"`
378 EntranceFinder *EntranceFinder `json:"entrance_finder,omitempty"`
379}
380
381type NotifyConfig struct {
382 NotifyAppid *string `json:"notify_appid,omitempty"`
383}
384
385type StockStoreScope string
386
387func (e StockStoreScope) Ptr() *StockStoreScope {
388 return &e
389}
390
391const (
392 STOCKSTORESCOPE_NONE StockStoreScope = "NONE"
393 STOCKSTORESCOPE_ALL StockStoreScope = "ALL"
394 STOCKSTORESCOPE_SPECIFIC StockStoreScope = "SPECIFIC"
395)
396
397type StockSentCountInfo struct {
398 TotalCount *int64 `json:"total_count,omitempty"`
399 TodayCount *int64 `json:"today_count,omitempty"`
400}
401
402type StockState string
403
404func (e StockState) Ptr() *StockState {
405 return &e
406}
407
408const (
409 STOCKSTATE_AUDITING StockState = "AUDITING"
410 STOCKSTATE_SENDING StockState = "SENDING"
411 STOCKSTATE_PAUSED StockState = "PAUSED"
412 STOCKSTATE_STOPPED StockState = "STOPPED"
413 STOCKSTATE_DEACTIVATED StockState = "DEACTIVATED"
414)
415
416type UserProductCouponTag string
417
418func (e UserProductCouponTag) Ptr() *UserProductCouponTag {
419 return &e
420}
421
422const (
423 USERPRODUCTCOUPONTAG_MEMBER UserProductCouponTag = "MEMBER"
424)
425
426type MemberTagInfo struct {
427 MemberCardId *string `json:"member_card_id,omitempty"`
428}
429
430type NormalCouponUsageRule struct {
431 Threshold *int64 `json:"threshold,omitempty"`
432 DiscountAmount *int64 `json:"discount_amount,omitempty"`
433}
434
435type DiscountCouponUsageRule struct {
436 Threshold *int64 `json:"threshold,omitempty"`
437 PercentOff *int64 `json:"percent_off,omitempty"`
438}
439
440type ComboPackage struct {
441 Name *string `json:"name,omitempty"`
442 PickCount *int64 `json:"pick_count,omitempty"`
443 ChoiceList []ComboPackageChoice `json:"choice_list,omitempty"`
444}
445
446type CouponAvailablePeriod struct {
447 AvailableBeginTime *string `json:"available_begin_time,omitempty"`
448 AvailableEndTime *string `json:"available_end_time,omitempty"`
449 AvailableDays *int64 `json:"available_days,omitempty"`
450 WaitDaysAfterReceive *int64 `json:"wait_days_after_receive,omitempty"`
451 WeeklyAvailablePeriod *FixedWeekPeriod `json:"weekly_available_period,omitempty"`
452 IrregularAvailablePeriodList []TimePeriod `json:"irregular_available_period_list,omitempty"`
453}
454
455type ExchangeCouponUsageRule struct {
456 Threshold *int64 `json:"threshold,omitempty"`
457 ExchangePrice *int64 `json:"exchange_price,omitempty"`
458}
459
460type CouponUsageMethod string
461
462func (e CouponUsageMethod) Ptr() *CouponUsageMethod {
463 return &e
464}
465
466const (
467 COUPONUSAGEMETHOD_OFFLINE CouponUsageMethod = "OFFLINE"
468 COUPONUSAGEMETHOD_MINI_PROGRAM CouponUsageMethod = "MINI_PROGRAM"
469 COUPONUSAGEMETHOD_APP CouponUsageMethod = "APP"
470 COUPONUSAGEMETHOD_PAYMENT_CODE CouponUsageMethod = "PAYMENT_CODE"
471)
472
473type CouponAvailableStoreInfo struct {
474 Description *string `json:"description,omitempty"`
475 MiniProgramAppid *string `json:"mini_program_appid,omitempty"`
476 MiniProgramPath *string `json:"mini_program_path,omitempty"`
477}
478
479type CouponCodeDisplayMode string
480
481func (e CouponCodeDisplayMode) Ptr() *CouponCodeDisplayMode {
482 return &e
483}
484
485const (
486 COUPONCODEDISPLAYMODE_INVISIBLE CouponCodeDisplayMode = "INVISIBLE"
487 COUPONCODEDISPLAYMODE_BARCODE CouponCodeDisplayMode = "BARCODE"
488 COUPONCODEDISPLAYMODE_QRCODE CouponCodeDisplayMode = "QRCODE"
489)
490
491type EntranceMiniProgram struct {
492 Appid *string `json:"appid,omitempty"`
493 Path *string `json:"path,omitempty"`
494 EntranceWording *string `json:"entrance_wording,omitempty"`
495 GuidanceWording *string `json:"guidance_wording,omitempty"`
496}
497
498type EntranceOfficialAccount struct {
499 Appid *string `json:"appid,omitempty"`
500}
501
502type EntranceFinder struct {
503 FinderId *string `json:"finder_id,omitempty"`
504 FinderVideoId *string `json:"finder_video_id,omitempty"`
505 FinderVideoCoverImageUrl *string `json:"finder_video_cover_image_url,omitempty"`
506}
507
508type ComboPackageChoice struct {
509 Name *string `json:"name,omitempty"`
510 Price *int64 `json:"price,omitempty"`
511 Count *int64 `json:"count,omitempty"`
512 ImageUrl *string `json:"image_url,omitempty"`
513 MiniProgramAppid *string `json:"mini_program_appid,omitempty"`
514 MiniProgramPath *string `json:"mini_program_path,omitempty"`
515}
516
517type FixedWeekPeriod struct {
518 DayList []WeekEnum `json:"day_list,omitempty"`
519 DayPeriodList []PeriodOfTheDay `json:"day_period_list,omitempty"`
520}
521
522type TimePeriod struct {
523 BeginTime *string `json:"begin_time,omitempty"`
524 EndTime *string `json:"end_time,omitempty"`
525}
526
527type WeekEnum string
528
529func (e WeekEnum) Ptr() *WeekEnum {
530 return &e
531}
532
533const (
534 WEEKENUM_MONDAY WeekEnum = "MONDAY"
535 WEEKENUM_TUESDAY WeekEnum = "TUESDAY"
536 WEEKENUM_WEDNESDAY WeekEnum = "WEDNESDAY"
537 WEEKENUM_THURSDAY WeekEnum = "THURSDAY"
538 WEEKENUM_FRIDAY WeekEnum = "FRIDAY"
539 WEEKENUM_SATURDAY WeekEnum = "SATURDAY"
540 WEEKENUM_SUNDAY WeekEnum = "SUNDAY"
541)
542
543type PeriodOfTheDay struct {
544 BeginTime *int64 `json:"begin_time,omitempty"`
545 EndTime *int64 `json:"end_time,omitempty"`
546}
547