1 | <?php |
||
17 | class TimelineEventAccessor extends BaseObject implements TimelineEventAccessorInterface |
||
18 | { |
||
19 | use traits\TransformerCollectionTrait, |
||
20 | traits\IntegrationConnectionTrait, |
||
21 | traits\CacheTrait; |
||
22 | |||
23 | /** |
||
24 | * The event Id |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | public $id; |
||
29 | |||
30 | /** |
||
31 | * The event type Id |
||
32 | * |
||
33 | * @var string |
||
34 | */ |
||
35 | public $typeId; |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public function getTypeId(): string |
||
44 | |||
45 | /** |
||
46 | * @return string |
||
47 | */ |
||
48 | public function getId(): string |
||
52 | } |
||
53 |