Class ListSharedLinksResult


  • public class ListSharedLinksResult
    extends java.lang.Object
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.lang.String getCursor()
      Pass the cursor into DbxUserSharingRequests.listSharedLinks(com.dropbox.core.v2.sharing.ListSharedLinksArg) to obtain the additional links.
      boolean getHasMore()
      Is true if there are additional shared links that have not been returned yet.
      java.util.List<SharedLinkMetadata> getLinks()
      Shared links applicable to the path argument.
      int hashCode()  
      java.lang.String toString()  
      java.lang.String toStringMultiline()
      Returns a String representation of this object formatted for easier readability.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • hasMore

        protected final boolean hasMore
      • cursor

        @Nullable
        protected final java.lang.String cursor
    • Constructor Detail

      • ListSharedLinksResult

        public ListSharedLinksResult​(@Nonnull
                                     java.util.List<SharedLinkMetadata> links,
                                     boolean hasMore,
                                     @Nullable
                                     java.lang.String cursor)
        Parameters:
        links - Shared links applicable to the path argument. Must not contain a null item and not be null.
        hasMore - Is true if there are additional shared links that have not been returned yet. Pass the cursor into DbxUserSharingRequests.listSharedLinks(com.dropbox.core.v2.sharing.ListSharedLinksArg) to retrieve them.
        cursor - Pass the cursor into DbxUserSharingRequests.listSharedLinks(com.dropbox.core.v2.sharing.ListSharedLinksArg) to obtain the additional links. Cursor is returned only if no path is given.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
      • ListSharedLinksResult

        public ListSharedLinksResult​(@Nonnull
                                     java.util.List<SharedLinkMetadata> links,
                                     boolean hasMore)
        None

        The default values for unset fields will be used.

        Parameters:
        links - Shared links applicable to the path argument. Must not contain a null item and not be null.
        hasMore - Is true if there are additional shared links that have not been returned yet. Pass the cursor into DbxUserSharingRequests.listSharedLinks(com.dropbox.core.v2.sharing.ListSharedLinksArg) to retrieve them.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
    • Method Detail

      • getLinks

        @Nonnull
        public java.util.List<SharedLinkMetadata> getLinks()
        Shared links applicable to the path argument.
        Returns:
        value for this field, never null.
      • getHasMore

        public boolean getHasMore()
        Is true if there are additional shared links that have not been returned yet. Pass the cursor into DbxUserSharingRequests.listSharedLinks(com.dropbox.core.v2.sharing.ListSharedLinksArg) to retrieve them.
        Returns:
        value for this field.
      • getCursor

        @Nullable
        public java.lang.String getCursor()
        Pass the cursor into DbxUserSharingRequests.listSharedLinks(com.dropbox.core.v2.sharing.ListSharedLinksArg) to obtain the additional links. Cursor is returned only if no path is given.
        Returns:
        value for this field, or null if not present.
      • hashCode

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

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • toString

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

        public 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