Class MembersSetPermissions2Result

java.lang.Object
com.dropbox.core.v2.team.MembersSetPermissions2Result

public class MembersSetPermissions2Result extends Object
  • Field Details

    • teamMemberId

      @Nonnull protected final String teamMemberId
    • roles

      @Nullable protected final List<TeamMemberRole> roles
  • Constructor Details

    • MembersSetPermissions2Result

      public MembersSetPermissions2Result(@Nonnull String teamMemberId, @Nullable List<TeamMemberRole> roles)
      Parameters:
      teamMemberId - The member ID of the user to which the change was applied. Must not be null.
      roles - The roles after the change. Empty in case the user become a non-admin. Must not contain a null item.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
    • MembersSetPermissions2Result

      public MembersSetPermissions2Result(@Nonnull String teamMemberId)
      None

      The default values for unset fields will be used.

      Parameters:
      teamMemberId - The member ID of the user to which the change was applied. Must not be null.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
  • Method Details

    • getTeamMemberId

      @Nonnull public String getTeamMemberId()
      The member ID of the user to which the change was applied.
      Returns:
      value for this field, never null.
    • getRoles

      @Nullable public List<TeamMemberRole> getRoles()
      The roles after the change. Empty in case the user become a non-admin.
      Returns:
      value for this field, or null if not present.
    • hashCode

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

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • toString

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

      public 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