Class LegalHoldsPolicyCreateArg
The legal holds policy create arg object
Inheritance
System.Object
LegalHoldsPolicyCreateArg
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class LegalHoldsPolicyCreateArg
Constructors
| Improve this Doc View SourceLegalHoldsPolicyCreateArg(String, IEnumerable<String>, String, Nullable<DateTime>, Nullable<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 |
---|---|---|
System.String | name | Policy name. |
System.Collections.Generic.IEnumerable<System.String> | members | List of team member IDs added to the hold. |
System.String | description | A description of the legal hold policy. |
System.Nullable<System.DateTime> | startDate | start date of the legal hold policy. |
System.Nullable<System.DateTime> | endDate | end date of the legal hold policy. |
Properties
| Improve this Doc View SourceDescription
A description of the legal hold policy.
Declaration
public string Description { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
EndDate
end date of the legal hold policy.
Declaration
public DateTime? EndDate { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Members
List of team member IDs added to the hold.
Declaration
public IList<string> Members { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> |
Name
Policy name.
Declaration
public string Name { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
StartDate
start date of the legal hold policy.
Declaration
public DateTime? StartDate { get; protected set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |