Class UpdateTemplateArg
The update template arg object
Inheritance
Inherited Members
Namespace: Dropbox.Api.FileProperties
Assembly: Dropbox.Api.dll
Syntax
public class UpdateTemplateArg
Constructors
| Improve this Doc View SourceUpdateTemplateArg(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 SourceAddFields
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> |
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 |
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 |
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 |