Package com.dropbox.core.v2.team
Class TeamGetInfoResult
- java.lang.Object
- 
- com.dropbox.core.v2.team.TeamGetInfoResult
 
- 
 public class TeamGetInfoResult extends java.lang.Object
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.Stringnameprotected longnumLicensedUsersprotected longnumProvisionedUsersprotected TeamMemberPoliciespoliciesprotected java.lang.StringteamId
 - 
Constructor SummaryConstructors Constructor Description TeamGetInfoResult(java.lang.String name, java.lang.String teamId, long numLicensedUsers, long numProvisionedUsers, TeamMemberPolicies policies)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetName()The name of the team.longgetNumLicensedUsers()The number of licenses available to the team.longgetNumProvisionedUsers()The number of accounts that have been invited or are already active members of the team.TeamMemberPoliciesgetPolicies()java.lang.StringgetTeamId()The ID of the team.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
nameprotected final java.lang.String name 
 - 
teamIdprotected final java.lang.String teamId 
 - 
numLicensedUsersprotected final long numLicensedUsers 
 - 
numProvisionedUsersprotected final long numProvisionedUsers 
 - 
policiesprotected final TeamMemberPolicies policies 
 
- 
 - 
Constructor Detail- 
TeamGetInfoResultpublic TeamGetInfoResult(java.lang.String name, java.lang.String teamId, long numLicensedUsers, long numProvisionedUsers, TeamMemberPolicies policies)- Parameters:
- 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.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getNamepublic java.lang.String getName() The name of the team.- Returns:
- value for this field, never null.
 
 - 
getTeamIdpublic java.lang.String getTeamId() The ID of the team.- Returns:
- value for this field, never null.
 
 - 
getNumLicensedUserspublic long getNumLicensedUsers() The number of licenses available to the team.- Returns:
- value for this field.
 
 - 
getNumProvisionedUserspublic long getNumProvisionedUsers() The number of accounts that have been invited or are already active members of the team.- Returns:
- value for this field.
 
 - 
getPoliciespublic TeamMemberPolicies getPolicies() - Returns:
- value for this field, never null.
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object obj) - Overrides:
- equalsin class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
toStringMultilinepublic java.lang.String toStringMultiline() Returns a String representation of this object formatted for easier readability.The returned String may contain newlines. - Returns:
- Formatted, multiline String representation of this object
 
 
- 
 
-