Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
public class ChatMessage
public ChatMessage()
public virtual string Author { get; set; }
public virtual int ChatMessageId { get; set; }
public virtual int ChatSessionId { get; set; }
public virtual string Message { get; set; }
public virtual short ReadByCustomer { get; set; }
public virtual string SpecialParam { get; set; }
[JsonIgnore] public ChatMessageSpecialType? SpecialType { get; set; }
[JsonProperty("SpecialType")] public string SpecialType_String { get; set; }
[JsonIgnore] public ChatMessageType? Type { get; set; }
[JsonProperty("Type")] public string Type_String { get; set; }
public virtual DateTime WhenPosted { get; set; }
Was this page helpful?