Struct stripe::CreateOrder
source · [−]pub struct CreateOrder<'a> {Show 14 fields
pub automatic_tax: Option<CreateOrderAutomaticTax>,
pub billing_details: Option<CreateOrderBillingDetails>,
pub currency: Currency,
pub customer: Option<CustomerId>,
pub description: Option<&'a str>,
pub discounts: Option<Vec<CreateOrderDiscounts>>,
pub expand: &'a [&'a str],
pub ip_address: Option<&'a str>,
pub line_items: Vec<CreateOrderLineItems>,
pub metadata: Option<Metadata>,
pub payment: Option<CreateOrderPayment>,
pub shipping_cost: Option<CreateOrderShippingCost>,
pub shipping_details: Option<CreateOrderShippingDetails>,
pub tax_details: Option<CreateOrderTaxDetails>,
}
Expand description
The parameters for Order::create
.
Fields
automatic_tax: Option<CreateOrderAutomaticTax>
Settings for automatic tax calculation for this order.
billing_details: Option<CreateOrderBillingDetails>
Billing details for the customer.
If a customer is provided, this will be automatically populated with values from that customer if override values are not provided.
currency: Currency
Three-letter ISO currency code, in lowercase.
Must be a supported currency.
customer: Option<CustomerId>
The customer associated with this order.
description: Option<&'a str>
An arbitrary string attached to the object.
Often useful for displaying to users.
discounts: Option<Vec<CreateOrderDiscounts>>
The coupons, promotion codes, and/or discounts to apply to the order.
expand: &'a [&'a str]
Specifies which fields in the response should be expanded.
ip_address: Option<&'a str>
The IP address of the purchaser for this order.
line_items: Vec<CreateOrderLineItems>
A list of line items the customer is ordering.
Each line item includes information about the product, the quantity, and the resulting cost.
metadata: Option<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.
Individual keys can be unset by posting an empty value to them.
All keys can be unset by posting an empty value to metadata
.
payment: Option<CreateOrderPayment>
Payment information associated with the order, including payment settings.
shipping_cost: Option<CreateOrderShippingCost>
Settings for the customer cost of shipping for this order.
shipping_details: Option<CreateOrderShippingDetails>
Shipping details for the order.
tax_details: Option<CreateOrderTaxDetails>
Additional tax details about the purchaser to be used for this order.
Implementations
sourceimpl<'a> CreateOrder<'a>
impl<'a> CreateOrder<'a>
pub fn new(currency: Currency, line_items: Vec<CreateOrderLineItems>) -> Self
Trait Implementations
sourceimpl<'a> Clone for CreateOrder<'a>
impl<'a> Clone for CreateOrder<'a>
sourcefn clone(&self) -> CreateOrder<'a>
fn clone(&self) -> CreateOrder<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for CreateOrder<'a>
impl<'a> Debug for CreateOrder<'a>
sourceimpl<'a> Serialize for CreateOrder<'a>
impl<'a> Serialize for CreateOrder<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for CreateOrder<'a>
impl<'a> Send for CreateOrder<'a>
impl<'a> Sync for CreateOrder<'a>
impl<'a> Unpin for CreateOrder<'a>
impl<'a> UnwindSafe for CreateOrder<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more