Package com.dropbox.core.v2.teamlog
Class SharedLinkSettingsAddExpirationDetails
- java.lang.Object
-
- com.dropbox.core.v2.teamlog.SharedLinkSettingsAddExpirationDetails
-
public class SharedLinkSettingsAddExpirationDetails extends java.lang.Object
Added an expiration date to the shared link.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SharedLinkSettingsAddExpirationDetails.Builder
Builder forSharedLinkSettingsAddExpirationDetails
.
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Date
newValue
protected AccessLevel
sharedContentAccessLevel
protected java.lang.String
sharedContentLink
-
Constructor Summary
Constructors Constructor Description SharedLinkSettingsAddExpirationDetails(AccessLevel sharedContentAccessLevel)
Added an expiration date to the shared link.SharedLinkSettingsAddExpirationDetails(AccessLevel sharedContentAccessLevel, java.lang.String sharedContentLink, java.util.Date newValue)
Added an expiration date to the shared link.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.util.Date
getNewValue()
New shared content link expiration date.AccessLevel
getSharedContentAccessLevel()
Shared content access level.java.lang.String
getSharedContentLink()
Shared content link.int
hashCode()
static SharedLinkSettingsAddExpirationDetails.Builder
newBuilder(AccessLevel sharedContentAccessLevel)
Returns a new builder for creating an instance of this class.java.lang.String
toString()
java.lang.String
toStringMultiline()
Returns a String representation of this object formatted for easier readability.
-
-
-
Field Detail
-
sharedContentAccessLevel
protected final AccessLevel sharedContentAccessLevel
-
sharedContentLink
protected final java.lang.String sharedContentLink
-
newValue
protected final java.util.Date newValue
-
-
Constructor Detail
-
SharedLinkSettingsAddExpirationDetails
public SharedLinkSettingsAddExpirationDetails(AccessLevel sharedContentAccessLevel, java.lang.String sharedContentLink, java.util.Date newValue)
Added an expiration date to the shared link.Use
newBuilder(com.dropbox.core.v2.sharing.AccessLevel)
to create instances of this class without specifying values for all optional fields.- Parameters:
sharedContentAccessLevel
- Shared content access level. Must not benull
.sharedContentLink
- Shared content link.newValue
- New shared content link expiration date. Might be missing due to historical data gap.- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
SharedLinkSettingsAddExpirationDetails
public SharedLinkSettingsAddExpirationDetails(AccessLevel sharedContentAccessLevel)
Added an expiration date to the shared link.The default values for unset fields will be used.
- Parameters:
sharedContentAccessLevel
- Shared content access level. Must not benull
.- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
-
Method Detail
-
getSharedContentAccessLevel
public AccessLevel getSharedContentAccessLevel()
Shared content access level.- Returns:
- value for this field, never
null
.
-
getSharedContentLink
public java.lang.String getSharedContentLink()
Shared content link.- Returns:
- value for this field, or
null
if not present.
-
getNewValue
public java.util.Date getNewValue()
New shared content link expiration date. Might be missing due to historical data gap.- Returns:
- value for this field, or
null
if not present.
-
newBuilder
public static SharedLinkSettingsAddExpirationDetails.Builder newBuilder(AccessLevel sharedContentAccessLevel)
Returns a new builder for creating an instance of this class.- Parameters:
sharedContentAccessLevel
- Shared content access level. Must not benull
.- Returns:
- builder for this class.
- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
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
-
-