Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class CustomerEmail extends BaseResource |
||
14 | { |
||
15 | //-------------------------------------------------------------------------------------------------------------------- |
||
16 | /** |
||
17 | * @var string|null |
||
18 | */ |
||
19 | public $emailAddress; |
||
20 | |||
21 | //-------------------------------------------------------------------------------------------------------------------- |
||
22 | /** |
||
23 | * Object constructor. |
||
24 | * |
||
25 | * @param ClubCollectApiClient $client The API client. |
||
26 | * @param array $response The API response. |
||
27 | * |
||
28 | * @throws ClubCollectApiException |
||
29 | */ |
||
30 | public function __construct(ClubCollectApiClient $client, array $response) |
||
48 |