| 1 | <?php |
||
| 7 | class OriginalBusinessQuery |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $messageId; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string|null |
||
| 16 | */ |
||
| 17 | private $messageNameId; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var DateTimeImmutable|null |
||
| 21 | */ |
||
| 22 | private $createdOn; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $messageId |
||
| 26 | */ |
||
| 27 | 3 | public function __construct($messageId) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | 1 | public function getMessageId() |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @return string|null |
||
| 42 | */ |
||
| 43 | 1 | public function getMessageNameId() |
|
| 47 | |||
| 48 | /** |
||
| 49 | * @param string $messageNameId |
||
| 50 | * |
||
| 51 | * @return OriginalBusinessQuery |
||
| 52 | */ |
||
| 53 | 3 | public function setMessageNameId($messageNameId) |
|
| 59 | |||
| 60 | /** |
||
| 61 | * @param DateTimeImmutable $createdOn |
||
| 62 | * |
||
| 63 | * @return OriginalBusinessQuery |
||
| 64 | */ |
||
| 65 | 3 | public function setCreatedOn(DateTimeImmutable $createdOn) |
|
| 71 | |||
| 72 | /** |
||
| 73 | * @return DateTimeImmutable|null |
||
| 74 | */ |
||
| 75 | 1 | public function getCreatedOn() |
|
| 79 | } |
||
| 80 |