[][src]Struct stripe::Discount

pub struct Discount {
    pub coupon: Option<Coupon>,
    pub customer: Option<Expandable<Customer>>,
    pub deleted: bool,
    pub end: Option<Timestamp>,
    pub start: Option<Timestamp>,
    pub subscription: Option<String>,
}

The resource representing a Stripe "Discount".

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

Fields

coupon: Option<Coupon>customer: Option<Expandable<Customer>>deleted: boolend: Option<Timestamp>

If the coupon has a duration of repeating, the date that this discount will end.

If the coupon has a duration of once or forever, this attribute will be null.

start: Option<Timestamp>

Date that the coupon was applied.

subscription: Option<String>

The subscription that this coupon is applied to, if it is applied to a particular subscription.

Trait Implementations

impl Clone for Discount[src]

impl Debug for Discount[src]

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

impl Object for Discount[src]

type Id = ()

The canonical id type for this object.

impl Serialize for Discount[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, 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.