12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- * dingtalk API: dingtalk.corp.smartdevice.receptionist.pushinfo request
- *
- * @author auto create
- * @since 1.0, 2019.07.03
- */
- class CorpSmartdeviceReceptionistPushinfoRequest
- {
- /**
- * 展示模板需要的变量数据
- **/
- private $descContent;
-
- /**
- * 智能前台信息展示模板ID,需要向智能硬件团队申请
- **/
- private $descTemplate;
-
- /**
- * 微应用agentID
- **/
- private $microappAgentId;
-
- private $apiParas = array();
-
- public function setDescContent($descContent)
- {
- $this->descContent = $descContent;
- $this->apiParas["desc_content"] = $descContent;
- }
- public function getDescContent()
- {
- return $this->descContent;
- }
- public function setDescTemplate($descTemplate)
- {
- $this->descTemplate = $descTemplate;
- $this->apiParas["desc_template"] = $descTemplate;
- }
- public function getDescTemplate()
- {
- return $this->descTemplate;
- }
- public function setMicroappAgentId($microappAgentId)
- {
- $this->microappAgentId = $microappAgentId;
- $this->apiParas["microapp_agent_id"] = $microappAgentId;
- }
- public function getMicroappAgentId()
- {
- return $this->microappAgentId;
- }
- public function getApiMethodName()
- {
- return "dingtalk.corp.smartdevice.receptionist.pushinfo";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->descContent,"descContent");
- RequestCheckUtil::checkNotNull($this->descTemplate,"descTemplate");
- RequestCheckUtil::checkNotNull($this->microappAgentId,"microappAgentId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|