Package com.dropbox.core.v2.teamlog
Class SharedContentCopyDetails
- java.lang.Object
-
- com.dropbox.core.v2.teamlog.SharedContentCopyDetails
-
public class SharedContentCopyDetails extends java.lang.Object
Copied shared file/folder to own Dropbox.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
destinationPath
protected AccessLevel
sharedContentAccessLevel
protected java.lang.String
sharedContentLink
protected UserLogInfo
sharedContentOwner
-
Constructor Summary
Constructors Constructor Description SharedContentCopyDetails(java.lang.String sharedContentLink, AccessLevel sharedContentAccessLevel, java.lang.String destinationPath)
Copied shared file/folder to own Dropbox.SharedContentCopyDetails(java.lang.String sharedContentLink, AccessLevel sharedContentAccessLevel, java.lang.String destinationPath, UserLogInfo sharedContentOwner)
Copied shared file/folder to own Dropbox.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getDestinationPath()
The path where the member saved the content.AccessLevel
getSharedContentAccessLevel()
Shared content access level.java.lang.String
getSharedContentLink()
Shared content link.UserLogInfo
getSharedContentOwner()
The shared content owner.int
hashCode()
java.lang.String
toString()
java.lang.String
toStringMultiline()
Returns a String representation of this object formatted for easier readability.
-
-
-
Field Detail
-
sharedContentLink
protected final java.lang.String sharedContentLink
-
sharedContentOwner
protected final UserLogInfo sharedContentOwner
-
sharedContentAccessLevel
protected final AccessLevel sharedContentAccessLevel
-
destinationPath
protected final java.lang.String destinationPath
-
-
Constructor Detail
-
SharedContentCopyDetails
public SharedContentCopyDetails(java.lang.String sharedContentLink, AccessLevel sharedContentAccessLevel, java.lang.String destinationPath, UserLogInfo sharedContentOwner)
Copied shared file/folder to own Dropbox.- Parameters:
sharedContentLink
- Shared content link. Must not benull
.sharedContentAccessLevel
- Shared content access level. Must not benull
.destinationPath
- The path where the member saved the content. Must not benull
.sharedContentOwner
- The shared content owner.- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
SharedContentCopyDetails
public SharedContentCopyDetails(java.lang.String sharedContentLink, AccessLevel sharedContentAccessLevel, java.lang.String destinationPath)
Copied shared file/folder to own Dropbox.The default values for unset fields will be used.
- Parameters:
sharedContentLink
- Shared content link. Must not benull
.sharedContentAccessLevel
- Shared content access level. Must not benull
.destinationPath
- The path where the member saved the content. Must not benull
.- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
-
Method Detail
-
getSharedContentLink
public java.lang.String getSharedContentLink()
Shared content link.- Returns:
- value for this field, never
null
.
-
getSharedContentAccessLevel
public AccessLevel getSharedContentAccessLevel()
Shared content access level.- Returns:
- value for this field, never
null
.
-
getDestinationPath
public java.lang.String getDestinationPath()
The path where the member saved the content.- Returns:
- value for this field, never
null
.
-
getSharedContentOwner
public UserLogInfo getSharedContentOwner()
The shared content owner.- Returns:
- value for this field, or
null
if not present.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.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
-
-