GuildFishingBossLogs: {
    count: number;
    fights: GuildFishingBossFight[];
    limit: number;
    offset?: number;
    total?: number;
}

Type declaration

  • count: number

    How many fights are in THIS page.

  • fights: GuildFishingBossFight[]
  • limit: number

    The limit actually applied after clamping, which may be lower than the one requested.

  • Optionaloffset?: number

    Echoed back so a pager can confirm which page it received. Absent on APIs predating paging.

  • Optionaltotal?: number

    Every resolved fight in the guild, for sizing a pager. NOT the length of fights.

    Absent on APIs that predate paging here - the endpoint shipped with limit/count only, which meant a boss tab could show the newest page and never look further back.