1 | <?php |
||
6 | class SmsSentResponse |
||
7 | { |
||
8 | private $account; |
||
9 | private $smsId; |
||
10 | |||
11 | /** |
||
12 | * SmsSentResponse constructor. |
||
13 | * @param int $account |
||
14 | * @param string $smsId |
||
15 | */ |
||
16 | 2 | public function __construct(int $account, string $smsId) |
|
21 | |||
22 | /** |
||
23 | * @return int |
||
24 | */ |
||
25 | 2 | public function getAccount() : int |
|
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | 2 | public function getSmsId() : string |
|
37 | } |
||
38 |