public class TeamGetInfoResult extends Object
Modifier and Type | Field and Description |
---|---|
protected String |
name |
protected long |
numLicensedUsers |
protected long |
numProvisionedUsers |
protected TeamMemberPolicies |
policies |
protected String |
teamId |
Constructor and Description |
---|
TeamGetInfoResult(String name,
String teamId,
long numLicensedUsers,
long numProvisionedUsers,
TeamMemberPolicies policies) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
String |
getName()
The name of the team.
|
long |
getNumLicensedUsers()
The number of licenses available to the team.
|
long |
getNumProvisionedUsers()
The number of accounts that have been invited or are already active
members of the team.
|
TeamMemberPolicies |
getPolicies() |
String |
getTeamId()
The ID of the team.
|
int |
hashCode() |
String |
toString() |
String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
protected final String name
protected final String teamId
protected final long numLicensedUsers
protected final long numProvisionedUsers
protected final TeamMemberPolicies policies
public TeamGetInfoResult(String name, String teamId, long numLicensedUsers, long numProvisionedUsers, TeamMemberPolicies policies)
name
- The name of the team. Must not be null
.teamId
- The ID of the team. Must not be null
.numLicensedUsers
- The number of licenses available to the team.numProvisionedUsers
- The number of accounts that have been invited
or are already active members of the team.policies
- Must not be null
.IllegalArgumentException
- If any argument does not meet its
preconditions.public String getName()
null
.public String getTeamId()
null
.public long getNumLicensedUsers()
public long getNumProvisionedUsers()
public TeamMemberPolicies getPolicies()
null
.public String toStringMultiline()
The returned String may contain newlines.