[][src]Struct stripe::OrderItem

pub struct OrderItem {
    pub amount: i64,
    pub currency: Currency,
    pub description: String,
    pub parent: Option<Expandable<Sku>>,
    pub quantity: Option<u64>,
    pub type_: String,
}

The resource representing a Stripe "OrderItem".

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

Fields

amount: i64

A positive integer in the smallest currency unit (that is, 100 cents for $1.00, or 1 for ¥1, Japanese Yen being a zero-decimal currency) representing the total amount for the line item.

currency: Currency

Three-letter ISO currency code, in lowercase.

Must be a supported currency.

description: String

Description of the line item, meant to be displayable to the user (e.g., "Express shipping").

parent: Option<Expandable<Sku>>

The ID of the associated object for this line item.

Expandable if not null (e.g., expandable to a SKU).

quantity: Option<u64>

A positive integer representing the number of instances of parent that are included in this order item.

Applicable/present only if type is sku.

type_: String

The type of line item.

One of sku, tax, shipping, or discount.

Trait Implementations

impl Object for OrderItem[src]

type Id = ()

The canonical id type for this object.

impl Clone for OrderItem[src]

impl Debug for OrderItem[src]

impl Serialize for OrderItem[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

impl<T> Borrow<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