pub struct Coupon {
Show 16 fields pub id: CouponId, pub amount_off: Option<i64>, pub applies_to: Option<CouponAppliesTo>, pub created: Option<Timestamp>, pub currency: Option<Currency>, pub deleted: bool, pub duration: Option<CouponDuration>, pub duration_in_months: Option<i64>, pub livemode: Option<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: Option<bool>,
}
Expand description

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.

applies_to: Option<CouponAppliesTo>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: Option<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: Option<bool>

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

Implementations

Returns a list of your coupons.

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.

Retrieves the coupon with the given ID.

Updates the metadata of a coupon.

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

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

The canonical id type for this object.

The id of the object.

The object’s type, typically represented in wire format as the object property.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more