#[non_exhaustive]pub struct UpdateRedemptionStatusBody {
pub status: CustomRewardRedemptionStatus,
}
Available on crate feature
helix
only.Expand description
Body Parameters for Update Redemption Status
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.status: CustomRewardRedemptionStatus
The new status to set redemptions to. Can be either FULFILLED or CANCELED. Updating to CANCELED will refund the user their points.
Implementations§
Source§impl UpdateRedemptionStatusBody
impl UpdateRedemptionStatusBody
Sourcepub const fn status(status: CustomRewardRedemptionStatus) -> Self
pub const fn status(status: CustomRewardRedemptionStatus) -> Self
The new status to set
Trait Implementations§
Source§impl Clone for UpdateRedemptionStatusBody
impl Clone for UpdateRedemptionStatusBody
Source§fn clone(&self) -> UpdateRedemptionStatusBody
fn clone(&self) -> UpdateRedemptionStatusBody
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 UpdateRedemptionStatusBody
impl Debug for UpdateRedemptionStatusBody
Source§impl<'de> Deserialize<'de> for UpdateRedemptionStatusBody
impl<'de> Deserialize<'de> for UpdateRedemptionStatusBody
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
impl Eq for UpdateRedemptionStatusBody
impl StructuralPartialEq for UpdateRedemptionStatusBody
Auto Trait Implementations§
impl Freeze for UpdateRedemptionStatusBody
impl RefUnwindSafe for UpdateRedemptionStatusBody
impl Send for UpdateRedemptionStatusBody
impl Sync for UpdateRedemptionStatusBody
impl Unpin for UpdateRedemptionStatusBody
impl UnwindSafe for UpdateRedemptionStatusBody
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