123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.serviceaccount.menu.get request
- *
- * @author auto create
- * @since 1.0, 2019.07.05
- */
- class OapiServiceaccountMenuGetRequest
- {
- /**
- * 服务号的unionid
- **/
- private $unionid;
-
- private $apiParas = array();
-
- public function setUnionid($unionid)
- {
- $this->unionid = $unionid;
- $this->apiParas["unionid"] = $unionid;
- }
- public function getUnionid()
- {
- return $this->unionid;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.serviceaccount.menu.get";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->unionid,"unionid");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|