export class MatchParticipantsIdentitiesPlayerDto {
  /**
   * Platform id
   */
  currentPlatformId: string
  /**
   * Summoner name
   */
  summonerName: string
  /**
   * Match history url
   */
  matchHistoryUri: string
  /**
   * Original platform id
   */
  platformId: string
  /**
   * Player's current accountId (Encrypted)
   */
  currentAccountId: string
  /**
   * Profile icon
   */
  profileIcon: number
  /**
   * Player's summonerId (Encrypted)
   */
  summonerId: string
  /**
   * Player's original accountId (Encrypted)
   */
  accountId: string
}
