12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.pbp.instance.disable request
- *
- * @author auto create
- * @since 1.0, 2020.01.19
- */
- class OapiPbpInstanceDisableRequest
- {
- /**
- * 业务唯一标识
- **/
- private $bizId;
-
- /**
- * 业务实例唯一标识
- **/
- private $bizInstId;
-
- private $apiParas = array();
-
- public function setBizId($bizId)
- {
- $this->bizId = $bizId;
- $this->apiParas["biz_id"] = $bizId;
- }
- public function getBizId()
- {
- return $this->bizId;
- }
- public function setBizInstId($bizInstId)
- {
- $this->bizInstId = $bizInstId;
- $this->apiParas["biz_inst_id"] = $bizInstId;
- }
- public function getBizInstId()
- {
- return $this->bizInstId;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.pbp.instance.disable";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->bizInstId,"bizInstId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|