123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.call_back.update_call_back request
- *
- * @author auto create
- * @since 1.0, 2018.07.25
- */
- class OapiCallBackUpdateCallBackRequest
- {
- /**
- * 数据加密密钥。用于回调数据的加密,长度固定为43个字符,从a-z, A-Z, 0-9共62个字符中选取,您可以随机生成,ISV(服务提供商)推荐使用注册套件时填写的EncodingAESKey
- **/
- private $aesKey;
-
- /**
- * 需要监听的事件类型,有20种,“user_add_org”, “user_modify_org”, “user_leave_org”,“org_admin_add”, “org_admin_remove”, “org_dept_create”, “org_dept_modify”, “org_dept_remove”, “org_remove”, “chat_add_member”, “chat_remove_member”, “chat_quit”, “chat_update_owner”, “chat_update_title”, “chat_disband”, “chat_disband_microapp”, “check_in”,“bpms_task_change”,“bpms_instance_change”,,“label_user_change”,“label_conf_add”, “label_conf_modify”,“label_conf_del”,
- **/
- private $callBackTag;
-
- /**
- * 加解密需要用到的token,ISV(服务提供商)推荐使用注册套件时填写的token,普通企业可以随机填写
- **/
- private $token;
-
- /**
- * 更新事件回调接口
- **/
- private $url;
-
- private $apiParas = array();
-
- public function setAesKey($aesKey)
- {
- $this->aesKey = $aesKey;
- $this->apiParas["aes_key"] = $aesKey;
- }
- public function getAesKey()
- {
- return $this->aesKey;
- }
- public function setCallBackTag($callBackTag)
- {
- $this->callBackTag = $callBackTag;
- $this->apiParas["call_back_tag"] = $callBackTag;
- }
- public function getCallBackTag()
- {
- return $this->callBackTag;
- }
- public function setToken($token)
- {
- $this->token = $token;
- $this->apiParas["token"] = $token;
- }
- public function getToken()
- {
- return $this->token;
- }
- public function setUrl($url)
- {
- $this->url = $url;
- $this->apiParas["url"] = $url;
- }
- public function getUrl()
- {
- return $this->url;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.call_back.update_call_back";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkMaxListSize($this->callBackTag,20,"callBackTag");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|