twitch_highway 0.0.5

Twitch Api reqest Http
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

/// https://dev.twitch.tv/docs/api/guide/#pagination
/// - after — Use to get the next page of results
/// - before — Use to get the previous page of results
/// - first — Use to specify the number of items to include per page
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Pagination {
    pub cursor: String,
}