bizId = $bizId; $this->apiParas["biz_id"] = $bizId; } public function getBizId() { return $this->bizId; } public function setCursor($cursor) { $this->cursor = $cursor; $this->apiParas["cursor"] = $cursor; } public function getCursor() { return $this->cursor; } public function setPunchGroupId($punchGroupId) { $this->punchGroupId = $punchGroupId; $this->apiParas["punch_group_id"] = $punchGroupId; } public function getPunchGroupId() { return $this->punchGroupId; } public function setSize($size) { $this->size = $size; $this->apiParas["size"] = $size; } public function getSize() { return $this->size; } public function getApiMethodName() { return "dingtalk.oapi.pbp.instance.group.member.list"; } public function getApiParas() { return $this->apiParas; } public function check() { RequestCheckUtil::checkNotNull($this->cursor,"cursor"); RequestCheckUtil::checkNotNull($this->punchGroupId,"punchGroupId"); RequestCheckUtil::checkNotNull($this->size,"size"); } public function putOtherTextParam($key, $value) { $this->apiParas[$key] = $value; $this->$key = $value; } }