| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- * TOP API: alibaba.aliqin.fc.iot.clear.auth request
- *
- * @author auto create
- * @since 1.0, 2017.11.29
- */
- class AlibabaAliqinFcIotClearAuthRequest
- {
- /**
- * 同填ICCID值
- **/
- private $billReal;
-
- /**
- * 物联卡固定写ICCID
- **/
- private $billSource;
-
- /**
- * 物联卡对应的ICCID
- **/
- private $iccid;
-
- private $apiParas = array();
-
- public function setBillReal($billReal)
- {
- $this->billReal = $billReal;
- $this->apiParas["bill_real"] = $billReal;
- }
- public function getBillReal()
- {
- return $this->billReal;
- }
- public function setBillSource($billSource)
- {
- $this->billSource = $billSource;
- $this->apiParas["bill_source"] = $billSource;
- }
- public function getBillSource()
- {
- return $this->billSource;
- }
- public function setIccid($iccid)
- {
- $this->iccid = $iccid;
- $this->apiParas["iccid"] = $iccid;
- }
- public function getIccid()
- {
- return $this->iccid;
- }
- public function getApiMethodName()
- {
- return "alibaba.aliqin.fc.iot.clear.auth";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->billReal,"billReal");
- RequestCheckUtil::checkNotNull($this->billSource,"billSource");
- RequestCheckUtil::checkNotNull($this->iccid,"iccid");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|