riot-api 0.1.2

A rust crate to interact with Riot Games Developer API
Documentation
1
2
3
4
5
6
7
8
use serde::Serialize;

#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct TournamentRegistrationParamsV5 {
    pub provider_id: i32,
    pub name: Option<String>,
}