Package com.dropbox.core.v2.teamlog
Class SharedLinkSettingsRemoveExpirationDetails
- java.lang.Object
-
- com.dropbox.core.v2.teamlog.SharedLinkSettingsRemoveExpirationDetails
-
public class SharedLinkSettingsRemoveExpirationDetails extends java.lang.Object
Removed the expiration date from the shared link.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SharedLinkSettingsRemoveExpirationDetails.Builder
Builder forSharedLinkSettingsRemoveExpirationDetails
.
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Date
previousValue
protected AccessLevel
sharedContentAccessLevel
protected java.lang.String
sharedContentLink
-
Constructor Summary
Constructors Constructor Description SharedLinkSettingsRemoveExpirationDetails(AccessLevel sharedContentAccessLevel)
Removed the expiration date from the shared link.SharedLinkSettingsRemoveExpirationDetails(AccessLevel sharedContentAccessLevel, java.lang.String sharedContentLink, java.util.Date previousValue)
Removed the expiration date from 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
getPreviousValue()
Previous shared link expiration date.AccessLevel
getSharedContentAccessLevel()
Shared content access level.java.lang.String
getSharedContentLink()
Shared content link.int
hashCode()
static SharedLinkSettingsRemoveExpirationDetails.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
-
previousValue
protected final java.util.Date previousValue
-
-
Constructor Detail
-
SharedLinkSettingsRemoveExpirationDetails
public SharedLinkSettingsRemoveExpirationDetails(AccessLevel sharedContentAccessLevel, java.lang.String sharedContentLink, java.util.Date previousValue)
Removed the expiration date from 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.previousValue
- Previous shared link expiration date. Might be missing due to historical data gap.- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
SharedLinkSettingsRemoveExpirationDetails
public SharedLinkSettingsRemoveExpirationDetails(AccessLevel sharedContentAccessLevel)
Removed the expiration date from 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.
-
getPreviousValue
public java.util.Date getPreviousValue()
Previous shared link expiration date. Might be missing due to historical data gap.- Returns:
- value for this field, or
null
if not present.
-
newBuilder
public static SharedLinkSettingsRemoveExpirationDetails.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
-
-