Class TicketBatchReplyData
Data to add a batched ticket reply.
Carrier object for TicketBatchReplyData. Services for the TicketBatchReplyData Carrier is available from the ITicketAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class TicketBatchReplyData : Object
Constructors
TicketBatchReplyData()
Default constructor
Declaration
public TicketBatchReplyData()
See Also
Properties
AttachmentIds
The IDs of attachments to connect to the reply message.
Declaration
public virtual int[] AttachmentIds { get; set; }
Property Value
Type | Description |
---|---|
Int32[] |
See Also
CloseTickets
true to close the tickets after replying; otherwise, false.
Declaration
public virtual bool CloseTickets { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
HtmlBody
The html body for the message (if any).
Declaration
public virtual string HtmlBody { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
SendCopyToCustomer
true to email the reply message to customers; otherwise, false.
Declaration
public virtual bool SendCopyToCustomer { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
Slevel
The securitylevel of the message.
Declaration
public virtual TicketSecurityLevel Slevel { get; set; }
Property Value
Type | Description |
---|---|
TicketSecurityLevel |
See Also
TicketIds
IDs of tickets to reply to.
Declaration
public virtual int[] TicketIds { get; set; }
Property Value
Type | Description |
---|---|
Int32[] |
See Also
TimeSpent
The time spent (minutes) for this message.
Declaration
public virtual int TimeSpent { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
See Also
ToString(String)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
String | The carrier contents. |