Dropbox .NET SDK

Class LegalHoldsActivateAHoldDetails

Activated a hold.

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

Constructors

View Source

LegalHoldsActivateAHoldDetails(string, string, DateTime, DateTime?)

Initializes a new instance of the LegalHoldsActivateAHoldDetails class.

Declaration
public LegalHoldsActivateAHoldDetails(string legalHoldId, string name, DateTime startDate, DateTime? endDate = null)
Parameters
Type Name Description
string legalHoldId

Hold ID.

string name

Hold name.

DateTime startDate

Hold start date.

DateTime? endDate

Hold end date.

Properties

View Source

EndDate

Hold end date.

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

LegalHoldId

Hold ID.

Declaration
public string LegalHoldId { get; protected set; }
Property Value
Type Description
string
View Source

Name

Hold name.

Declaration
public string Name { get; protected set; }
Property Value
Type Description
string
View Source

StartDate

Hold start date.

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