Class TeamGetInfoResult


  • public class TeamGetInfoResult
    extends java.lang.Object
    • Field Detail

      • name

        protected final java.lang.String name
      • teamId

        protected final java.lang.String teamId
      • numLicensedUsers

        protected final long numLicensedUsers
      • numProvisionedUsers

        protected final long numProvisionedUsers
    • Constructor Detail

      • TeamGetInfoResult

        public 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

      • getName

        public java.lang.String getName()
        The name of the team.
        Returns:
        value for this field, never null.
      • getTeamId

        public java.lang.String getTeamId()
        The ID of the team.
        Returns:
        value for this field, never null.
      • getNumLicensedUsers

        public long getNumLicensedUsers()
        The number of licenses available to the team.
        Returns:
        value for this field.
      • getNumProvisionedUsers

        public long getNumProvisionedUsers()
        The number of accounts that have been invited or are already active members of the team.
        Returns:
        value for this field.
      • getPolicies

        public TeamMemberPolicies getPolicies()
        Returns:
        value for this field, never null.
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • toStringMultiline

        public 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