Class NSChatSession

Use the ChatSessionEntity on the Chat agent instead. Chat sessions belong to a chat topic, and contain messages to/from users. Carrier object for ChatSession.

Constructors

NSChatSession()

Initializes a new instance of the NSChatSession class.

Declaration

NSChatSession

Methods

GetChatSessionId()

Declaration

Integer GetChatSessionId()

Examples

NSChatSession thing;
Integer chatSessionId = thing.GetChatSessionId();

Returns

Type Description
Integer The primary key (auto-incremented).

SetChatSessionId(Integer)

Declaration

Void SetChatSessionId(Integer chatSessionId)

Examples

NSChatSession thing;
Integer chatSessionId;
thing.SetChatSessionId(chatSessionId);

Parameters

Type Name Description
Integer chatSessionId The primary key (auto-incremented).

Returns

Type Description
Void