Struct stripe::ShippingMethod [−][src]
pub struct ShippingMethod {
pub amount: i64,
pub currency: Currency,
pub delivery_estimate: Option<Box<DeliveryEstimate>>,
pub description: String,
pub id: String,
}
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.
delivery_estimate: Option<Box<DeliveryEstimate>>
The estimated delivery date for the given shipping method.
Can be either a specific date or a range.
description: String
An arbitrary string attached to the object.
Often useful for displaying to users.
id: String
Unique identifier for the object.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for ShippingMethod
impl Send for ShippingMethod
impl Sync for ShippingMethod
impl Unpin for ShippingMethod
impl UnwindSafe for ShippingMethod
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
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
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