Interface UpdateGuildMemberFields

Fields that are not provided will be left unchanged.

interface UpdateGuildMemberFields {
    channelId?: null | string;
    communicationDisabledUntil?: null | number;
    deaf?: boolean;
    mute?: boolean;
    nick?: null | string;
    roles?: string[];
}

Properties

channelId?: null | string

Update the members voice channel, or set to null to kick them from their current vocie channel.

communicationDisabledUntil?: null | number

Updates the member's timeout duration, set to null to remove it.

deaf?: boolean
mute?: boolean
nick?: null | string

Update the members nickname, or set to null to reset it

roles?: string[]

Generated using TypeDoc