20 lines
417 B
PHP
20 lines
417 B
PHP
<?php
|
|
|
|
namespace Modules\IntegrationHub\Events;
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class IntegrationExportCompleted
|
|
{
|
|
use Dispatchable, SerializesModels;
|
|
|
|
public function __construct(
|
|
public int $businessId,
|
|
public string $dataset,
|
|
public string $format,
|
|
public ?string $filePath,
|
|
public int $exportJobId
|
|
) {}
|
|
}
|