Class ChatResponse
Wolf server's response for ChatMessage.
Implements
Namespace: TehGM.Wolfringo.Messages.Responses
Assembly: Wolfringo.Core.dll
Syntax
public class ChatResponse : WolfResponse, IWolfResponse
Constructors
| Improve this Doc View SourceChatResponse()
Creates a response instance.
Declaration
[JsonConstructor]
protected ChatResponse()
Properties
| Improve this Doc View SourceID
Unique ID of the message.
Declaration
[JsonProperty("uuid")]
public Guid ID { get; }
Property Value
Type | Description |
---|---|
System.Guid |
SlowModeRate
Slow mode rate.
Declaration
[JsonProperty("slowModeRateInSeconds")]
[JsonConverter(typeof(SecondsTimespanConverter))]
public TimeSpan SlowModeRate { get; }
Property Value
Type | Description |
---|---|
System.TimeSpan |
SpamFiltered
Was the message spam filtered?
Declaration
[JsonProperty("isSpam")]
public bool SpamFiltered { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Timestamp
Timestamp of the message.
Declaration
[JsonProperty("timestamp")]
public WolfTimestamp Timestamp { get; }
Property Value
Type | Description |
---|---|
WolfTimestamp |