Nymph.js 1.0.0-beta.113
    Preparing search index...

    Type Alias GroupData

    type GroupData = {
        abilities?: string[];
        avatar?: string;
        defaultPrimary?: boolean;
        defaultSecondary?: boolean;
        email?: string;
        enabled?: boolean;
        groupname?: string;
        name?: string;
        parent?: Group & GroupData;
        phone?: string;
        unverifiedSecondary?: boolean;
        user?: User & UserData | null;
    }
    Index

    Properties

    abilities?: string[]

    The abilities granted to the group.

    avatar?: string

    The group's avatar URL. (Use getAvatar() to support Gravatar.)

    defaultPrimary?: boolean

    Whether this group is the default primary group for new users.

    defaultSecondary?: boolean

    Whether this group is a default secondary group for new users.

    email?: string

    The group's email address.

    enabled?: boolean

    Whether the group can be used.

    groupname?: string

    The group's groupname.

    name?: string

    The group's name.

    parent?: Group & GroupData

    The group's parent.

    phone?: string

    The group's telephone number.

    unverifiedSecondary?: boolean

    Whether this group is a default secondary group for unverified users.

    user?: User & UserData | null

    If generatePrimary is on, this will be the user who generated this group.