Regen for `match-v5.ParticipantDto.totalAlly/EnemyJungleMinionsKilled` fields

pull/52/head
Mingwei Samuel 2023-04-23 10:13:48 -07:00
parent 975b954f3f
commit 94e0a0d1d3
3 changed files with 9 additions and 3 deletions

View File

@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version b7086969fec8ed652bd16834e2cf9f67c7583b1e
// Version d97f2bb9615cefe58ef8c1e9eca459cc51305d07
//! Automatically generated endpoint handles.
#![allow(clippy::let_and_return, clippy::too_many_arguments)]

View File

@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version b7086969fec8ed652bd16834e2cf9f67c7583b1e
// Version d97f2bb9615cefe58ef8c1e9eca459cc51305d07
//! Metadata about the Riot API and Riven.
//!

View File

@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version b7086969fec8ed652bd16834e2cf9f67c7583b1e
// Version d97f2bb9615cefe58ef8c1e9eca459cc51305d07
#![allow(missing_docs)]
@ -1290,6 +1290,12 @@ pub mod match_v5 {
#[serde(rename = "challenges")]
#[serde(skip_serializing_if = "Option::is_none")]
pub challenges: Option<ParticipantChallenges>,
#[serde(rename = "totalAllyJungleMinionsKilled")]
#[serde(skip_serializing_if = "Option::is_none")]
pub total_ally_jungle_minions_killed: Option<i32>,
#[serde(rename = "totalEnemyJungleMinionsKilled")]
#[serde(skip_serializing_if = "Option::is_none")]
pub total_enemy_jungle_minions_killed: Option<i32>,
}
/// Perks data object.
#[derive(Clone, Debug)]