Class PropertyGroupUpdate
Property routes
Inherited Members
Namespace: Dropbox.Api.FileProperties
Assembly: Dropbox.Api.dll
Syntax
public class PropertyGroupUpdate
Constructors
View SourcePropertyGroupUpdate(string, IEnumerable<PropertyField>, IEnumerable<string>)
Initializes a new instance of the PropertyGroupUpdate class.
Declaration
public PropertyGroupUpdate(string templateId, IEnumerable<PropertyField> addOrUpdateFields = null, IEnumerable<string> removeFields = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | templateId | A unique identifier for a property template. |
| IEnumerable<PropertyField> | addOrUpdateFields | Property fields to update. If the property field already exists, it is updated. If the property field doesn't exist, it will be created as long as the property group already exists. |
| IEnumerable<string> | removeFields | Property fields to remove (by name), provided they exist. |
Properties
View SourceAddOrUpdateFields
Property fields to update. If the property field already exists, it is updated. If the property field doesn't exist, it will be created as long as the property group already exists.
Declaration
public IList<PropertyField> AddOrUpdateFields { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<PropertyField> |
RemoveFields
Property fields to remove (by name), provided they exist.
Declaration
public IList<string> RemoveFields { get; protected set; }
Property Value
| Type | Description |
|---|---|
| IList<string> |
TemplateId
A unique identifier for a property template.
Declaration
public string TemplateId { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |