Show / Hide Table of Contents

Class UpdateTemplateArg

The update template arg object

Inheritance
System.Object
UpdateTemplateArg
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 UpdateTemplateArg

Constructors

| Improve this Doc 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
System.String templateId

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

System.String name

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

System.String description

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

System.Collections.Generic.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

| Improve this Doc 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
System.Collections.Generic.IList<PropertyFieldTemplate>
| Improve this Doc 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
System.String
| Improve this Doc 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
System.String
| Improve this Doc 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
System.String
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • UpdateTemplateArg(String, String, String, IEnumerable<PropertyFieldTemplate>)
  • Properties
    • AddFields
    • Description
    • Name
    • TemplateId
Back to top Generated by DocFX