third-platform-sdk/sdk/fliggysdk/defaultability/domain/AlibabaFliggyCpsCouponIssueCollectCouponResponse.go
2024-08-05 17:19:30 +08:00

21 lines
600 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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