Table of Contents

Struct MemberInfo

Namespace
Discord.Rest
Assembly
Discord.Net.Rest.dll

Represents information for a member.

public struct MemberInfo
Inherited Members

Properties

Deaf

Gets a value that indicates whether the updated member is deafened by the guild.

public readonly bool? Deaf { get; }

Property Value

bool?

true if the updated member is deafened (i.e. not permitted to listen to or speak to others) by the guild; otherwise false. null if this is not mentioned in this entry.

Mute

Gets a value that indicates whether the updated member is muted (i.e. not permitted to speak via voice) by the guild.

public readonly bool? Mute { get; }

Property Value

bool?

true if the updated member is muted by the guild; otherwise false. null if this is not mentioned in this entry.

Nickname

Gets the nickname of the updated member.

public readonly string Nickname { get; }

Property Value

string

A string representing the nickname of the updated member; null if none is set.

TimedOutUntil

Gets the date and time that indicates if and for how long the updated user has been timed out.

public readonly DateTimeOffset? TimedOutUntil { get; }

Property Value

DateTimeOffset?

A DateTimeOffset indicating how long the user will be timed out for.

Remarks

null or a timestamp in the past if the user is not timed out.