Type Alias ReportActor

ReportActor: {
    __typename?: "ReportActor";
    gameID?: Maybe<Scalars["Float"]>;
    icon?: Maybe<Scalars["String"]>;
    id?: Maybe<Scalars["Int"]>;
    name?: Maybe<Scalars["String"]>;
    petOwner?: Maybe<Scalars["Int"]>;
    server?: Maybe<Scalars["String"]>;
    subType?: Maybe<Scalars["String"]>;
    type?: Maybe<Scalars["String"]>;
}

The ReportActor represents a single player, pet or NPC that occurs in the report.

Type declaration

  • Optional__typename?: "ReportActor"
  • OptionalgameID?: Maybe<Scalars["Float"]>

    The game ID of the actor.

  • Optionalicon?: Maybe<Scalars["String"]>

    An icon to use for the actor. For pets and NPCs, this will be the icon the site chose to represent that actor.

  • Optionalid?: Maybe<Scalars["Int"]>

    The report ID of the actor. This ID is used in events to identify sources and targets.

  • Optionalname?: Maybe<Scalars["String"]>

    The name of the actor.

  • OptionalpetOwner?: Maybe<Scalars["Int"]>

    The report ID of the actor's owner if the actor is a pet.

  • Optionalserver?: Maybe<Scalars["String"]>

    The normalized server name of the actor.

  • OptionalsubType?: Maybe<Scalars["String"]>

    The sub-type of the actor, for players it's their class, and for NPCs, they are further subdivided into normal NPCs and bosses.

  • Optionaltype?: Maybe<Scalars["String"]>

    The type of the actor, i.e., if it is a player, pet or NPC.