Interface IPartialInvite
public interface IPartialInvite
Properties
Channel
The channel this invite is for.
IPartialChannel? Channel { get; }
Property Value
Code
The unique invite code.
string Code { get; }
Property Value
ExpiresAt
ISO8601 timestamp of when the invite expires.
DateTimeOffset? ExpiresAt { get; }
Property Value
Guild
The guild this invite is for
IPartialGuild? Guild { get; }
Property Value
Inviter
The user who created the invite.
IUser Inviter { get; }
Property Value
IsTemporary
Whether the invite grants temporary membership
bool IsTemporary { get; }
Property Value
MemberCount
The approximate total member count of the guild
int MemberCount { get; }
Property Value
PresenceCount
The approximate online member count of the guild.
int PresenceCount { get; }
Property Value
Type
The type of invite (guild).
InviteType Type { get; }