Class ChatTopicAgent
User agents within a chat topic. Which users are assigned and what roles they have within the chat topic.
Carrier object for ChatTopicAgent. Services for the ChatTopicAgent Carrier is available from the IChatAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class ChatTopicAgent : Object
Constructors
ChatTopicAgent()
Default constructor
Declaration
public ChatTopicAgent()
See Also
Properties
CanListen
True of a user can listen in on this topic
Declaration
public virtual bool CanListen { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
CanManage
True if the user is a manager for this topic
Declaration
public virtual bool CanManage { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
CanNotify
True if the user should receive notifications for this topic
Declaration
public virtual bool CanNotify { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
CanRespond
True if the user can respond to chats in this topic
Declaration
public virtual bool CanRespond { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
TopicId
The reference to the associated chat topic.
Declaration
public virtual int TopicId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
User
The associate that is the user agent.
Declaration
public virtual Associate User { get; set; }
Property Value
Type | Description |
---|---|
Associate |
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. |