| 1 | <?php |
||
| 17 | class ViewUserNotificationsQuery |
||
| 18 | { |
||
| 19 | private $userId; |
||
| 20 | private $offset; |
||
| 21 | private $limit; |
||
| 22 | private $status; |
||
| 23 | |||
| 24 | public function __construct(string $userId, int $offset, int $limit, string $status = null) |
||
| 31 | |||
| 32 | public function userId() : string |
||
| 36 | |||
| 37 | public function offset() : int |
||
| 41 | |||
| 42 | public function limit() : int |
||
| 46 | |||
| 47 | public function status() : ?string |
||
| 51 | } |
||
| 52 |