1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.live.grouplive.statistics request
- *
- * @author auto create
- * @since 1.0, 2021.02.07
- */
- class OapiLiveGroupliveStatisticsRequest
- {
- /**
- * 群id
- **/
- private $cid;
-
- /**
- * 直播uuid
- **/
- private $liveUuid;
-
- /**
- * 用户id
- **/
- private $openId;
-
- private $apiParas = array();
-
- public function setCid($cid)
- {
- $this->cid = $cid;
- $this->apiParas["cid"] = $cid;
- }
- public function getCid()
- {
- return $this->cid;
- }
- public function setLiveUuid($liveUuid)
- {
- $this->liveUuid = $liveUuid;
- $this->apiParas["live_uuid"] = $liveUuid;
- }
- public function getLiveUuid()
- {
- return $this->liveUuid;
- }
- public function setOpenId($openId)
- {
- $this->openId = $openId;
- $this->apiParas["open_id"] = $openId;
- }
- public function getOpenId()
- {
- return $this->openId;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.live.grouplive.statistics";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->liveUuid,"liveUuid");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|