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
#![doc(alias = "channel.moderator")]
//! A user's moderator privileges on a specified channel are changed.
use super::{EventSubscription, EventType};
use crate::types;
use serde_derive::{Deserialize, Serialize};

pub mod add;
pub mod remove;

#[doc(inline)]
pub use add::{ChannelModeratorAddV1, ChannelModeratorAddV1Payload};
#[doc(inline)]
pub use remove::{ChannelModeratorRemoveV1, ChannelModeratorRemoveV1Payload};