mirror of
https://github.com/MingweiSamuel/Riven.git
synced 2025-01-27 03:07:27 -08:00
Regen for new endOfGameResult
fields
This commit is contained in:
parent
4c9952b385
commit
e4af32288d
3 changed files with 12 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
|
|
||||||
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
||||||
// Version d4f02b20da80dd2c869da349ba774ef6eddc22fa
|
// Version 48735a0c9d1c521d94a20ff0b0b9dc927ab430ca
|
||||||
|
|
||||||
//! Automatically generated endpoint handles.
|
//! Automatically generated endpoint handles.
|
||||||
#![allow(clippy::let_and_return, clippy::too_many_arguments)]
|
#![allow(clippy::let_and_return, clippy::too_many_arguments)]
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
|
|
||||||
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
||||||
// Version d4f02b20da80dd2c869da349ba774ef6eddc22fa
|
// Version 48735a0c9d1c521d94a20ff0b0b9dc927ab430ca
|
||||||
|
|
||||||
//! Metadata about the Riot API and Riven.
|
//! Metadata about the Riot API and Riven.
|
||||||
//!
|
//!
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
///////////////////////////////////////////////
|
///////////////////////////////////////////////
|
||||||
|
|
||||||
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
// http://www.mingweisamuel.com/riotapi-schema/tool/
|
||||||
// Version d4f02b20da80dd2c869da349ba774ef6eddc22fa
|
// Version 48735a0c9d1c521d94a20ff0b0b9dc927ab430ca
|
||||||
|
|
||||||
#![allow(missing_docs)]
|
#![allow(missing_docs)]
|
||||||
|
|
||||||
|
@ -1020,6 +1020,9 @@ pub mod match_v5 {
|
||||||
#[serde(rename = "tournamentCode")]
|
#[serde(rename = "tournamentCode")]
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub tournament_code: Option<String>,
|
pub tournament_code: Option<String>,
|
||||||
|
#[serde(rename = "endOfGameResult")]
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub end_of_game_result: Option<String>,
|
||||||
}
|
}
|
||||||
/// Participant data object.
|
/// Participant data object.
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
|
@ -2253,6 +2256,9 @@ pub mod match_v5 {
|
||||||
#[serde(rename = "participants")]
|
#[serde(rename = "participants")]
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
pub participants: Option<std::vec::Vec<MatchTimelineInfoParticipant>>,
|
pub participants: Option<std::vec::Vec<MatchTimelineInfoParticipant>>,
|
||||||
|
#[serde(rename = "endOfGameResult")]
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub end_of_game_result: Option<String>,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2743,6 +2749,9 @@ pub mod tft_match_v1 {
|
||||||
/// Teamfight Tactics set number.
|
/// Teamfight Tactics set number.
|
||||||
#[serde(rename = "tft_set_number")]
|
#[serde(rename = "tft_set_number")]
|
||||||
pub tft_set_number: i32,
|
pub tft_set_number: i32,
|
||||||
|
#[serde(rename = "endOfGameResult")]
|
||||||
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
|
pub end_of_game_result: Option<String>,
|
||||||
}
|
}
|
||||||
/// Participant data object.
|
/// Participant data object.
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
|
|
Loading…
Reference in a new issue