public class ListFileRequestsV2Result
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
cursor |
protected java.util.List<FileRequest> |
fileRequests |
protected boolean |
hasMore |
Constructor and Description |
---|
ListFileRequestsV2Result(java.util.List<FileRequest> fileRequests,
java.lang.String cursor,
boolean hasMore)
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getCursor()
Pass the cursor into
DbxUserFileRequestsRequests.listContinue(String) to obtain additional
file requests. |
java.util.List<FileRequest> |
getFileRequests()
The file requests owned by this user.
|
boolean |
getHasMore()
Is true if there are additional file requests that have not been returned
yet.
|
int |
hashCode() |
java.lang.String |
toString() |
java.lang.String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
protected final java.util.List<FileRequest> fileRequests
protected final java.lang.String cursor
protected final boolean hasMore
public ListFileRequestsV2Result(java.util.List<FileRequest> fileRequests, java.lang.String cursor, boolean hasMore)
DbxUserFileRequestsRequests.listV2(long)
and DbxUserFileRequestsRequests.listContinue(String)
.fileRequests
- The file requests owned by this user. Apps with the
app folder permission will only see file requests in their app
folder. Must not contain a null
item and not be null
.cursor
- Pass the cursor into DbxUserFileRequestsRequests.listContinue(String)
to obtain
additional file requests. Must not be null
.hasMore
- Is true if there are additional file requests that have
not been returned yet. An additional call to :route:list/continue`
can retrieve them.java.lang.IllegalArgumentException
- If any argument does not meet its
preconditions.public java.util.List<FileRequest> getFileRequests()
null
.public java.lang.String getCursor()
DbxUserFileRequestsRequests.listContinue(String)
to obtain additional
file requests.null
.public boolean getHasMore()
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toStringMultiline()
The returned String may contain newlines.