37 lines
981 B
Go
37 lines
981 B
Go
|
|
package domain
|
|||
|
|
|
|||
|
|
type AlibabaFliggyCpsCouponOfferResult struct {
|
|||
|
|
/*
|
|||
|
|
true:成功 false:失败 */
|
|||
|
|
Success *bool `json:"success,omitempty" `
|
|||
|
|
|
|||
|
|
/*
|
|||
|
|
领取券详情 */
|
|||
|
|
Model *AlibabaFliggyCpsCouponOfferCollectCouponResponse `json:"model,omitempty" `
|
|||
|
|
|
|||
|
|
/*
|
|||
|
|
返回码中文解释 */
|
|||
|
|
MsgInfo *string `json:"msg_info,omitempty" `
|
|||
|
|
|
|||
|
|
/*
|
|||
|
|
返回码 */
|
|||
|
|
MsgCode *string `json:"msg_code,omitempty" `
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
func (s *AlibabaFliggyCpsCouponOfferResult) SetSuccess(v bool) *AlibabaFliggyCpsCouponOfferResult {
|
|||
|
|
s.Success = &v
|
|||
|
|
return s
|
|||
|
|
}
|
|||
|
|
func (s *AlibabaFliggyCpsCouponOfferResult) SetModel(v AlibabaFliggyCpsCouponOfferCollectCouponResponse) *AlibabaFliggyCpsCouponOfferResult {
|
|||
|
|
s.Model = &v
|
|||
|
|
return s
|
|||
|
|
}
|
|||
|
|
func (s *AlibabaFliggyCpsCouponOfferResult) SetMsgInfo(v string) *AlibabaFliggyCpsCouponOfferResult {
|
|||
|
|
s.MsgInfo = &v
|
|||
|
|
return s
|
|||
|
|
}
|
|||
|
|
func (s *AlibabaFliggyCpsCouponOfferResult) SetMsgCode(v string) *AlibabaFliggyCpsCouponOfferResult {
|
|||
|
|
s.MsgCode = &v
|
|||
|
|
return s
|
|||
|
|
}
|