12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.smartdevice.facelevel.get request
- *
- * @author auto create
- * @since 1.0, 2021.03.19
- */
- class OapiSmartdeviceFacelevelGetRequest
- {
- /**
- * 字符串数组
- **/
- private $useridList;
-
- private $apiParas = array();
-
- public function setUseridList($useridList)
- {
- $this->useridList = $useridList;
- $this->apiParas["userid_list"] = $useridList;
- }
- public function getUseridList()
- {
- return $this->useridList;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.smartdevice.facelevel.get";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->useridList,"useridList");
- RequestCheckUtil::checkMaxListSize($this->useridList,100,"useridList");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|