Class ChatSummaryItem
Chat session summary: id, title, created date
Carrier object for ChatSummaryItem. Services for the ChatSummaryItem Carrier is available from the Chat Agent.Inherited Members
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.2.0.0")]
public class ChatSummaryItem
Constructors
ChatSummaryItem()
Default constructor
Declaration
public ChatSummaryItem()
See Also
Properties
ChatSessionId
The primary key (auto-incremented)
Declaration
[DataMember]
public virtual int ChatSessionId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
CompanyName
The name of the customers company, if provided
Declaration
[DataMember]
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
[DataMember]
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
[DataMember]
public virtual string LastMessage { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Name
The name of customer, if provided
Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
WhenEnded
When the session was ended.
Declaration
[DataMember]
public virtual DateTime WhenEnded { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
WhenRequested
When the session was requested by the customer.
Declaration
[DataMember]
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. |
Overrides
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. |