REAPI/extend/sdk/taobao/top/request/TmcMessagesConsumeRequest.php

64 lines
1.1 KiB
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?php
/**
* TOP API: taobao.tmc.messages.consume request
*
* @author auto create
* @since 1.0, 2024.03.14
*/
class TmcMessagesConsumeRequest
{
/**
* 用户分组名称,不传表示消费默认分组,如果应用没有设置用户分组,传入分组名称将会返回错误
**/
private $groupName;
/**
* 每次批量消费消息的条数最小值10最大值200
**/
private $quantity;
private $apiParas = array();
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 "taobao.tmc.messages.consume";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}