twisted
Version:
Fetching riot games api data
30 lines (29 loc) • 862 B
TypeScript
/**
* Summoner basic info
*/
export declare class SummonerV4DTO {
/**
* ID of the summoner icon associated with the summoner.
*/
readonly profileIconId: number;
/**
* Encrypted PUUID. Exact length of 78 characters.
*/
readonly puuid: string;
/**
* Summoner level associated with the summoner.
*/
readonly summonerLevel: number;
/**
* Date summoner was last modified specified as epoch milliseconds. The following events will update this timestamp: profile icon change, playing the tutorial or advanced tutorial, finishing a game, summoner name change
*/
readonly revisionDate: number;
/**
* Encrypted summoner ID. Max length 63 characters.
*/
readonly id: string;
/**
* Encrypted account ID. Max length 56 characters.
*/
readonly accountId: string;
}