forked from mirror/Riven
1
0
Fork 0

Regen for new `champion-mastery-v4.ChampionMasteryDto.puuid` field

emerald
Mingwei Samuel 2023-05-15 09:15:23 -07:00
parent 4b3afbd8ab
commit ad08632089
3 changed files with 6 additions and 3 deletions

View File

@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version f6d4267816b00afc365920f4f5926fd725eb8674
// Version bee23b178b4c4f077a377d7b60fd9861e31ed63c
//! 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 f6d4267816b00afc365920f4f5926fd725eb8674
// Version bee23b178b4c4f077a377d7b60fd9861e31ed63c
//! Metadata about the Riot API and Riven.
//!

View File

@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
// Version f6d4267816b00afc365920f4f5926fd725eb8674
// Version bee23b178b4c4f077a377d7b60fd9861e31ed63c
#![allow(missing_docs)]
@ -94,6 +94,9 @@ pub mod champion_mastery_v4 {
/// The token earned for this champion at the current championLevel. When the championLevel is advanced the tokensEarned resets to 0.
#[serde(rename = "tokensEarned")]
pub tokens_earned: i32,
#[serde(rename = "puuid")]
#[serde(skip_serializing_if = "Option::is_none")]
pub puuid: Option<String>,
}
}