12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.im.chat.cid.convert request
- *
- * @author auto create
- * @since 1.0, 2019.07.01
- */
- class OapiImChatCidConvertRequest
- {
- /**
- * 开放的chatId
- **/
- private $chatId;
-
- private $apiParas = array();
-
- public function setChatId($chatId)
- {
- $this->chatId = $chatId;
- $this->apiParas["chat_id"] = $chatId;
- }
- public function getChatId()
- {
- return $this->chatId;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.im.chat.cid.convert";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->chatId,"chatId");
- RequestCheckUtil::checkMaxLength($this->chatId,128,"chatId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|