diff --git a/src/endpoints.rs b/src/endpoints.rs index f1f420a..8c2ea9f 100644 --- a/src/endpoints.rs +++ b/src/endpoints.rs @@ -7,7 +7,7 @@ /////////////////////////////////////////////// // http://www.mingweisamuel.com/riotapi-schema/tool/ -// Version 71bb788ab92c0b03d5dd284402d9514b625fe2a4 +// Version 64f3c82d132f12808d8eb8f483d1d2182386c432 //! Automatically generated endpoint handles. @@ -261,6 +261,8 @@ pub struct ClashV1<'a> { } impl<'a> ClashV1<'a> { /// Get players by summoner ID. + /// ## Implementation Notes + /// This endpoint returns a list of active Clash players for a given summoner ID. If a summoner registers for multiple tournaments at the same time (e.g., Saturday and Sunday) then both registrations would appear in this list. /// # Parameters /// * `region` - Region to query. /// * `summonerId` diff --git a/src/models.rs b/src/models.rs index 1c7cf78..871f27d 100644 --- a/src/models.rs +++ b/src/models.rs @@ -7,7 +7,7 @@ /////////////////////////////////////////////// // http://www.mingweisamuel.com/riotapi-schema/tool/ -// Version 71bb788ab92c0b03d5dd284402d9514b625fe2a4 +// Version 64f3c82d132f12808d8eb8f483d1d2182386c432 //! Data transfer structs. //! @@ -466,7 +466,7 @@ pub mod match_v4 { pub struct ParticipantIdentity { #[serde(rename = "participantId")] pub participant_id: i32, - /// Player information. + /// Player information not included in the response for custom matches. Custom matches are considered private unless a tournament code was used to create the match. #[serde(rename = "player")] pub player: Player, }