12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.v2.department.get request
- *
- * @author auto create
- * @since 1.0, 2022.05.24
- */
- class OapiV2DepartmentGetRequest
- {
- /**
- * 部门id,根部门ID为1
- **/
- private $deptId;
-
- /**
- * 通讯录语言(默认zh_CN)
- **/
- private $language;
-
- private $apiParas = array();
-
- public function setDeptId($deptId)
- {
- $this->deptId = $deptId;
- $this->apiParas["dept_id"] = $deptId;
- }
- public function getDeptId()
- {
- return $this->deptId;
- }
- public function setLanguage($language)
- {
- $this->language = $language;
- $this->apiParas["language"] = $language;
- }
- public function getLanguage()
- {
- return $this->language;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.v2.department.get";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->deptId,"deptId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|