Struct stripe::PromotionCode[][src]

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,
}

The resource representing a Stripe "PromotionCode".

For more details see https://stripe.com/docs/api/promotion_codes/object.

Fields

id: PromotionCodeId

Unique identifier for the object.

active: bool

Whether the promotion code is currently active.

A promotion code is only active if the coupon is also valid.

code: String

The customer-facing code.

Regardless of case, this code must be unique across all active promotion codes for each customer.

coupon: Couponcreated: Timestamp

Time 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: bool

Has 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: Metadata

Set 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: i64

Number of times this promotion code has been used.

Implementations

impl PromotionCode[src]

pub fn list(
    client: &Client,
    params: ListPromotionCodes<'_>
) -> Response<List<PromotionCode>>
[src]

Returns a list of your promotion codes.

pub fn retrieve(
    client: &Client,
    id: &PromotionCodeId,
    expand: &[&str]
) -> Response<PromotionCode>
[src]

Retrieves the promotion code with the given ID.

pub fn update(
    client: &Client,
    id: &PromotionCodeId,
    params: UpdatePromotionCode<'_>
) -> Response<PromotionCode>
[src]

Updates the specified promotion code by setting the values of the parameters passed.

Most fields are, by design, not editable.

Trait Implementations

impl Clone for PromotionCode[src]

impl Debug for PromotionCode[src]

impl<'de> Deserialize<'de> for PromotionCode[src]

impl Object for PromotionCode[src]

type Id = PromotionCodeId

The canonical id type for this object.

impl Serialize for PromotionCode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]