interface CombatantGroupData {
    _id: null | string;
    _stats: DocumentStats;
    flags: DocumentFlags;
    img?: string;
    initiative?: number;
    name?: string;
    ownership?: object;
    system?: object;
    type: string;
}

Properties

_id: null | string

The _id which uniquely identifies this CombatantGroup embedded document.

An object of creation and access information.

An object of optional key/value flags.

img?: string

A customized image which replaces the inferred group image.

initiative?: number

The initiative value that will be used for all group members.

name?: string

A customized name which replaces the inferred group name.

ownership?: object

An object which configures ownership of this group.

system?: object

Game system data which is defined by system data models.

type: string

The type of this CombatantGroup.