SimbaRptAdgroupcreativeeffectGetRequest.php
3.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<?php
/**
* TOP API: taobao.simba.rpt.adgroupcreativeeffect.get request
*
* @author auto create
* @since 1.0, 2012-12-13 16:33:03
*/
class SimbaRptAdgroupcreativeeffectGetRequest
{
/**
* 推广组id
**/
private $adgroupId;
/**
* 查询推广计划id
**/
private $campaignId;
/**
* 结束日期,格式yyyy-mm-dd
**/
private $endTime;
/**
* 昵称
**/
private $nick;
/**
* 页码
**/
private $pageNo;
/**
* 每页大小
**/
private $pageSize;
/**
* 报表类型(搜索:SEARCH,类目出价:CAT, 定向投放:NOSEARCH汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如:SEARCH,CAT
**/
private $searchType;
/**
* 数据来源(站内:1,站外:2 ,汇总:SUMMARY)SUMMARY必须单选,其他值可多选例如1,2
**/
private $source;
/**
* 开始日期,格式yyyy-mm-dd
**/
private $startTime;
/**
* 权限验证信息
**/
private $subwayToken;
private $apiParas = array();
public function setAdgroupId($adgroupId)
{
$this->adgroupId = $adgroupId;
$this->apiParas["adgroup_id"] = $adgroupId;
}
public function getAdgroupId()
{
return $this->adgroupId;
}
public function setCampaignId($campaignId)
{
$this->campaignId = $campaignId;
$this->apiParas["campaign_id"] = $campaignId;
}
public function getCampaignId()
{
return $this->campaignId;
}
public function setEndTime($endTime)
{
$this->endTime = $endTime;
$this->apiParas["end_time"] = $endTime;
}
public function getEndTime()
{
return $this->endTime;
}
public function setNick($nick)
{
$this->nick = $nick;
$this->apiParas["nick"] = $nick;
}
public function getNick()
{
return $this->nick;
}
public function setPageNo($pageNo)
{
$this->pageNo = $pageNo;
$this->apiParas["page_no"] = $pageNo;
}
public function getPageNo()
{
return $this->pageNo;
}
public function setPageSize($pageSize)
{
$this->pageSize = $pageSize;
$this->apiParas["page_size"] = $pageSize;
}
public function getPageSize()
{
return $this->pageSize;
}
public function setSearchType($searchType)
{
$this->searchType = $searchType;
$this->apiParas["search_type"] = $searchType;
}
public function getSearchType()
{
return $this->searchType;
}
public function setSource($source)
{
$this->source = $source;
$this->apiParas["source"] = $source;
}
public function getSource()
{
return $this->source;
}
public function setStartTime($startTime)
{
$this->startTime = $startTime;
$this->apiParas["start_time"] = $startTime;
}
public function getStartTime()
{
return $this->startTime;
}
public function setSubwayToken($subwayToken)
{
$this->subwayToken = $subwayToken;
$this->apiParas["subway_token"] = $subwayToken;
}
public function getSubwayToken()
{
return $this->subwayToken;
}
public function getApiMethodName()
{
return "taobao.simba.rpt.adgroupcreativeeffect.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->adgroupId,"adgroupId");
RequestCheckUtil::checkNotNull($this->campaignId,"campaignId");
RequestCheckUtil::checkNotNull($this->endTime,"endTime");
RequestCheckUtil::checkMinValue($this->pageNo,1,"pageNo");
RequestCheckUtil::checkMinValue($this->pageSize,1,"pageSize");
RequestCheckUtil::checkNotNull($this->searchType,"searchType");
RequestCheckUtil::checkNotNull($this->source,"source");
RequestCheckUtil::checkNotNull($this->startTime,"startTime");
RequestCheckUtil::checkNotNull($this->subwayToken,"subwayToken");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}