UNPKG

psn-api

Version:

A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.

19 lines (13 loc) 726 B
import type { TitleThinTrophy } from "./title-thin-trophy.model"; export interface TitleTrophiesResponse { /** The current version of the trophy set. Some trophy sets receive updates from the developer. */ trophySetVersion: string; /** `true` if this title has additional trophy groups. This is commonly used for DLC, but some games add additional trophies as separate groups post-release (such as Astro's Playroom and Horizon Zero Dawn). */ hasTrophyGroups: boolean; /** Individual object for each trophy. */ trophies: TitleThinTrophy[]; /** Total trophies in the group (or total trophies for the title if `"all"` specified) */ totalItemCount: number; nextOffset?: number; previousOffset?: number; }