123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.message.corpconversation.sendbytemplate request
- *
- * @author auto create
- * @since 1.0, 2021.03.15
- */
- class OapiMessageCorpconversationSendbytemplateRequest
- {
- /**
- * 微应用的id
- **/
- private $agentId;
-
- /**
- * 消息模板动态参数赋值数据, key和value均为字符串格式。
- **/
- private $data;
-
- /**
- * 接收者的部门id列表
- **/
- private $deptIdList;
-
- /**
- * 消息模板id
- **/
- private $templateId;
-
- /**
- * 接收者的用户userid列表
- **/
- private $useridList;
-
- private $apiParas = array();
-
- public function setAgentId($agentId)
- {
- $this->agentId = $agentId;
- $this->apiParas["agent_id"] = $agentId;
- }
- public function getAgentId()
- {
- return $this->agentId;
- }
- public function setData($data)
- {
- $this->data = $data;
- $this->apiParas["data"] = $data;
- }
- public function getData()
- {
- return $this->data;
- }
- public function setDeptIdList($deptIdList)
- {
- $this->deptIdList = $deptIdList;
- $this->apiParas["dept_id_list"] = $deptIdList;
- }
- public function getDeptIdList()
- {
- return $this->deptIdList;
- }
- public function setTemplateId($templateId)
- {
- $this->templateId = $templateId;
- $this->apiParas["template_id"] = $templateId;
- }
- public function getTemplateId()
- {
- return $this->templateId;
- }
- public function setUseridList($useridList)
- {
- $this->useridList = $useridList;
- $this->apiParas["userid_list"] = $useridList;
- }
- public function getUseridList()
- {
- return $this->useridList;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.message.corpconversation.sendbytemplate";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->agentId,"agentId");
- RequestCheckUtil::checkMaxListSize($this->deptIdList,500,"deptIdList");
- RequestCheckUtil::checkNotNull($this->templateId,"templateId");
- RequestCheckUtil::checkMaxListSize($this->useridList,5000,"useridList");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|