12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- /**
- * TOP API: taobao.tbk.uatm.favorites.get request
- *
- * @author auto create
- * @since 1.0, 2018.01.19
- */
- class TbkUatmFavoritesGetRequest
- {
- /**
- * 需要返回的字段列表,不能为空,字段名之间使用逗号分隔
- **/
- private $fields;
-
- /**
- * 第几页,从1开始计数
- **/
- private $pageNo;
-
- /**
- * 默认20,页大小,即每一页的活动个数
- **/
- private $pageSize;
-
- /**
- * 默认值-1;选品库类型,1:普通选品组,2:高佣选品组,-1,同时输出所有类型的选品组
- **/
- private $type;
-
- private $apiParas = array();
-
- public function setFields($fields)
- {
- $this->fields = $fields;
- $this->apiParas["fields"] = $fields;
- }
- public function getFields()
- {
- return $this->fields;
- }
- 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 setType($type)
- {
- $this->type = $type;
- $this->apiParas["type"] = $type;
- }
- public function getType()
- {
- return $this->type;
- }
- public function getApiMethodName()
- {
- return "taobao.tbk.uatm.favorites.get";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->fields,"fields");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|