| <?php |
| |
| // This file is auto-generated, don't edit it. Thanks. |
| namespace RocketMQ\Eventbridge\SDK\Models; |
| |
| use AlibabaCloud\Tea\Model; |
| |
| /** |
| * EventType Controller apis: |
| * * listEventTypes * |
| */ |
| class ListEventTypesRequest extends Model { |
| protected $_name = [ |
| 'eventBusName' => 'eventBusName', |
| 'eventSourceName' => 'eventSourceName', |
| 'maxResults' => 'maxResults', |
| 'nextToken' => 'nextToken', |
| ]; |
| public function validate() {} |
| public function toMap() { |
| $res = []; |
| if (null !== $this->eventBusName) { |
| $res['eventBusName'] = $this->eventBusName; |
| } |
| if (null !== $this->eventSourceName) { |
| $res['eventSourceName'] = $this->eventSourceName; |
| } |
| if (null !== $this->maxResults) { |
| $res['maxResults'] = $this->maxResults; |
| } |
| if (null !== $this->nextToken) { |
| $res['nextToken'] = $this->nextToken; |
| } |
| return $res; |
| } |
| /** |
| * @param array $map |
| * @return ListEventTypesRequest |
| */ |
| public static function fromMap($map = []) { |
| $model = new self(); |
| if(isset($map['eventBusName'])){ |
| $model->eventBusName = $map['eventBusName']; |
| } |
| if(isset($map['eventSourceName'])){ |
| $model->eventSourceName = $map['eventSourceName']; |
| } |
| if(isset($map['maxResults'])){ |
| $model->maxResults = $map['maxResults']; |
| } |
| if(isset($map['nextToken'])){ |
| $model->nextToken = $map['nextToken']; |
| } |
| return $model; |
| } |
| /** |
| * @description The name of the event bus. |
| This parameter is required. |
| * @example demo |
| * @var string |
| */ |
| public $eventBusName; |
| |
| /** |
| * @description EventSource is required for querying default bus events. |
| * @example testEventSourceName |
| * @var string |
| */ |
| public $eventSourceName; |
| |
| /** |
| * @description The number of entries returned per page. |
| * @example 10 |
| * @var int |
| */ |
| public $maxResults; |
| |
| /** |
| * @description If excess return values exist, this parameter is returned. |
| * @example 0 |
| * @var string |
| */ |
| public $nextToken; |
| |
| } |