Total Complexity | 1 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class OrganizationResponse |
||
6 | { |
||
7 | public string $id; |
||
8 | |||
9 | public string $uuid; |
||
10 | |||
11 | public string $name; |
||
12 | |||
13 | public MemberResponse $owner; |
||
14 | |||
15 | public ?string $subscriptions_total; |
||
16 | |||
17 | public string $admins_total; |
||
18 | |||
19 | public string $users_total; |
||
20 | |||
21 | public string $teams_total; |
||
22 | |||
23 | public string $roles_total; |
||
24 | |||
25 | public object $links; |
||
26 | |||
27 | public function __construct(object $organization) |
||
41 |