31 lines
1.2 KiB
Go
31 lines
1.2 KiB
Go
|
|
package request
|
||
|
|
|
||
|
|
import (
|
||
|
|
"repository.lenntc.com/lenntc/third-platform-sdk/sdk/topsdk/defaultability/domain"
|
||
|
|
"repository.lenntc.com/lenntc/third-platform-sdk/sdk/topsdk/util"
|
||
|
|
)
|
||
|
|
|
||
|
|
type AlibabaAlscUnionElemePromotionOtherchannelGetRequest struct {
|
||
|
|
/*
|
||
|
|
查询request对象 */
|
||
|
|
OtherPromotionLinkRequest *domain.AlibabaAlscUnionElemePromotionOtherchannelGetOtherPromotionLinkRequest `json:"other_promotion_link_request" required:"true" `
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *AlibabaAlscUnionElemePromotionOtherchannelGetRequest) SetOtherPromotionLinkRequest(v domain.AlibabaAlscUnionElemePromotionOtherchannelGetOtherPromotionLinkRequest) *AlibabaAlscUnionElemePromotionOtherchannelGetRequest {
|
||
|
|
s.OtherPromotionLinkRequest = &v
|
||
|
|
return s
|
||
|
|
}
|
||
|
|
|
||
|
|
func (req *AlibabaAlscUnionElemePromotionOtherchannelGetRequest) ToMap() map[string]interface{} {
|
||
|
|
paramMap := make(map[string]interface{})
|
||
|
|
if req.OtherPromotionLinkRequest != nil {
|
||
|
|
paramMap["other_promotion_link_request"] = util.ConvertStruct(*req.OtherPromotionLinkRequest)
|
||
|
|
}
|
||
|
|
return paramMap
|
||
|
|
}
|
||
|
|
|
||
|
|
func (req *AlibabaAlscUnionElemePromotionOtherchannelGetRequest) ToFileMap() map[string]interface{} {
|
||
|
|
fileMap := make(map[string]interface{})
|
||
|
|
return fileMap
|
||
|
|
}
|