45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package domain
|
|
|
|
type AlibabaFliggyCpsCouponIssueBuyUserRequest struct {
|
|
/*
|
|
推广者淘宝用户ID */
|
|
PromoteUserId *int64 `json:"promote_user_id,omitempty" `
|
|
|
|
/*
|
|
手机号 */
|
|
Mobile *string `json:"mobile,omitempty" `
|
|
|
|
/*
|
|
推广计划ID */
|
|
PlanId *int64 `json:"plan_id,omitempty" `
|
|
|
|
/*
|
|
二级推广者ID */
|
|
SecondPromoteUserId *string `json:"second_promote_user_id,omitempty" `
|
|
|
|
/*
|
|
渠道标识符 */
|
|
ChannelCode *string `json:"channel_code,omitempty" `
|
|
}
|
|
|
|
func (s *AlibabaFliggyCpsCouponIssueBuyUserRequest) SetPromoteUserId(v int64) *AlibabaFliggyCpsCouponIssueBuyUserRequest {
|
|
s.PromoteUserId = &v
|
|
return s
|
|
}
|
|
func (s *AlibabaFliggyCpsCouponIssueBuyUserRequest) SetMobile(v string) *AlibabaFliggyCpsCouponIssueBuyUserRequest {
|
|
s.Mobile = &v
|
|
return s
|
|
}
|
|
func (s *AlibabaFliggyCpsCouponIssueBuyUserRequest) SetPlanId(v int64) *AlibabaFliggyCpsCouponIssueBuyUserRequest {
|
|
s.PlanId = &v
|
|
return s
|
|
}
|
|
func (s *AlibabaFliggyCpsCouponIssueBuyUserRequest) SetSecondPromoteUserId(v string) *AlibabaFliggyCpsCouponIssueBuyUserRequest {
|
|
s.SecondPromoteUserId = &v
|
|
return s
|
|
}
|
|
func (s *AlibabaFliggyCpsCouponIssueBuyUserRequest) SetChannelCode(v string) *AlibabaFliggyCpsCouponIssueBuyUserRequest {
|
|
s.ChannelCode = &v
|
|
return s
|
|
}
|