Interface NewMemberWelcomeAction

interface NewMemberWelcomeAction {
    actionType: NewMemberActionType;
    channelID: string;
    description: string;
    emoji?: PartialEmoji;
    icon?: string;
    title: string;
}

Properties

The action type.

channelID: string

The ID of the channel for this action.

description: string

The action description.

emoji?: PartialEmoji

The emoji for the action, if present.

icon?: string

The action icon, if present.

title: string

The action title.