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

59 lines
1.0 KiB
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
/**
* API: qianmi.qmcs.messages.consume request
*
* @author auto create
* @since 1.0
*/
class QmcsMessagesConsumeRequest
{
private $apiParas = array();
/**
* 用户分组名称,不传表示消费默认分组
*/
private $groupName;
/**
* 每次批量消费消息的条数默认值100最多100
*/
private $quantity;
public function setGroupName($groupName)
{
$this->groupName = $groupName;
$this->apiParas["group_name"] = $groupName;
}
public function getGroupName() {
return $this->groupName;
}
public function setQuantity($quantity)
{
$this->quantity = $quantity;
$this->apiParas["quantity"] = $quantity;
}
public function getQuantity() {
return $this->quantity;
}
public function getApiMethodName()
{
return "qianmi.qmcs.messages.consume";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}