1 | <?php |
||
5 | class List_ |
||
6 | { |
||
7 | public $accountId; |
||
8 | public $id; |
||
9 | public $created; |
||
10 | public $modified; |
||
11 | public $state; |
||
12 | public $name; |
||
13 | public $remarks; |
||
14 | public $subscribeNotificationEmail; |
||
15 | public $unsubsribeNotificationEmail; |
||
16 | public $numberOfActiveMembers; |
||
17 | public $numberOfUnsubscribedMembers; |
||
18 | public $numberOfCleanedMembers; |
||
19 | |||
20 | /** |
||
21 | * @param array $response |
||
22 | * @return List_ |
||
23 | */ |
||
24 | public static function createFromResponse(array $response): self |
||
32 | |||
33 | /** |
||
34 | * @param array $response |
||
35 | */ |
||
36 | public function updateFromResponse(array $response) |
||
51 | } |
||
52 |