1 | <?php |
||
7 | class AccountLinkingEvent extends CallbackEvent |
||
8 | { |
||
9 | /** |
||
10 | * @var int |
||
11 | */ |
||
12 | private $timestamp; |
||
13 | |||
14 | /** |
||
15 | * @var AccountLinking |
||
16 | */ |
||
17 | private $accountLinking; |
||
18 | |||
19 | /** |
||
20 | * @param string $senderId |
||
21 | * @param string $recipientId |
||
22 | * @param int $timestamp |
||
23 | * @param AccountLinking $accountLinking |
||
24 | */ |
||
25 | public function __construct($senderId, $recipientId, $timestamp, AccountLinking $accountLinking) |
||
31 | |||
32 | /** |
||
33 | * @return int |
||
34 | */ |
||
35 | public function getTimestamp() |
||
39 | |||
40 | /** |
||
41 | * @return AccountLinking |
||
42 | */ |
||
43 | public function getAccountLinking() |
||
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | */ |
||
51 | public function getType() |
||
55 | } |
||
56 |