public class ListMembersDevicesResult extends Object
| Modifier and Type | Field and Description |
|---|---|
protected String |
cursor |
protected List<MemberDevices> |
devices |
protected boolean |
hasMore |
| Constructor and Description |
|---|
ListMembersDevicesResult(List<MemberDevices> devices,
boolean hasMore)
None
|
ListMembersDevicesResult(List<MemberDevices> devices,
boolean hasMore,
String cursor) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
String |
getCursor()
Pass the cursor into
DbxTeamTeamRequests.devicesListMembersDevices(com.dropbox.core.v2.team.ListMembersDevicesArg) to receive the next sub
list of team's devices. |
List<MemberDevices> |
getDevices()
The devices of each member of the team
|
boolean |
getHasMore()
If true, then there are more devices available.
|
int |
hashCode() |
String |
toString() |
String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
protected final List<MemberDevices> devices
protected final boolean hasMore
protected final String cursor
public ListMembersDevicesResult(List<MemberDevices> devices, boolean hasMore, String cursor)
devices - The devices of each member of the team. Must not contain
a null item and not be null.hasMore - If true, then there are more devices available. Pass the
cursor to DbxTeamTeamRequests.devicesListMembersDevices(com.dropbox.core.v2.team.ListMembersDevicesArg) to
retrieve the rest.cursor - Pass the cursor into DbxTeamTeamRequests.devicesListMembersDevices(com.dropbox.core.v2.team.ListMembersDevicesArg) to receive the next
sub list of team's devices.IllegalArgumentException - If any argument does not meet its
preconditions.public ListMembersDevicesResult(List<MemberDevices> devices, boolean hasMore)
The default values for unset fields will be used.
devices - The devices of each member of the team. Must not contain
a null item and not be null.hasMore - If true, then there are more devices available. Pass the
cursor to DbxTeamTeamRequests.devicesListMembersDevices(com.dropbox.core.v2.team.ListMembersDevicesArg) to
retrieve the rest.IllegalArgumentException - If any argument does not meet its
preconditions.public List<MemberDevices> getDevices()
null.public boolean getHasMore()
DbxTeamTeamRequests.devicesListMembersDevices(com.dropbox.core.v2.team.ListMembersDevicesArg) to retrieve the rest.public String getCursor()
DbxTeamTeamRequests.devicesListMembersDevices(com.dropbox.core.v2.team.ListMembersDevicesArg) to receive the next sub
list of team's devices.null if not present.public String toStringMultiline()
The returned String may contain newlines.