12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.im.intelligent.card.send request
- *
- * @author auto create
- * @since 1.0, 2019.09.26
- */
- class OapiImIntelligentCardSendRequest
- {
- /**
- * 群助理的biz类型
- **/
- private $bizType;
-
- /**
- * 加密的群id
- **/
- private $openConversationId;
-
- /**
- * 动态卡片的json格式模板
- **/
- private $templateData;
-
- private $apiParas = array();
-
- public function setBizType($bizType)
- {
- $this->bizType = $bizType;
- $this->apiParas["biz_type"] = $bizType;
- }
- public function getBizType()
- {
- return $this->bizType;
- }
- public function setOpenConversationId($openConversationId)
- {
- $this->openConversationId = $openConversationId;
- $this->apiParas["open_conversation_id"] = $openConversationId;
- }
- public function getOpenConversationId()
- {
- return $this->openConversationId;
- }
- public function setTemplateData($templateData)
- {
- $this->templateData = $templateData;
- $this->apiParas["template_data"] = $templateData;
- }
- public function getTemplateData()
- {
- return $this->templateData;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.im.intelligent.card.send";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->bizType,"bizType");
- RequestCheckUtil::checkNotNull($this->openConversationId,"openConversationId");
- RequestCheckUtil::checkNotNull($this->templateData,"templateData");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|