Dropbox .NET SDK

Class ContentDeletionProtectionChangePolicyDetails

Changed content deletion protection policy for team.

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

Constructors

View Source

ContentDeletionProtectionChangePolicyDetails(ContentDeletionProtectionPolicy, ulong?, ContentDeletionProtectionPolicy, ulong?)

Initializes a new instance of the ContentDeletionProtectionChangePolicyDetails class.

Declaration
public ContentDeletionProtectionChangePolicyDetails(ContentDeletionProtectionPolicy newValue, ulong? newThresholdBytes = null, ContentDeletionProtectionPolicy previousValue = null, ulong? previousThresholdBytes = null)
Parameters
Type Name Description
ContentDeletionProtectionPolicy newValue

New content deletion protection policy.

ulong? newThresholdBytes

New threshold value in bytes (only present when new policy is on_above_threshold).

ContentDeletionProtectionPolicy previousValue

Previous content deletion protection policy. Might be missing due to historical data gap.

ulong? previousThresholdBytes

Previous threshold value in bytes (only present when previous policy was on_above_threshold).

Properties

View Source

NewThresholdBytes

New threshold value in bytes (only present when new policy is on_above_threshold).

Declaration
public ulong? NewThresholdBytes { get; protected set; }
Property Value
Type Description
ulong?
View Source

NewValue

New content deletion protection policy.

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

PreviousThresholdBytes

Previous threshold value in bytes (only present when previous policy was on_above_threshold).

Declaration
public ulong? PreviousThresholdBytes { get; protected set; }
Property Value
Type Description
ulong?
View Source

PreviousValue

Previous content deletion protection policy. Might be missing due to historical data gap.

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