Struct stripe::PromotionCode
source · [−]pub struct PromotionCode {
pub id: PromotionCodeId,
pub active: bool,
pub code: String,
pub coupon: Coupon,
pub created: Timestamp,
pub customer: Option<Expandable<Customer>>,
pub expires_at: Option<Timestamp>,
pub livemode: bool,
pub max_redemptions: Option<i64>,
pub metadata: Metadata,
pub restrictions: PromotionCodesResourceRestrictions,
pub times_redeemed: i64,
}Expand description
The resource representing a Stripe “PromotionCode”.
For more details see https://stripe.com/docs/api/promotion_codes/object
Fields
id: PromotionCodeIdUnique identifier for the object.
active: boolWhether the promotion code is currently active.
A promotion code is only active if the coupon is also valid.
code: StringThe customer-facing code.
Regardless of case, this code must be unique across all active promotion codes for each customer.
coupon: Couponcreated: TimestampTime at which the object was created.
Measured in seconds since the Unix epoch.
customer: Option<Expandable<Customer>>The customer that this promotion code can be used by.
expires_at: Option<Timestamp>Date at which the promotion code can no longer be redeemed.
livemode: boolHas the value true if the object exists in live mode or the value false if the object exists in test mode.
max_redemptions: Option<i64>Maximum number of times this promotion code can be redeemed.
metadata: MetadataSet of key-value pairs that you can attach to an object.
This can be useful for storing additional information about the object in a structured format.
restrictions: PromotionCodesResourceRestrictionstimes_redeemed: i64Number of times this promotion code has been used.
Implementations
sourceimpl PromotionCode
impl PromotionCode
sourcepub fn list(
client: &Client,
params: &ListPromotionCodes<'_>
) -> Response<List<PromotionCode>>
pub fn list(
client: &Client,
params: &ListPromotionCodes<'_>
) -> Response<List<PromotionCode>>
Returns a list of your promotion codes.
sourcepub fn retrieve(
client: &Client,
id: &PromotionCodeId,
expand: &[&str]
) -> Response<PromotionCode>
pub fn retrieve(
client: &Client,
id: &PromotionCodeId,
expand: &[&str]
) -> Response<PromotionCode>
Retrieves the promotion code with the given ID.
In order to retrieve a promotion code by the customer-facing code use list with the desired code.
sourcepub fn update(
client: &Client,
id: &PromotionCodeId,
params: UpdatePromotionCode<'_>
) -> Response<PromotionCode>
pub fn update(
client: &Client,
id: &PromotionCodeId,
params: UpdatePromotionCode<'_>
) -> Response<PromotionCode>
Updates the specified promotion code by setting the values of the parameters passed.
Most fields are, by design, not editable.
Trait Implementations
sourceimpl Clone for PromotionCode
impl Clone for PromotionCode
sourcefn clone(&self) -> PromotionCode
fn clone(&self) -> PromotionCode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PromotionCode
impl Debug for PromotionCode
sourceimpl Default for PromotionCode
impl Default for PromotionCode
sourcefn default() -> PromotionCode
fn default() -> PromotionCode
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for PromotionCode
impl<'de> Deserialize<'de> for PromotionCode
sourcefn 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
sourceimpl Object for PromotionCode
impl Object for PromotionCode
sourceimpl Serialize for PromotionCode
impl Serialize for PromotionCode
Auto Trait Implementations
impl RefUnwindSafe for PromotionCode
impl Send for PromotionCode
impl Sync for PromotionCode
impl Unpin for PromotionCode
impl UnwindSafe for PromotionCode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more