Class LegalHoldsPolicyCreateArg
The legal holds policy create arg object
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class LegalHoldsPolicyCreateArg
Constructors
View SourceLegalHoldsPolicyCreateArg(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 SourceDescription
A description of the legal hold policy.
Declaration
public string Description { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
EndDate
end date of the legal hold policy.
Declaration
public DateTime? EndDate { get; protected set; }
Property Value
| Type | Description |
|---|---|
| DateTime? |
Members
List of team member IDs added to the hold.
Declaration
public IList<string> Members { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |
Name
Policy name.
Declaration
public string Name { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
StartDate
start date of the legal hold policy.
Declaration
public DateTime? StartDate { get; protected set; }
Property Value
| Type | Description |
|---|---|
| DateTime? |