Table of Contents

Class TypingGatewayData

Namespace
Fluxer.Net.Gateway
Assembly
Fluxer.Net.dll
public class TypingGatewayData
Inheritance
object
TypingGatewayData

Properties

ChannelId

[JsonProperty("channel_id")]
public ulong ChannelId { get; set; }

Property Value

ulong

GuildId

[JsonProperty("guild_id")]
public ulong? GuildId { get; set; }

Property Value

ulong?

Member

Guild member data for the typing user (only present in guild channels).

[JsonProperty("member")]
public GuildMemberGatewayData? Member { get; set; }

Property Value

GuildMemberGatewayData

Timestamp

Unix timestamp in milliseconds when the user started typing.

[JsonProperty("timestamp")]
public long Timestamp { get; set; }

Property Value

long

TimestampUtc

The Timestamp value converted to a UTC DateTime.

[JsonIgnore]
public DateTimeOffset TimestampUtc { get; }

Property Value

DateTimeOffset

UserId

[JsonProperty("user_id")]
public ulong UserId { get; set; }

Property Value

ulong