1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.microapp.set_visible_scopes request
- *
- * @author auto create
- * @since 1.0, 2018.07.25
- */
- class OapiMicroappSetVisibleScopesRequest
- {
- /**
- * 微应用实例化id
- **/
- private $agentId;
-
- /**
- * 设置可见的部门id列表,格式为JSON数组
- **/
- private $deptVisibleScopes;
-
- /**
- * 是否仅限管理员可见,true代表仅限管理员可见
- **/
- private $isHidden;
-
- /**
- * 设置可见的员工id列表,格式为JSON数组
- **/
- private $userVisibleScopes;
-
- private $apiParas = array();
-
- public function setAgentId($agentId)
- {
- $this->agentId = $agentId;
- $this->apiParas["agentId"] = $agentId;
- }
- public function getAgentId()
- {
- return $this->agentId;
- }
- public function setDeptVisibleScopes($deptVisibleScopes)
- {
- $this->deptVisibleScopes = $deptVisibleScopes;
- $this->apiParas["deptVisibleScopes"] = $deptVisibleScopes;
- }
- public function getDeptVisibleScopes()
- {
- return $this->deptVisibleScopes;
- }
- public function setIsHidden($isHidden)
- {
- $this->isHidden = $isHidden;
- $this->apiParas["isHidden"] = $isHidden;
- }
- public function getIsHidden()
- {
- return $this->isHidden;
- }
- public function setUserVisibleScopes($userVisibleScopes)
- {
- $this->userVisibleScopes = $userVisibleScopes;
- $this->apiParas["userVisibleScopes"] = $userVisibleScopes;
- }
- public function getUserVisibleScopes()
- {
- return $this->userVisibleScopes;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.microapp.set_visible_scopes";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|