123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.smartdevice.facegroup.update request
- *
- * @author auto create
- * @since 1.0, 2019.07.01
- */
- class OapiSmartdeviceFacegroupUpdateRequest
- {
- /**
- * M2上的定制UI
- **/
- private $bgImgUrl;
-
- /**
- * 业务id
- **/
- private $bizId;
-
- /**
- * 结束时间
- **/
- private $endTime;
-
- /**
- * 识别成功后的问候语
- **/
- private $greetingMsg;
-
- /**
- * 开始时间
- **/
- private $startTime;
-
- /**
- * 识别组启用状态:1-已启用;2未启用;
- **/
- private $status;
-
- /**
- * 识别组的标题
- **/
- private $title;
-
- private $apiParas = array();
-
- public function setBgImgUrl($bgImgUrl)
- {
- $this->bgImgUrl = $bgImgUrl;
- $this->apiParas["bg_img_url"] = $bgImgUrl;
- }
- public function getBgImgUrl()
- {
- return $this->bgImgUrl;
- }
- public function setBizId($bizId)
- {
- $this->bizId = $bizId;
- $this->apiParas["biz_id"] = $bizId;
- }
- public function getBizId()
- {
- return $this->bizId;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- $this->apiParas["end_time"] = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setGreetingMsg($greetingMsg)
- {
- $this->greetingMsg = $greetingMsg;
- $this->apiParas["greeting_msg"] = $greetingMsg;
- }
- public function getGreetingMsg()
- {
- return $this->greetingMsg;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- $this->apiParas["start_time"] = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- $this->apiParas["status"] = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function setTitle($title)
- {
- $this->title = $title;
- $this->apiParas["title"] = $title;
- }
- public function getTitle()
- {
- return $this->title;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.smartdevice.facegroup.update";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkMaxLength($this->bgImgUrl,512,"bgImgUrl");
- RequestCheckUtil::checkNotNull($this->bizId,"bizId");
- RequestCheckUtil::checkMaxLength($this->bizId,23,"bizId");
- RequestCheckUtil::checkNotNull($this->endTime,"endTime");
- RequestCheckUtil::checkMaxLength($this->greetingMsg,16,"greetingMsg");
- RequestCheckUtil::checkNotNull($this->startTime,"startTime");
- RequestCheckUtil::checkNotNull($this->status,"status");
- RequestCheckUtil::checkMaxValue($this->status,2,"status");
- RequestCheckUtil::checkMinValue($this->status,1,"status");
- RequestCheckUtil::checkNotNull($this->title,"title");
- RequestCheckUtil::checkMaxLength($this->title,32,"title");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|