#[non_exhaustive]pub struct ChannelPointsCustomRewardRedemptionAddV1 {
pub broadcaster_user_id: UserId,
pub reward_id: Option<RewardId>,
}
Available on crate feature
eventsub
only.Expand description
channel.channel_points_custom_reward_redemption.add
: a viewer has redeemed a custom channel points reward on the specified channel.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.broadcaster_user_id: UserId
The broadcaster user ID for the channel you want to receive channel points custom reward redemption add notifications for.
reward_id: Option<RewardId>
Optional. Specify a reward id to only receive notifications for a specific reward.
Implementations§
Source§impl ChannelPointsCustomRewardRedemptionAddV1
impl ChannelPointsCustomRewardRedemptionAddV1
Sourcepub fn builder() -> ChannelPointsCustomRewardRedemptionAddV1Builder<((), ())>
pub fn builder() -> ChannelPointsCustomRewardRedemptionAddV1Builder<((), ())>
Create a builder for building ChannelPointsCustomRewardRedemptionAddV1
.
On the builder, call .broadcaster_user_id(...)
, .reward_id(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of ChannelPointsCustomRewardRedemptionAddV1
.
Source§impl ChannelPointsCustomRewardRedemptionAddV1
impl ChannelPointsCustomRewardRedemptionAddV1
Sourcepub fn broadcaster_user_id(broadcaster_user_id: impl Into<UserId>) -> Self
pub fn broadcaster_user_id(broadcaster_user_id: impl Into<UserId>) -> Self
The broadcaster user ID for the channel you want to receive channel points custom reward redemption add notifications for.
Trait Implementations§
Source§impl Clone for ChannelPointsCustomRewardRedemptionAddV1
impl Clone for ChannelPointsCustomRewardRedemptionAddV1
Source§fn clone(&self) -> ChannelPointsCustomRewardRedemptionAddV1
fn clone(&self) -> ChannelPointsCustomRewardRedemptionAddV1
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for ChannelPointsCustomRewardRedemptionAddV1
impl<'de> Deserialize<'de> for ChannelPointsCustomRewardRedemptionAddV1
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl EventSubscription for ChannelPointsCustomRewardRedemptionAddV1
impl EventSubscription for ChannelPointsCustomRewardRedemptionAddV1
Source§const EVENT_TYPE: EventType = EventType::ChannelPointsCustomRewardRedemptionAdd
const EVENT_TYPE: EventType = EventType::ChannelPointsCustomRewardRedemptionAdd
Subscription type name.
Source§const SCOPE: Validator = _
const SCOPE: Validator = _
Available on crate feature
twitch_oauth2
only.Scopes needed by this subscription
Source§type Payload = ChannelPointsCustomRewardRedemptionAddV1Payload
type Payload = ChannelPointsCustomRewardRedemptionAddV1Payload
Payload for given subscription
Source§impl PartialEq for ChannelPointsCustomRewardRedemptionAddV1
impl PartialEq for ChannelPointsCustomRewardRedemptionAddV1
Source§fn eq(&self, other: &ChannelPointsCustomRewardRedemptionAddV1) -> bool
fn eq(&self, other: &ChannelPointsCustomRewardRedemptionAddV1) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for ChannelPointsCustomRewardRedemptionAddV1
impl StructuralPartialEq for ChannelPointsCustomRewardRedemptionAddV1
Auto Trait Implementations§
impl Freeze for ChannelPointsCustomRewardRedemptionAddV1
impl RefUnwindSafe for ChannelPointsCustomRewardRedemptionAddV1
impl Send for ChannelPointsCustomRewardRedemptionAddV1
impl Sync for ChannelPointsCustomRewardRedemptionAddV1
impl Unpin for ChannelPointsCustomRewardRedemptionAddV1
impl UnwindSafe for ChannelPointsCustomRewardRedemptionAddV1
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)