1 | <?php |
||
10 | class Ownership |
||
11 | { |
||
12 | /** |
||
13 | * @Type("integer") |
||
14 | * @SerializedName("ownerGroupId") |
||
15 | * |
||
16 | * @var int |
||
17 | */ |
||
18 | private $ownerGroupId; |
||
19 | |||
20 | /** |
||
21 | * @Type("boolean") |
||
22 | * |
||
23 | * @var bool |
||
24 | */ |
||
25 | private $visibility; |
||
26 | |||
27 | public function getOwnerGroupId(): int |
||
31 | |||
32 | public function setOwnerGroupId(int $ownerGroupId): Ownership |
||
38 | |||
39 | public function isVisible(): bool |
||
43 | |||
44 | public function setVisibility(bool $visibility): Ownership |
||
50 | |||
51 | |||
52 | } |
||
53 |