REAPI/extend/sdk/banma/client/request/QmcsQueueGetRequest.php
2024-09-29 15:43:18 +08:00

46 lines
741 B
PHP

<?php
/**
* API: qianmi.qmcs.queue.get request
*
* @author auto create
* @since 1.0
*/
class QmcsQueueGetRequest
{
private $apiParas = array();
/**
* null
*/
private $groupName;
public function setGroupName($groupName)
{
$this->groupName = $groupName;
$this->apiParas["group_name"] = $groupName;
}
public function getGroupName() {
return $this->groupName;
}
public function getApiMethodName()
{
return "qianmi.qmcs.queue.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->groupName, "groupName");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}