Using with Sync-Method
- Using with sync-api-method
var rit = Api.NonStaticApi.ChampionMasteryv3
.GetChampionMasteriesBySummoner(ServicePlatform.TR1, 466244);
var rit = new ApiCall()
.SelectApi<List<ChampionMasteryDto>>(LolApiName.ChampionMastery)
.For(LolApiMethodName.ChampionMasteries)
.AddParameter(new ApiParameter(LolApiPath.BySummoner, (long)466244))
.Build(ServicePlatform.TR1)
.Get();
Updated over 7 years ago