29 lines
926 B
Go
29 lines
926 B
Go
package request
|
|
|
|
import (
|
|
"git.sunqdl.cn/fgqj/topsdk/defaultability/domain"
|
|
"git.sunqdl.cn/fgqj/topsdk/util"
|
|
)
|
|
|
|
type TaobaoUnideskRtaReportAsynctaskResultGetRequest struct {
|
|
AsyncTaskTopQueryDto *domain.AsyncTaskTopQueryDTO `json:"async_task_top_query_dto" required:"true" `
|
|
}
|
|
|
|
func (s *TaobaoUnideskRtaReportAsynctaskResultGetRequest) SetReportTaskTopDto(v domain.AsyncTaskTopQueryDTO) *TaobaoUnideskRtaReportAsynctaskResultGetRequest {
|
|
s.AsyncTaskTopQueryDto = &v
|
|
return s
|
|
}
|
|
|
|
func (req *TaobaoUnideskRtaReportAsynctaskResultGetRequest) ToMap() map[string]interface{} {
|
|
paramMap := make(map[string]interface{})
|
|
if req.AsyncTaskTopQueryDto != nil {
|
|
paramMap["async_task_top_query_dto"] = util.ConvertStructList(*req.AsyncTaskTopQueryDto)
|
|
}
|
|
return paramMap
|
|
}
|
|
|
|
func (req *TaobaoUnideskRtaReportAsynctaskResultGetRequest) ToFileMap() map[string]interface{} {
|
|
fileMap := make(map[string]interface{})
|
|
return fileMap
|
|
}
|