twitch_api 0.7.2

Library for talking with the new Twitch API aka. "Helix", EventSub and more!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc(alias = "channel.goal")]
//! A broadcaster has started, progressed or ended a goal.
use super::{EventSubscription, EventType};
use crate::types;
use serde_derive::{Deserialize, Serialize};

pub mod begin;
pub mod end;
pub mod progress;

#[doc(inline)]
pub use begin::{ChannelGoalBeginV1, ChannelGoalBeginV1Payload};
#[doc(inline)]
pub use end::{ChannelGoalEndV1, ChannelGoalEndV1Payload};
#[doc(inline)]
pub use progress::{ChannelGoalProgressV1, ChannelGoalProgressV1Payload};