psn-api
Version:
A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.
15 lines (13 loc) • 459 B
text/typescript
import { TrophyTitle } from "./trophy-title.model";
export interface UserTrophiesBySpecificTitleResponse {
/** Individual object for each title returned */
titles: {
/** npTitleId of the title */
npTitleId: string;
/**
* Trophy set associated with the title
* This will only be returned if the queried account has played the title (and allowed their trophies to sync) at least once
*/
trophyTitles: TrophyTitle[];
}[];
}