Class TypingGatewayData
public class TypingGatewayData
- Inheritance
-
objectTypingGatewayData
Properties
ChannelId
[JsonProperty("channel_id")]
public ulong ChannelId { get; set; }
Property Value
GuildId
[JsonProperty("guild_id")]
public ulong? GuildId { get; set; }
Property Value
Member
Guild member data for the typing user (only present in guild channels).
[JsonProperty("member")]
public GuildMemberGatewayData? Member { get; set; }
Property Value
Timestamp
Unix timestamp in milliseconds when the user started typing.
[JsonProperty("timestamp")]
public long Timestamp { get; set; }
Property Value
TimestampUtc
[JsonIgnore]
public DateTimeOffset TimestampUtc { get; }
Property Value
UserId
[JsonProperty("user_id")]
public ulong UserId { get; set; }