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