[][src]Struct stripe::CreateOrder

pub struct CreateOrder<'a> {
    pub coupon: Option<CouponId>,
    pub currency: Currency,
    pub customer: Option<CustomerId>,
    pub email: Option<&'a str>,
    pub expand: &'a [&'a str],
    pub items: Option<Vec<OrderItemParams>>,
    pub metadata: Option<Metadata>,
    pub shipping: Option<ShippingParams>,
}

The parameters for Order::create.

Fields

coupon: Option<CouponId>

A coupon code that represents a discount to be applied to this order.

Must be one-time duration and in same currency as the order.

currency: Currency

Three-letter ISO currency code, in lowercase.

Must be a supported currency.

customer: Option<CustomerId>

The ID of an existing customer to use for this order.

If provided, the customer email and shipping address will be used to create the order. Subsequently, the customer will also be charged to pay the order. If email or shipping are also provided, they will override the values retrieved from the customer object.

email: Option<&'a str>

The email address of the customer placing the order.

expand: &'a [&'a str]

Specifies which fields in the response should be expanded.

items: Option<Vec<OrderItemParams>>

List of items constituting the order.

An order can have up to 25 items.

metadata: Option<Metadata>

A set of key-value pairs that you can attach to an order object.

Limited to 500 characters. Metadata can be useful for storing additional information about the order in a structured format.

shipping: Option<ShippingParams>

Shipping address for the order.

Required if any of the SKUs are for products that have shippable set to true.

Methods

impl<'a> CreateOrder<'a>[src]

pub fn new(currency: Currency) -> Self[src]

Trait Implementations

impl<'a> Clone for CreateOrder<'a>[src]

impl<'a> Debug for CreateOrder<'a>[src]

impl<'a> Serialize for CreateOrder<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for CreateOrder<'a>

impl<'a> Sync for CreateOrder<'a>

impl<'a> Send for CreateOrder<'a>

impl<'a> UnwindSafe for CreateOrder<'a>

impl<'a> RefUnwindSafe for CreateOrder<'a>

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