Class ChatSummaryItem
Chat session summary: id, title, created date
Carrier object for ChatSummaryItem. Services for the ChatSummaryItem Carrier is available from the IChatAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class ChatSummaryItem : Object
Constructors
ChatSummaryItem()
Default constructor
Declaration
public ChatSummaryItem()
See Also
Properties
ChatSessionId
The primary key (auto-incremented)
Declaration
public virtual int ChatSessionId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
CompanyName
The name of the customers company, if provided
Declaration
public virtual string CompanyName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
FirstMessage
A copy of the first message in the chat session
Declaration
public virtual string FirstMessage { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
LastMessage
A copy of the last message in the chat session
Declaration
public virtual string LastMessage { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
Name
The name of customer, if provided
Declaration
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
WhenEnded
When the session was ended.
Declaration
public virtual DateTime WhenEnded { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
WhenRequested
When the session was requested by the customer.
Declaration
public virtual DateTime WhenRequested { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
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. |