Show / Hide Table of Contents

Class PropertyGroupUpdate

The property group update object

Inheritance
System.Object
PropertyGroupUpdate
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.FileProperties
Assembly: Dropbox.Api.dll
Syntax
public class PropertyGroupUpdate

Constructors

| Improve this Doc View Source

PropertyGroupUpdate(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
System.String templateId

A unique identifier for a property template.

System.Collections.Generic.IEnumerable<PropertyField> addOrUpdateFields

Property fields to update. If the property field already exists, it is updated. If the property field doesn't exist, the property group is added.

System.Collections.Generic.IEnumerable<System.String> removeFields

Property fields to remove (by name), provided they exist.

Properties

| Improve this Doc View Source

AddOrUpdateFields

Property fields to update. If the property field already exists, it is updated. If the property field doesn't exist, the property group is added.

Declaration
public IList<PropertyField> AddOrUpdateFields { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<PropertyField>
| Improve this Doc View Source

RemoveFields

Property fields to remove (by name), provided they exist.

Declaration
public IList<string> RemoveFields { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>
| Improve this Doc View Source

TemplateId

A unique identifier for a property template.

Declaration
public string TemplateId { get; protected set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • PropertyGroupUpdate(String, IEnumerable<PropertyField>, IEnumerable<String>)
  • Properties
    • AddOrUpdateFields
    • RemoveFields
    • TemplateId
Back to top Generated by DocFX