Class LegalHoldsPolicyUpdateArg
The legal holds policy update arg object
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class LegalHoldsPolicyUpdateArg
Constructors
View SourceLegalHoldsPolicyUpdateArg(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 SourceDescription
Policy new description.
Declaration
public string Description { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
Id
The legal hold Id.
Declaration
public string Id { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |
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> |
Name
Policy new name.
Declaration
public string Name { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |