psn-api
Version:
A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.
19 lines (18 loc) • 437 B
TypeScript
export interface SocialAccountResult {
id: string;
type: string;
score: number;
socialMetadata: {
accountId: string;
country: string;
language: string;
onlineId: string;
isPsPlus: boolean;
isOfficiallyVerified: boolean;
avatarUrl: string;
verifiedUserName: string;
highlights: {
onlineId: string[];
};
};
}