21 lines
620 B
Go
21 lines
620 B
Go
package domain
|
||
|
||
type AlibabaFliggyCpsCouponOfferCollectCouponResponse struct {
|
||
/*
|
||
券信息详情 */
|
||
Coupons *string `json:"coupons,omitempty" `
|
||
|
||
/*
|
||
true:第一次领取 false:非第一次领取(即重复领取) */
|
||
FirstApply *bool `json:"first_apply,omitempty" `
|
||
}
|
||
|
||
func (s *AlibabaFliggyCpsCouponOfferCollectCouponResponse) SetCoupons(v string) *AlibabaFliggyCpsCouponOfferCollectCouponResponse {
|
||
s.Coupons = &v
|
||
return s
|
||
}
|
||
func (s *AlibabaFliggyCpsCouponOfferCollectCouponResponse) SetFirstApply(v bool) *AlibabaFliggyCpsCouponOfferCollectCouponResponse {
|
||
s.FirstApply = &v
|
||
return s
|
||
}
|