Files
LaravelRabbitMQ/src/Dto/ConsumerParameters.php

31 lines
979 B
PHP

<?php
declare(strict_types=1);
namespace Diffhead\PHP\LaravelRabbitMQ\Dto;
use Diffhead\PHP\Dto\Dto;
use Diffhead\PHP\Dto\Property;
/**
* @property \Diffhead\PHP\Dto\Property<string|null> $connection
* @property \Diffhead\PHP\Dto\Property<string|null> $queue
* @property \Diffhead\PHP\Dto\Property<bool> $queueAutoDelete
* @property \Diffhead\PHP\Dto\Property<string|null> $exchange
* @property \Diffhead\PHP\Dto\Property<string|null> $routingKey
* @property \Diffhead\PHP\Dto\Property<string|null> $exchangeType
* @property \Diffhead\PHP\Dto\Property<bool> $exchangeIsDefault
* @property \Diffhead\PHP\Dto\Property<string|null> $tag
*/
class ConsumerParameters extends Dto
{
protected Property $connection;
protected Property $queue;
protected Property $queueAutoDelete;
protected Property $exchange;
protected Property $routingKey;
protected Property $exchangeType;
protected Property $exchangeIsDefault;
protected Property $tag;
}