| <?php |
| |
| // This file is auto-generated, don't edit it. Thanks. |
| namespace RocketMQ\Eventbridge\SDK\Models; |
| |
| use AlibabaCloud\Tea\Model; |
| |
| class ListEventBusesRequest extends Model { |
| protected $_name = [ |
| 'maxResults' => 'maxResults', |
| 'nextToken' => 'nextToken', |
| ]; |
| public function validate() {} |
| public function toMap() { |
| $res = []; |
| if (null !== $this->maxResults) { |
| $res['maxResults'] = $this->maxResults; |
| } |
| if (null !== $this->nextToken) { |
| $res['nextToken'] = $this->nextToken; |
| } |
| return $res; |
| } |
| /** |
| * @param array $map |
| * @return ListEventBusesRequest |
| */ |
| public static function fromMap($map = []) { |
| $model = new self(); |
| if(isset($map['maxResults'])){ |
| $model->maxResults = $map['maxResults']; |
| } |
| if(isset($map['nextToken'])){ |
| $model->nextToken = $map['nextToken']; |
| } |
| return $model; |
| } |
| /** |
| * @description The maximum number of entries to be returned in a call. You can use this parameter and NextToken to implement paging. Note: Up to 100 entries can be returned in a call. |
| * @example 10 |
| * @var int |
| */ |
| public $maxResults; |
| |
| /** |
| * @description If you set Limit and excess return values exist, this parameter is returned. |
| * @example 10 |
| * @var string |
| */ |
| public $nextToken; |
| |
| } |