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

37 lines
976 B
Go
Raw 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 AlibabaFliggyCpsCouponIssueResult struct {
/*
true:成功false:失败 */
Success *bool `json:"success,omitempty" `
/*
领券详情 */
Model *AlibabaFliggyCpsCouponIssueCollectCouponResponse `json:"model,omitempty" `
/*
返回码中文解释 */
MsgInfo *string `json:"msg_info,omitempty" `
/*
返回码 */
MsgCode *string `json:"msg_code,omitempty" `
}
func (s *AlibabaFliggyCpsCouponIssueResult) SetSuccess(v bool) *AlibabaFliggyCpsCouponIssueResult {
s.Success = &v
return s
}
func (s *AlibabaFliggyCpsCouponIssueResult) SetModel(v AlibabaFliggyCpsCouponIssueCollectCouponResponse) *AlibabaFliggyCpsCouponIssueResult {
s.Model = &v
return s
}
func (s *AlibabaFliggyCpsCouponIssueResult) SetMsgInfo(v string) *AlibabaFliggyCpsCouponIssueResult {
s.MsgInfo = &v
return s
}
func (s *AlibabaFliggyCpsCouponIssueResult) SetMsgCode(v string) *AlibabaFliggyCpsCouponIssueResult {
s.MsgCode = &v
return s
}