pub struct UpdateOrder<'a> {
Show 14 fields pub automatic_tax: Option<UpdateOrderAutomaticTax>, pub billing_details: Option<UpdateOrderBillingDetails>, pub currency: Option<Currency>, pub customer: Option<CustomerId>, pub description: Option<&'a str>, pub discounts: Option<Vec<UpdateOrderDiscounts>>, pub expand: &'a [&'a str], pub ip_address: Option<&'a str>, pub line_items: Option<Vec<UpdateOrderLineItems>>, pub metadata: Option<Metadata>, pub payment: Option<UpdateOrderPayment>, pub shipping_cost: Option<UpdateOrderShippingCost>, pub shipping_details: Option<UpdateOrderShippingDetails>, pub tax_details: Option<UpdateOrderTaxDetails>,
}
Expand description

The parameters for Order::update.

Fields

automatic_tax: Option<UpdateOrderAutomaticTax>

Settings for automatic tax calculation for this order.

billing_details: Option<UpdateOrderBillingDetails>

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: Option<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<UpdateOrderDiscounts>>

The coupons, promotion codes, and/or discounts to apply to the order.

Pass the empty string "" to unset this field.

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: Option<Vec<UpdateOrderLineItems>>

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

Payment information associated with the order, including payment settings.

shipping_cost: Option<UpdateOrderShippingCost>

Settings for the customer cost of shipping for this order.

shipping_details: Option<UpdateOrderShippingDetails>

Shipping details for the order.

tax_details: Option<UpdateOrderTaxDetails>

Additional tax details about the purchaser to be used for this order.

Implementations

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

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

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