public class InviteeMembershipInfo extends MembershipInfo
| Modifier and Type | Class and Description |
|---|---|
static class |
InviteeMembershipInfo.Builder
Builder for
InviteeMembershipInfo. |
| Modifier and Type | Field and Description |
|---|---|
protected InviteeInfo |
invitee |
protected UserInfo |
user |
accessType, initials, isInherited, permissions| Constructor and Description |
|---|
InviteeMembershipInfo(AccessLevel accessType,
InviteeInfo invitee)
Information about an invited member of a shared content.
|
InviteeMembershipInfo(AccessLevel accessType,
InviteeInfo invitee,
List<MemberPermission> permissions,
String initials,
boolean isInherited,
UserInfo user)
Information about an invited member of a shared content.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
InviteeInfo |
getInvitee()
Recipient of the invitation.
|
UserInfo |
getUser()
The user this invitation is tied to, if available.
|
int |
hashCode() |
static InviteeMembershipInfo.Builder |
newBuilder(AccessLevel accessType,
InviteeInfo invitee)
Returns a new builder for creating an instance of this class.
|
String |
toString() |
String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
getAccessType, getInitials, getIsInherited, getPermissions, newBuilderprotected final InviteeInfo invitee
protected final UserInfo user
public InviteeMembershipInfo(AccessLevel accessType, InviteeInfo invitee, List<MemberPermission> permissions, String initials, boolean isInherited, UserInfo user)
Use newBuilder to create instances of this class without
specifying values for all optional fields.
accessType - The access type for this member. Must not be null.invitee - Recipient of the invitation. Must not be null.permissions - The permissions that requesting user has on this
member. The set of permissions corresponds to the MemberActions in
the request. Must not contain a null item.initials - Suggested name initials for a member.isInherited - True if the member has access from a parent folder.user - The user this invitation is tied to, if available.IllegalArgumentException - If any argument does not meet its
preconditions.public InviteeMembershipInfo(AccessLevel accessType, InviteeInfo invitee)
The default values for unset fields will be used.
accessType - The access type for this member. Must not be null.invitee - Recipient of the invitation. Must not be null.IllegalArgumentException - If any argument does not meet its
preconditions.public InviteeInfo getInvitee()
null.public UserInfo getUser()
null if not present.public static InviteeMembershipInfo.Builder newBuilder(AccessLevel accessType, InviteeInfo invitee)
accessType - The access type for this member. Must not be null.invitee - Recipient of the invitation. Must not be null.IllegalArgumentException - If any argument does not meet its
preconditions.public int hashCode()
hashCode in class MembershipInfopublic boolean equals(Object obj)
equals in class MembershipInfopublic String toString()
toString in class MembershipInfopublic String toStringMultiline()
The returned String may contain newlines.
toStringMultiline in class MembershipInfo