Class GuildDeleteGatewayData
Gateway data for GUILD_DELETE event. Sent when a guild becomes unavailable during a guild outage, or when the user leaves or is removed from a guild.
public class GuildDeleteGatewayData
- Inheritance
-
objectGuildDeleteGatewayData
Properties
Id
ID of the guild that was deleted or became unavailable.
[JsonProperty("id")]
public ulong Id { get; set; }
Property Value
Unavailable
If true, the guild became unavailable due to an outage and may become available again later. If false or null, the user was removed from the guild (left, kicked, or banned).
[JsonProperty("unavailable")]
public bool? Unavailable { get; set; }
Property Value
- bool?