interface Actor {
    gameId: number;
    id: number;
    idInReport: number;
    name: string;
    subType: string;
    type: ActorType;
}

Properties

gameId: number

The game id of the actor.

id: number

The id of the actor.

idInReport: number

The id of the actor within its containing report.

name: string

The name of the actor in the user's desired language.

subType: string

The subType of the actor. This will be the job (for FF) or class (for other games) of players. NPCs can be "Boss" or "NPC".

type: ActorType

The type of the actor. This will be Player, Pet or NPC.