Dropbox .NET SDK
Show / Hide Table of Contents

Class LegalHoldsPolicyCreateArg

The legal holds policy create arg object

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

Constructors

View Source

LegalHoldsPolicyCreateArg(string, IEnumerable<string>, string, DateTime?, DateTime?)

Initializes a new instance of the LegalHoldsPolicyCreateArg class.

Declaration
public LegalHoldsPolicyCreateArg(string name, IEnumerable<string> members, string description = null, DateTime? startDate = null, DateTime? endDate = null)
Parameters
Type Name Description
string name

Policy name.

IEnumerable<string> members

List of team member IDs added to the hold.

string description

A description of the legal hold policy.

DateTime? startDate

start date of the legal hold policy.

DateTime? endDate

end date of the legal hold policy.

Properties

View Source

Description

A description of the legal hold policy.

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

EndDate

end date of the legal hold policy.

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

Members

List of team member IDs added to the hold.

Declaration
public IList<string> Members { get; protected set; }
Property Value
Type Description
IList<string>
View Source

Name

Policy name.

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

StartDate

start date of the legal hold policy.

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