Dropbox .NET SDK

Class SharedLinkChangeVisibilityDetails

Changed visibility of shared link.

Inheritance
object
SharedLinkChangeVisibilityDetails
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 SharedLinkChangeVisibilityDetails

Constructors

View Source

SharedLinkChangeVisibilityDetails(SharedLinkVisibility, SharedLinkVisibility, bool?)

Initializes a new instance of the SharedLinkChangeVisibilityDetails class.

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

New shared link visibility.

SharedLinkVisibility previousValue

Previous shared link visibility. 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 visibility.

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

PreviousValue

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

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