| 1 | <?php |
||
| 21 | class ClientParametersUpdatedEvent extends Event |
||
| 22 | { |
||
| 23 | private $clientId; |
||
| 24 | |||
| 25 | private $parameters; |
||
| 26 | |||
| 27 | protected function __construct(ClientId $clientId, DataBag $parameters) |
||
| 32 | |||
| 33 | public static function getSchema(): string |
||
| 37 | |||
| 38 | public function getClientId(): ClientId |
||
| 42 | |||
| 43 | public function getParameters(): DataBag |
||
| 47 | |||
| 48 | public function getDomainId(): Id |
||
| 52 | |||
| 53 | public function getPayload() |
||
| 59 | } |
||
| 60 |