pub struct CreateInvoiceShippingCostShippingRateDataFixedAmount {
pub amount: i64,
pub currency: Currency,
pub currency_options: Option<HashMap<Currency, CreateInvoiceShippingCostShippingRateDataFixedAmountCurrencyOptions>>,
}
Expand description
Describes a fixed amount to charge for shipping. Must be present if type is fixed_amount
.
Fields§
§amount: i64
A non-negative integer in cents representing how much to charge.
currency: Currency
Three-letter ISO currency code, in lowercase. Must be a supported currency.
currency_options: Option<HashMap<Currency, CreateInvoiceShippingCostShippingRateDataFixedAmountCurrencyOptions>>
Shipping rates defined in each available currency option. Each key must be a three-letter ISO currency code and a supported currency.
Implementations§
Trait Implementations§
Source§impl Clone for CreateInvoiceShippingCostShippingRateDataFixedAmount
impl Clone for CreateInvoiceShippingCostShippingRateDataFixedAmount
Source§fn clone(&self) -> CreateInvoiceShippingCostShippingRateDataFixedAmount
fn clone(&self) -> CreateInvoiceShippingCostShippingRateDataFixedAmount
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for CreateInvoiceShippingCostShippingRateDataFixedAmount
impl RefUnwindSafe for CreateInvoiceShippingCostShippingRateDataFixedAmount
impl Send for CreateInvoiceShippingCostShippingRateDataFixedAmount
impl Sync for CreateInvoiceShippingCostShippingRateDataFixedAmount
impl Unpin for CreateInvoiceShippingCostShippingRateDataFixedAmount
impl UnwindSafe for CreateInvoiceShippingCostShippingRateDataFixedAmount
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more