1 | <?php |
||
7 | class Team extends ClientObject |
||
8 | { |
||
9 | /** |
||
10 | * Gets the team's ID. |
||
11 | * |
||
12 | * @return string The team's ID. |
||
13 | */ |
||
14 | 1 | public function getId() |
|
18 | |||
19 | /** |
||
20 | * Gets the name of the team. |
||
21 | * |
||
22 | * @return string The name of the team. |
||
23 | */ |
||
24 | 1 | public function getName() |
|
28 | |||
29 | /** |
||
30 | * Gets the team's domain name. |
||
31 | * |
||
32 | * @return string The domain name of the team. |
||
33 | */ |
||
34 | 1 | public function getDomain() |
|
38 | |||
39 | /** |
||
40 | * Gets the domain name emails are restricted to, if any. |
||
41 | * |
||
42 | * @return string An email domain name. |
||
43 | */ |
||
44 | 1 | public function getEmailDomain() |
|
48 | } |
||
49 |