| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- /**
- * TOP API: taobao.openim.track.getdetails request
- *
- * @author auto create
- * @since 1.0, 2016.03.25
- */
- class OpenimTrackGetdetailsRequest
- {
- /**
- * 查询结束时间(UTC时间,以毫秒为单位)
- **/
- private $endtime;
-
- /**
- * 用户所属app的prefix
- **/
- private $prefix;
-
- /**
- * 查询开始时间(UTC时间,以毫秒为单位)
- **/
- private $starttime;
-
- /**
- * 用户ID
- **/
- private $uid;
-
- private $apiParas = array();
-
- public function setEndtime($endtime)
- {
- $this->endtime = $endtime;
- $this->apiParas["endtime"] = $endtime;
- }
- public function getEndtime()
- {
- return $this->endtime;
- }
- public function setPrefix($prefix)
- {
- $this->prefix = $prefix;
- $this->apiParas["prefix"] = $prefix;
- }
- public function getPrefix()
- {
- return $this->prefix;
- }
- public function setStarttime($starttime)
- {
- $this->starttime = $starttime;
- $this->apiParas["starttime"] = $starttime;
- }
- public function getStarttime()
- {
- return $this->starttime;
- }
- public function setUid($uid)
- {
- $this->uid = $uid;
- $this->apiParas["uid"] = $uid;
- }
- public function getUid()
- {
- return $this->uid;
- }
- public function getApiMethodName()
- {
- return "taobao.openim.track.getdetails";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->endtime,"endtime");
- RequestCheckUtil::checkNotNull($this->starttime,"starttime");
- RequestCheckUtil::checkNotNull($this->uid,"uid");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|