Package com.dropbox.core.v2.team
Class MemberLinkedApps
- java.lang.Object
- 
- com.dropbox.core.v2.team.MemberLinkedApps
 
- 
 public class MemberLinkedApps extends java.lang.ObjectInformation on linked applications of a team member.
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.util.List<ApiApp>linkedApiAppsprotected java.lang.StringteamMemberId
 - 
Constructor SummaryConstructors Constructor Description MemberLinkedApps(java.lang.String teamMemberId, java.util.List<ApiApp> linkedApiApps)Information on linked applications of a team member.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.util.List<ApiApp>getLinkedApiApps()List of third party applications linked by this team member.java.lang.StringgetTeamMemberId()The member unique Id.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
teamMemberIdprotected final java.lang.String teamMemberId 
 - 
linkedApiAppsprotected final java.util.List<ApiApp> linkedApiApps 
 
- 
 - 
Constructor Detail- 
MemberLinkedAppspublic MemberLinkedApps(java.lang.String teamMemberId, java.util.List<ApiApp> linkedApiApps)Information on linked applications of a team member.- Parameters:
- teamMemberId- The member unique Id. Must not be- null.
- linkedApiApps- List of third party applications linked by this team member. Must not contain a- nullitem and not be- null.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getTeamMemberIdpublic java.lang.String getTeamMemberId() The member unique Id.- Returns:
- value for this field, never null.
 
 - 
getLinkedApiAppspublic java.util.List<ApiApp> getLinkedApiApps() List of third party applications linked by this team member.- 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
 
 
- 
 
-