Show / Hide Table of Contents

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 Source

LegalHoldsPolicyCreateArg(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 Source

Description

A description of the legal hold policy.

Declaration
public string Description { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

EndDate

end date of the legal hold policy.

Declaration
public DateTime? EndDate { get; protected set; }
Property Value
Type Description
System.Nullable<System.DateTime>
| Improve this Doc View Source

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>
| Improve this Doc View Source

Name

Policy name.

Declaration
public string Name { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

StartDate

start date of the legal hold policy.

Declaration
public DateTime? StartDate { get; protected set; }
Property Value
Type Description
System.Nullable<System.DateTime>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • LegalHoldsPolicyCreateArg(String, IEnumerable<String>, String, Nullable<DateTime>, Nullable<DateTime>)
  • Properties
    • Description
    • EndDate
    • Members
    • Name
    • StartDate
Back to top Generated by DocFX