ReplyMessage Class
This structure contains details of the message that must be saved.
Inheritance Hierarchy
SystemObject
  Talisma.Server.CommonReplyMessage

Namespace:  Talisma.Server.Common
 

Syntax
C#
[SerializableAttribute]
public class ReplyMessage

The ReplyMessage type exposes the following members.

Fields
NameDescription
Public fieldAttachmentArray
This is an array of the InteractionAttachmentData [] structure that contains details about the attachments in the Interaction.
Public fieldfullMessageContents
The contents of all the messages associated with the Interaction. You must include original message content and outgoing message content in this parameter in order to reply to an Interaction message like Desktop Client.
Public fieldHTMLAttachmentContent
Contents of the attachment in HTML format.
Public fieldHtmlEditedContentForConsult
this will hold the newly edited content
Public fieldincludeOriginalMessageId
The ID of the original message to which you are replying.
Public fieldpartialMessageContents
The contents of the last saved message in the Interaction.
Public fieldpartialPlainTextContents
Message contents of only the last saved message in plain text format.
Public fieldplainTextAttachmentContent
Contents of the attachment in plain text format.
Public fieldplainTextFullMessageContents
Message contents of all the messages in the Interaction in plain text format.
Public fieldrushReply
If you have chosen to send the message as part of the save operation, this parameter enables you to specify whether the message must be rushed. If you choose to rush the message, the message will be dispatched prior to other messages that are waiting to be dispatched from CampusNexus CRM. It can have one of the following values:
  • True - Specify this value if you want to rush the message.
  • False - Specify this value if you do not want to rush the message.
Public fieldsubject
The subject of the message you want to save.

Note:To get the format of the subject similar to Desktop Client, you must write custom formatting code. For a sample code, see Sample code for BegnReply, BuildReply, and SaveReply.

Public fieldsubjectPrefix
The message type prefix that must be added to the subject of the message. For example, if you are saving a reply to a message, specify RE: as the prefix.
Public fieldtemporaryPath
Temporary path where the message must be saved.
Public fielduserMsgHTMLTextContent
The message of the User in HTML format.
Public fielduserMsgPlainTextContent
The message of the User in plain text format.
Top
See Also