Class NSReplyTemplate
Syntax
Constructors
NSReplyTemplate()
Initializes a new instance of the NSReplyTemplate class.
Declaration
Methods
GetDescription()
Declaration
Returns
Type |
Description |
String |
The description for this reply template.
|
Examples
NSReplyTemplate thing;
String description = thing.GetDescription();
GetFolderId()
Declaration
Returns
Type |
Description |
Integer |
The ID of the folder in which this reply template is located. NULL or -1 if this is a top-level reply template.
|
Examples
NSReplyTemplate thing;
Integer folderId = thing.GetFolderId();
GetName()
Declaration
Returns
Type |
Description |
String |
The name for this reply template.
|
Examples
NSReplyTemplate thing;
String name = thing.GetName();
GetReplyTemplateId()
Declaration
Integer GetReplyTemplateId()
Returns
Type |
Description |
Integer |
The primary key (auto-incremented).
|
Examples
NSReplyTemplate thing;
Integer replyTemplateId = thing.GetReplyTemplateId();
SetDescription(String)
Declaration
Void SetDescription(String description)
Parameters
Type |
Name |
Description |
String |
description |
The description for this reply template.
|
Returns
Examples
NSReplyTemplate thing;
String description;
thing.SetDescription(description);
SetFolderId(Integer)
Declaration
Void SetFolderId(Integer folderId)
Parameters
Type |
Name |
Description |
Integer |
folderId |
The ID of the folder in which this reply template is located. NULL or -1 if this is a top-level reply template.
|
Returns
Examples
NSReplyTemplate thing;
Integer folderId;
thing.SetFolderId(folderId);
SetName(String)
Declaration
Void SetName(String name)
Parameters
Type |
Name |
Description |
String |
name |
The name for this reply template.
|
Returns
Examples
NSReplyTemplate thing;
String name;
thing.SetName(name);
SetReplyTemplateId(Integer)
Declaration
Void SetReplyTemplateId(Integer replyTemplateId)
Parameters
Type |
Name |
Description |
Integer |
replyTemplateId |
The primary key (auto-incremented).
|
Returns
Examples
NSReplyTemplate thing;
Integer replyTemplateId;
thing.SetReplyTemplateId(replyTemplateId);