[][src]Struct stripe::Coupon

pub struct Coupon {
    pub id: CouponId,
    pub amount_off: Option<i64>,
    pub created: Option<Timestamp>,
    pub currency: Option<Currency>,
    pub deleted: bool,
    pub duration: Option<CouponDuration>,
    pub duration_in_months: Option<i64>,
    pub livemode: bool,
    pub max_redemptions: Option<i64>,
    pub metadata: Metadata,
    pub name: Option<String>,
    pub percent_off: Option<f64>,
    pub redeem_by: Option<Timestamp>,
    pub times_redeemed: Option<i64>,
    pub valid: bool,
}

The resource representing a Stripe "Coupon".

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

Fields

id: CouponId

Unique identifier for the object.

amount_off: Option<i64>

Amount (in the currency specified) that will be taken off the subtotal of any invoices for this customer.

created: Option<Timestamp>

Time at which the object was created.

Measured in seconds since the Unix epoch.

currency: Option<Currency>

If amount_off has been set, the three-letter ISO code for the currency of the amount to take off.

deleted: boolduration: Option<CouponDuration>

One of forever, once, and repeating.

Describes how long a customer who applies this coupon will get the discount.

duration_in_months: Option<i64>

If duration is repeating, the number of months the coupon applies.

Null if coupon duration is forever or once.

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 coupon can be redeemed, in total, across all customers, before it is no longer valid.

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.

name: Option<String>

Name of the coupon displayed to customers on for instance invoices or receipts.

percent_off: Option<f64>

Percent that will be taken off the subtotal of any invoices for this customer for the duration of the coupon.

For example, a coupon with percent_off of 50 will make a %s100 invoice %s50 instead.

redeem_by: Option<Timestamp>

Date after which the coupon can no longer be redeemed.

times_redeemed: Option<i64>

Number of times this coupon has been applied to a customer.

valid: bool

Taking account of the above properties, whether this coupon can still be applied to a customer.

Methods

impl Coupon[src]

pub fn list(client: &Client, params: ListCoupons) -> Response<List<Coupon>>[src]

Returns a list of your coupons.

pub fn create(client: &Client, params: CreateCoupon) -> Response<Coupon>[src]

You can create coupons easily via the coupon management page of the Stripe dashboard.

Coupon creation is also accessible via the API if you need to create coupons on the fly. A coupon has either a percent_off or an amount_off and currency. If you set an amount_off, that amount will be subtracted from any invoice’s subtotal. For example, an invoice with a subtotal of $100 will have a final total of $0 if a coupon with an amount_off of 20000 is applied to it and an invoice with a subtotal of $300 will have a final total of $100 if a coupon with an amount_off of 20000 is applied to it.

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

Retrieves the coupon with the given ID.

pub fn update(
    client: &Client,
    id: &CouponId,
    params: UpdateCoupon
) -> Response<Coupon>
[src]

Updates the metadata of a coupon.

Other coupon details (currency, duration, amount_off) are, by design, not editable.

pub fn delete(client: &Client, id: &CouponId) -> Response<Deleted<CouponId>>[src]

You can delete coupons via the coupon management page of the Stripe dashboard.

However, deleting a coupon does not affect any customers who have already applied the coupon; it means that new customers can’t redeem the coupon. You can also delete coupons via the API.

Trait Implementations

impl Object for Coupon[src]

type Id = CouponId

The canonical id type for this object.

impl Clone for Coupon[src]

impl Debug for Coupon[src]

impl Serialize for Coupon[src]

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

Auto Trait Implementations

impl Send for Coupon

impl Unpin for Coupon

impl Sync for Coupon

impl UnwindSafe for Coupon

impl RefUnwindSafe for Coupon

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<T> Same<T> for T

type Output = T

Should always be Self