| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /**
- * TOP API: taobao.tbk.dg.vegas.tlj.report request
- *
- * @author auto create
- * @since 1.0, 2022.06.30
- */
- class TbkDgVegasTljReportRequest
- {
- /**
- * adzoneId
- **/
- private $adzoneId;
-
- /**
- * 创建淘礼金时返回的rightsId
- **/
- private $rightsId;
-
- private $apiParas = array();
-
- public function setAdzoneId($adzoneId)
- {
- $this->adzoneId = $adzoneId;
- $this->apiParas["adzone_id"] = $adzoneId;
- }
- public function getAdzoneId()
- {
- return $this->adzoneId;
- }
- public function setRightsId($rightsId)
- {
- $this->rightsId = $rightsId;
- $this->apiParas["rights_id"] = $rightsId;
- }
- public function getRightsId()
- {
- return $this->rightsId;
- }
- public function getApiMethodName()
- {
- return "taobao.tbk.dg.vegas.tlj.report";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->adzoneId,"adzoneId");
- RequestCheckUtil::checkNotNull($this->rightsId,"rightsId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|