Dropbox .NET SDK
Show / Hide Table of Contents

Class LegalHoldsPolicyUpdateArg

The legal holds policy update arg object

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

Constructors

View Source

LegalHoldsPolicyUpdateArg(string, string, string, IEnumerable<string>)

Initializes a new instance of the LegalHoldsPolicyUpdateArg class.

Declaration
public LegalHoldsPolicyUpdateArg(string id, string name = null, string description = null, IEnumerable<string> members = null)
Parameters
Type Name Description
string id

The legal hold Id.

string name

Policy new name.

string description

Policy new description.

IEnumerable<string> members

List of team member IDs to apply the policy on.

Properties

View Source

Description

Policy new description.

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

Id

The legal hold Id.

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

Members

List of team member IDs to apply the policy on.

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

Name

Policy new name.

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