12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.robot.message.sendgroup request
- *
- * @author auto create
- * @since 1.0, 2020.03.03
- */
- class OapiRobotMessageSendgroupRequest
- {
- /**
- * 申请到的消息模板唯一标识符
- **/
- private $msgKey;
-
- /**
- * 消息模板中,变量本次替换的值
- **/
- private $msgParam;
-
- /**
- * 群机器人webhook中的token
- **/
- private $token;
-
- private $apiParas = array();
-
- public function setMsgKey($msgKey)
- {
- $this->msgKey = $msgKey;
- $this->apiParas["msg_key"] = $msgKey;
- }
- public function getMsgKey()
- {
- return $this->msgKey;
- }
- public function setMsgParam($msgParam)
- {
- $this->msgParam = $msgParam;
- $this->apiParas["msg_param"] = $msgParam;
- }
- public function getMsgParam()
- {
- return $this->msgParam;
- }
- public function setToken($token)
- {
- $this->token = $token;
- $this->apiParas["token"] = $token;
- }
- public function getToken()
- {
- return $this->token;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.robot.message.sendgroup";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->msgKey,"msgKey");
- RequestCheckUtil::checkNotNull($this->msgParam,"msgParam");
- RequestCheckUtil::checkNotNull($this->token,"token");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|