> ## 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.ChatTopicAgent

# <a id="SuperOffice_WebApi_Data_ChatTopicAgent" /> Class ChatTopicAgent

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

Carrier object for ChatTopicAgent.
User agents within a chat topic. Which users are assigned and what roles they have within the chat topic.

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

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[ChatTopicAgent](SuperOffice.WebApi.Data.ChatTopicAgent.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_ChatTopicAgent__ctor" /> ChatTopicAgent()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_ChatTopicAgent_CanListen" /> CanListen

True of a user can listen in on this topic

```csharp theme={null}
public virtual bool CanListen { get; set; }
```

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_ChatTopicAgent_CanManage" /> CanManage

True if the user is a manager for this topic

```csharp theme={null}
public virtual bool CanManage { get; set; }
```

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_ChatTopicAgent_CanNotify" /> CanNotify

True if the user should receive notifications for this topic

```csharp theme={null}
public virtual bool CanNotify { get; set; }
```

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_ChatTopicAgent_CanRespond" /> CanRespond

True if the user can respond to chats in this topic

```csharp theme={null}
public virtual bool CanRespond { get; set; }
```

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_ChatTopicAgent_TopicId" /> TopicId

The reference to the associated chat topic.

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_ChatTopicAgent_User" /> User

The associate that is the user agent.

```csharp theme={null}
public virtual Associate User { get; set; }
```

#### Property Value

[Associate](SuperOffice.WebApi.Data.Associate.md)

## See Also

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


## Related topics

- [SuperOffice.WebApi.Agents.ChatAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ChatAgent.md)
- [SuperOffice.WebApi.Data.Chat AddChatTopicUserAgentRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Chat_AddChatTopicUserAgentRequest.md)
- [SuperOffice.WebApi.Data.Chat UpdateChatTopicUserAgentRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Chat_UpdateChatTopicUserAgentRequest.md)
- [SuperOffice.WebApi.Data.Chat UpdateChatTopicUserAgentsRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Chat_UpdateChatTopicUserAgentsRequest.md)
- [SuperOffice.WebApi.Agents.IChatAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IChatAgent.md)
- [SuperOffice.WebApi.Data.Chat DeleteChatTopicUserAgentRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Chat_DeleteChatTopicUserAgentRequest.md)
