<?phpdeclare(strict_types=1);namespace VehicleIngestBundle\Message;/** * Async message dispatched by the seller-api controllers onto the `vehicle_ingest` transport. * Consumed by IngestAdMessageHandler, which routes it into IngestPipeline::upsert()/delete(). */final class IngestAdMessage{ public function __construct( public readonly string $operation, public readonly string $adId, public readonly ?array $rawAd, public readonly ?string $sellerId, public readonly ?string $requestId, ) { }}