Class NSQuickReply
Syntax
Constructors
NSQuickReply()
Initializes a new instance of the NSQuickReply class.
Declaration
Methods
GetHtmlBody()
Declaration
Returns
Type |
Description |
String |
The HTML body of the quick reply.
|
Examples
NSQuickReply thing;
String htmlBody = thing.GetHtmlBody();
GetName()
Declaration
Returns
Type |
Description |
String |
The short name of the quick reply.
|
Examples
NSQuickReply thing;
String name = thing.GetName();
GetQuickReplyId()
Declaration
Integer GetQuickReplyId()
Returns
Type |
Description |
Integer |
Primary key.
|
Examples
NSQuickReply thing;
Integer quickReplyId = thing.GetQuickReplyId();
SetHtmlBody(String)
Declaration
Void SetHtmlBody(String htmlBody)
Parameters
Type |
Name |
Description |
String |
htmlBody |
The HTML body of the quick reply.
|
Returns
Examples
NSQuickReply thing;
String htmlBody;
thing.SetHtmlBody(htmlBody);
SetName(String)
Declaration
Void SetName(String name)
Parameters
Type |
Name |
Description |
String |
name |
The short name of the quick reply.
|
Returns
Examples
NSQuickReply thing;
String name;
thing.SetName(name);
SetQuickReplyId(Integer)
Declaration
Void SetQuickReplyId(Integer quickReplyId)
Parameters
Type |
Name |
Description |
Integer |
quickReplyId |
Primary key.
|
Returns
Examples
NSQuickReply thing;
Integer quickReplyId;
thing.SetQuickReplyId(quickReplyId);