twitch_api2 0.6.1

Library for talking with the new Twitch API aka. "Helix", TMI and more!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Helix endpoints regarding channel predictions

use crate::{
    helix::{self, Request},
    types,
};
use serde::{Deserialize, Serialize};

pub mod create_prediction;
pub mod end_prediction;
pub mod get_predictions;

#[doc(inline)]
pub use get_predictions::{GetPredictionsRequest, Prediction};