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
17
18
//! Subscription types regarding users

use super::{EventSubscription, EventType};
use crate::types;
use serde_derive::{Deserialize, Serialize};

pub mod authorization;
pub mod update;
pub mod whisper;

#[doc(inline)]
pub use authorization::{UserAuthorizationGrantV1, UserAuthorizationGrantV1Payload};
#[doc(inline)]
pub use authorization::{UserAuthorizationRevokeV1, UserAuthorizationRevokeV1Payload};
#[doc(inline)]
pub use update::{UserUpdateV1, UserUpdateV1Payload};
#[doc(inline)]
pub use whisper::{UserWhisperMessageV1, UserWhisperMessageV1Payload};