achievements-app/psn-api

View on GitHub
src/models/social-account-result.model.ts

Summary

Maintainability
A
0 mins
Test Coverage
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[];
    };
  };
}