psn-api
Version:
A well-tested library that lets you get trophy, user, and game data from the PlayStation Network.
22 lines (21 loc) • 489 B
TypeScript
export interface ProfileFromAccountIdResponse {
/**
* The account's online username.
*
* @example
* ```json
* "onlineId": "Hakoom"
* ```
*/
onlineId: string;
aboutMe: string;
avatars: Array<{
size: string;
url: string;
}>;
languages: string[];
/** Whether or not the account is a PlayStation Plus subscriber. */
isPlus: boolean;
isOfficiallyVerified: boolean;
isMe: boolean;
}