third-platform-sdk/sdk/topsdk/defaultability/request/AlibabaAlscUnionElemePromotionStorepromotionQueryRequest.go
2024-05-04 16:57:40 +08:00

31 lines
999 B
Go

package request
import (
"topsdk/defaultability/domain"
"topsdk/util"
)
type AlibabaAlscUnionElemePromotionStorepromotionQueryRequest struct {
/*
查询rquest */
QueryRequest *domain.AlibabaAlscUnionElemePromotionStorepromotionQueryPromotionQueryRequest `json:"query_request" required:"true" `
}
func (s *AlibabaAlscUnionElemePromotionStorepromotionQueryRequest) SetQueryRequest(v domain.AlibabaAlscUnionElemePromotionStorepromotionQueryPromotionQueryRequest) *AlibabaAlscUnionElemePromotionStorepromotionQueryRequest {
s.QueryRequest = &v
return s
}
func (req *AlibabaAlscUnionElemePromotionStorepromotionQueryRequest) ToMap() map[string]interface{} {
paramMap := make(map[string]interface{})
if req.QueryRequest != nil {
paramMap["query_request"] = util.ConvertStruct(*req.QueryRequest)
}
return paramMap
}
func (req *AlibabaAlscUnionElemePromotionStorepromotionQueryRequest) ToFileMap() map[string]interface{} {
fileMap := make(map[string]interface{})
return fileMap
}