Class NSReplyTemplate

Constructors

NSReplyTemplate()

Initializes a new instance of the NSReplyTemplate class.

Declaration

NSReplyTemplate

Methods

GetDescription()

Declaration

String GetDescription()

Examples

NSReplyTemplate thing;
String description = thing.GetDescription();

Returns

Type Description
String The description for this reply template.

GetFolderId()

Declaration

Integer GetFolderId()

Examples

NSReplyTemplate thing;
Integer folderId = thing.GetFolderId();

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.

GetName()

Declaration

String GetName()

Examples

NSReplyTemplate thing;
String name = thing.GetName();

Returns

Type Description
String The name for this reply template.

GetReplyTemplateId()

Declaration

Integer GetReplyTemplateId()

Examples

NSReplyTemplate thing;
Integer replyTemplateId = thing.GetReplyTemplateId();

Returns

Type Description
Integer The primary key (auto-incremented).

SetDescription(String)

Declaration

Void SetDescription(String description)

Examples

NSReplyTemplate thing;
String description;
thing.SetDescription(description);

Parameters

Type Name Description
String description The description for this reply template.

Returns

Type Description
Void

SetFolderId(Integer)

Declaration

Void SetFolderId(Integer folderId)

Examples

NSReplyTemplate thing;
Integer folderId;
thing.SetFolderId(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

Type Description
Void

SetName(String)

Declaration

Void SetName(String name)

Examples

NSReplyTemplate thing;
String name;
thing.SetName(name);

Parameters

Type Name Description
String name The name for this reply template.

Returns

Type Description
Void

SetReplyTemplateId(Integer)

Declaration

Void SetReplyTemplateId(Integer replyTemplateId)

Examples

NSReplyTemplate thing;
Integer replyTemplateId;
thing.SetReplyTemplateId(replyTemplateId);

Parameters

Type Name Description
Integer replyTemplateId The primary key (auto-incremented).

Returns

Type Description
Void