> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.ChatSummaryItem

# <a id="SuperOffice_WebApi_Data_ChatSummaryItem" /> Class ChatSummaryItem

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for ChatSummaryItem.
Chat session summary: id, title, created date

```csharp theme={null}
public class ChatSummaryItem
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[ChatSummaryItem](SuperOffice.WebApi.Data.ChatSummaryItem.md)

#### Inherited Members

[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Constructors

### <a id="SuperOffice_WebApi_Data_ChatSummaryItem__ctor" /> ChatSummaryItem()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public ChatSummaryItem()
```

## Properties

### <a id="SuperOffice_WebApi_Data_ChatSummaryItem_ChatSessionId" /> ChatSessionId

The primary key (auto-incremented)

```csharp theme={null}
public virtual int ChatSessionId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ChatSummaryItem_CompanyName" /> CompanyName

The name of the customers company, if provided

```csharp theme={null}
public virtual string CompanyName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ChatSummaryItem_FirstMessage" /> FirstMessage

A copy of the first message in the chat session

```csharp theme={null}
public virtual string FirstMessage { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ChatSummaryItem_LastMessage" /> LastMessage

A copy of the last message in the chat session

```csharp theme={null}
public virtual string LastMessage { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ChatSummaryItem_Name" /> Name

The name of customer, if provided

```csharp theme={null}
public virtual string Name { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ChatSummaryItem_WhenEnded" /> WhenEnded

When the session was ended.

```csharp theme={null}
public virtual DateTime WhenEnded { get; set; }
```

#### Property Value

[DateTime](https://learn.microsoft.com/dotnet/api/system.datetime)

### <a id="SuperOffice_WebApi_Data_ChatSummaryItem_WhenRequested" /> WhenRequested

When the session was requested by the customer.

```csharp theme={null}
public virtual DateTime WhenRequested { get; set; }
```

#### Property Value

[DateTime](https://learn.microsoft.com/dotnet/api/system.datetime)

## See Also

[ChatAgent](SuperOffice.WebApi.Agents.ChatAgent.md)


## Related topics

- [SuperOffice.WebApi.Data.ContactSummary](/en/api/reference/webapi/SuperOffice.WebApi.Data.ContactSummary.md)
- [SuperOffice.WebApi.Data.PersonSummary](/en/api/reference/webapi/SuperOffice.WebApi.Data.PersonSummary.md)
- [SuperOffice.WebApi.Data.SaleSummaryItem](/en/api/reference/webapi/SuperOffice.WebApi.Data.SaleSummaryItem.md)
- [SuperOffice.WebApi.Data.TicketSummaryItem](/en/api/reference/webapi/SuperOffice.WebApi.Data.TicketSummaryItem.md)
- [SuperOffice.WebApi.Data.ActivitySummaryItem](/en/api/reference/webapi/SuperOffice.WebApi.Data.ActivitySummaryItem.md)
- [SuperOffice.WebApi.Data.SelectionSummaryItem](/en/api/reference/webapi/SuperOffice.WebApi.Data.SelectionSummaryItem.md)
