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

SetName(String)

Declaration

Void SetName(String name)

Examples

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

Parameters

Type Name Description
String name The short name of the quick reply.

Returns

Type Description
Void

SetQuickReplyId(Integer)

Declaration

Void SetQuickReplyId(Integer quickReplyId)

Examples

NSQuickReply thing;
Integer quickReplyId;
thing.SetQuickReplyId(quickReplyId);

Parameters

Type Name Description
Integer quickReplyId Primary key.

Returns

Type Description
Void