1 | <?php |
||
29 | class SubscriptionResponseEntity extends ResponseEntity |
||
30 | { |
||
31 | /** |
||
32 | * @deprecated use $authorizationId instead |
||
33 | * |
||
34 | * @var string |
||
35 | */ |
||
36 | protected $externalId; |
||
37 | |||
38 | /** |
||
39 | * Field value must be saved by user for further use in sync-related requests |
||
40 | * |
||
41 | * @var string |
||
42 | */ |
||
43 | protected $authorizationId; |
||
44 | |||
45 | /** @var string */ |
||
46 | protected $integration; |
||
47 | |||
48 | /** @var bool */ |
||
49 | protected $connected; |
||
50 | |||
51 | /** @var \DateTime|bool */ |
||
52 | protected $createdAt; |
||
53 | |||
54 | /** @var \DateTime|bool */ |
||
55 | protected $updatedAt; |
||
56 | |||
57 | /** @var SubscriptionActionEntity[] */ |
||
58 | protected $actions; |
||
59 | |||
60 | /** |
||
61 | * @deprecated use getAuthorizationId() instead |
||
62 | * |
||
63 | * @return string |
||
64 | */ |
||
65 | public function getExternalId() |
||
71 | |||
72 | /** |
||
73 | * @param string $createdAt |
||
74 | */ |
||
75 | public function setCreatedAt($createdAt) |
||
79 | |||
80 | /** |
||
81 | * @param string $updatedAt |
||
82 | */ |
||
83 | public function setUpdatedAt($updatedAt) |
||
87 | |||
88 | /** |
||
89 | * @param array $actions |
||
90 | * @return static |
||
91 | */ |
||
92 | public function setActions($actions) |
||
100 | |||
101 | /** |
||
102 | * @return array |
||
103 | */ |
||
104 | public function getRequired() |
||
111 | } |
||
112 |
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.