123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.sceneservicegroup.group.query request
- *
- * @author auto create
- * @since 1.0, 2021.01.21
- */
- class OapiSceneservicegroupGroupQueryRequest
- {
- /**
- * 表示分页游标,从0开始
- **/
- private $cursor;
-
- /**
- * 群名称
- **/
- private $groupName;
-
- /**
- * 开放群ID
- **/
- private $openConversationid;
-
- /**
- * 群组id
- **/
- private $openGroupsetid;
-
- /**
- * 团队id
- **/
- private $openTeamid;
-
- /**
- * 表示分页大小,size最大不超过100
- **/
- private $size;
-
- private $apiParas = array();
-
- public function setCursor($cursor)
- {
- $this->cursor = $cursor;
- $this->apiParas["cursor"] = $cursor;
- }
- public function getCursor()
- {
- return $this->cursor;
- }
- public function setGroupName($groupName)
- {
- $this->groupName = $groupName;
- $this->apiParas["group_name"] = $groupName;
- }
- public function getGroupName()
- {
- return $this->groupName;
- }
- public function setOpenConversationid($openConversationid)
- {
- $this->openConversationid = $openConversationid;
- $this->apiParas["open_conversationid"] = $openConversationid;
- }
- public function getOpenConversationid()
- {
- return $this->openConversationid;
- }
- public function setOpenGroupsetid($openGroupsetid)
- {
- $this->openGroupsetid = $openGroupsetid;
- $this->apiParas["open_groupsetid"] = $openGroupsetid;
- }
- public function getOpenGroupsetid()
- {
- return $this->openGroupsetid;
- }
- public function setOpenTeamid($openTeamid)
- {
- $this->openTeamid = $openTeamid;
- $this->apiParas["open_teamid"] = $openTeamid;
- }
- public function getOpenTeamid()
- {
- return $this->openTeamid;
- }
- public function setSize($size)
- {
- $this->size = $size;
- $this->apiParas["size"] = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.sceneservicegroup.group.query";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|