Dropbox .NET SDK
Show / Hide Table of Contents

Class UpdateTemplateArg

The update template arg object

Inheritance
object
UpdateTemplateArg
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.FileProperties
Assembly: Dropbox.Api.dll
Syntax
public class UpdateTemplateArg

Constructors

View Source

UpdateTemplateArg(string, string, string, IEnumerable<PropertyFieldTemplate>)

Initializes a new instance of the UpdateTemplateArg class.

Declaration
public UpdateTemplateArg(string templateId, string name = null, string description = null, IEnumerable<PropertyFieldTemplate> addFields = null)
Parameters
Type Name Description
string templateId

An identifier for template added by See TemplatesAddForUserAsync(AddTemplateArg) or TemplatesAddForTeamAsync(AddTemplateArg).

string name

A display name for the template. template names can be up to 256 bytes.

string description

Description for the new template. Template descriptions can be up to 1024 bytes.

IEnumerable<PropertyFieldTemplate> addFields

Property field templates to be added to the group template. There can be up to 32 properties in a single template.

Properties

View Source

AddFields

Property field templates to be added to the group template. There can be up to 32 properties in a single template.

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

Description

Description for the new template. Template descriptions can be up to 1024 bytes.

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

Name

A display name for the template. template names can be up to 256 bytes.

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

TemplateId

An identifier for template added by See TemplatesAddForUserAsync(AddTemplateArg) or TemplatesAddForTeamAsync(AddTemplateArg).

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