Dropbox .NET SDK

Class SharedLinkChangeExpiryDetails

Changed shared link expiration date.

Inheritance
object
SharedLinkChangeExpiryDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class SharedLinkChangeExpiryDetails

Constructors

View Source

SharedLinkChangeExpiryDetails(DateTime?, DateTime?, bool?)

Initializes a new instance of the SharedLinkChangeExpiryDetails class.

Declaration
public SharedLinkChangeExpiryDetails(DateTime? newValue = null, DateTime? previousValue = null, bool? isConsolidationAction = null)
Parameters
Type Name Description
DateTime? newValue

New shared link expiration date. Might be missing due to historical data gap.

DateTime? previousValue

Previous shared link expiration date. Might be missing due to historical data gap.

bool? isConsolidationAction

Indicates whether this was a consolidation action by system.

Properties

View Source

IsConsolidationAction

Indicates whether this was a consolidation action by system.

Declaration
public bool? IsConsolidationAction { get; protected set; }
Property Value
Type Description
bool?
View Source

NewValue

New shared link expiration date. Might be missing due to historical data gap.

Declaration
public DateTime? NewValue { get; protected set; }
Property Value
Type Description
DateTime?
View Source

PreviousValue

Previous shared link expiration date. Might be missing due to historical data gap.

Declaration
public DateTime? PreviousValue { get; protected set; }
Property Value
Type Description
DateTime?
  • View Source
In this article
Back to top Dropbox .NET SDK