interface GuildMemberEditOptions {
    channel?: null | GuildVoiceChannelResolvable;
    communicationDisabledUntil?: null | DateResolvable;
    deaf?: boolean;
    flags?: GuildMemberFlagsResolvable;
    mute?: boolean;
    nick?: null | string;
    reason?: string;
    roles?: ReadonlyCollection<string, Role> | readonly RoleResolvable[];
}

Properties

communicationDisabledUntil?: null | DateResolvable
deaf?: boolean
mute?: boolean
nick?: null | string
reason?: string
roles?: ReadonlyCollection<string, Role> | readonly RoleResolvable[]