#[non_exhaustive]pub struct Redemption {
pub channel_id: UserId,
pub id: RedemptionId,
pub redeemed_at: Timestamp,
pub reward: Reward,
pub status: RedemptionStatus,
pub user: User,
pub user_input: Option<String>,
pub cursor: Option<String>,
}
👎Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043Available on crate feature
pubsub
only.Expand description
A redemption users can “buy” with channel points to trigger rewards
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.channel_id: UserId
👎Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043ID of channel where the redemption was triggered
id: RedemptionId
👎Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043ID of the redemption. Also returned in twitch IRC
redeemed_at: Timestamp
👎Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043Timestamp in which a reward was redeemed
reward: Reward
👎Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043Data about the reward that was redeemed
status: RedemptionStatus
👎Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043reward redemption status, will be FULFILLED if a user skips the reward queue, UNFULFILLED otherwise. ACTION_TAKEN is for redemption-status-update
user: User
👎Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043User that triggered the reward
user_input: Option<String>
👎Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043A string that the user entered if the reward requires input
cursor: Option<String>
👎Deprecated since 0.7.0: use
EventSub
instead, see https://discuss.dev.twitch.com/t/legacy-pubsub-deprecation-and-shutdown-timeline/58043A cursor for something
Trait Implementations§
Source§impl Clone for Redemption
impl Clone for Redemption
Source§fn clone(&self) -> Redemption
fn clone(&self) -> Redemption
Returns a duplicate 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 Debug for Redemption
impl Debug for Redemption
Source§impl<'de> Deserialize<'de> for Redemption
impl<'de> Deserialize<'de> for Redemption
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 PartialEq for Redemption
impl PartialEq for Redemption
Source§impl Serialize for Redemption
impl Serialize for Redemption
impl Eq for Redemption
impl StructuralPartialEq for Redemption
Auto Trait Implementations§
impl Freeze for Redemption
impl RefUnwindSafe for Redemption
impl Send for Redemption
impl Sync for Redemption
impl Unpin for Redemption
impl UnwindSafe for Redemption
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