REAPI/extend/sdk/taobao/QimenCloud/Qimen/top/request/ServiceHeartbeatRequest.php
2024-09-29 15:43:18 +08:00

48 lines
779 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* TOP API: taobao.qimen.service.heartbeat request
*
* @author auto create
* @since 1.0, 2019.10.29
*/
class ServiceHeartbeatRequest
{
/**
* 序列号string18必填
**/
private $serialNumber;
private $apiParas = array();
public function setSerialNumber($serialNumber)
{
$this->serialNumber = $serialNumber;
$this->apiParas["serialNumber"] = $serialNumber;
}
public function getSerialNumber()
{
return $this->serialNumber;
}
public function getApiMethodName()
{
return "taobao.qimen.service.heartbeat";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}