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