@jlenon7/zedjs
Version:
Riot API Library for NodeJS
24 lines (22 loc) • 476 B
text/typescript
import { PlayerPositionClashEnum, PlayerRoleClashEnum } from './enum/enum.clash'
/**
* Generic player dto
*/
export class ClashPlayerDTO {
/**
* Encrypted summoner id
*/
summonerId: string
/**
* Team id
*/
teamId?: string
/**
* Player position (Legal values: UNSELECTED, FILL, TOP, JUNGLE, MIDDLE, BOTTOM, UTILITY)
*/
position: PlayerPositionClashEnum
/**
* Player role (Legal values: CAPTAIN, MEMBER)
*/
role: PlayerRoleClashEnum
}