Interface EditCurrentMemberOptions

interface EditCurrentMemberOptions {
    avatar?: null | string | Buffer;
    banner?: null | string | Buffer;
    bio?: null | string;
    nick?: null | string;
    reason?: string;
}

Hierarchy

Properties

avatar?: null | string | Buffer

The new avatar (buffer, or full data url). null to reset.

banner?: null | string | Buffer

The new banner (buffer, or full data url). null to reset.

bio?: null | string

The new bio. null to reset.

nick?: null | string

The new nickname of the member. null to reset.

reason?: string

The reason for editing the member.