| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- * TOP API: taobao.openim.tribe.getmembers request
- *
- * @author auto create
- * @since 1.0, 2015.08.26
- */
- class OpenimTribeGetmembersRequest
- {
- /**
- * 群id
- **/
- private $tribeId;
-
- /**
- * 用户信息
- **/
- private $user;
-
- private $apiParas = array();
-
- public function setTribeId($tribeId)
- {
- $this->tribeId = $tribeId;
- $this->apiParas["tribe_id"] = $tribeId;
- }
- public function getTribeId()
- {
- return $this->tribeId;
- }
- public function setUser($user)
- {
- $this->user = $user;
- $this->apiParas["user"] = $user;
- }
- public function getUser()
- {
- return $this->user;
- }
- public function getApiMethodName()
- {
- return "taobao.openim.tribe.getmembers";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->tribeId,"tribeId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|