riot-api 0.1.2

A rust crate to interact with Riot Games Developer API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::Deserialize;

#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LobbyEventV5DtoWrapper {
    pub event_list: Vec<LobbyEventV5Dto>,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LobbyEventV5Dto {
    pub timestamp: String,
    pub event_type: String,
    pub puuid: Option<String>,
}