pub struct UpdateInvoiceShippingCostShippingRateDataFixedAmount {
pub amount: i64,
pub currency: Currency,
pub currency_options: Option<HashMap<Currency, UpdateInvoiceShippingCostShippingRateDataFixedAmountCurrencyOptions>>,
}
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, UpdateInvoiceShippingCostShippingRateDataFixedAmountCurrencyOptions>>
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 UpdateInvoiceShippingCostShippingRateDataFixedAmount
impl Clone for UpdateInvoiceShippingCostShippingRateDataFixedAmount
Source§fn clone(&self) -> UpdateInvoiceShippingCostShippingRateDataFixedAmount
fn clone(&self) -> UpdateInvoiceShippingCostShippingRateDataFixedAmount
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 UpdateInvoiceShippingCostShippingRateDataFixedAmount
impl RefUnwindSafe for UpdateInvoiceShippingCostShippingRateDataFixedAmount
impl Send for UpdateInvoiceShippingCostShippingRateDataFixedAmount
impl Sync for UpdateInvoiceShippingCostShippingRateDataFixedAmount
impl Unpin for UpdateInvoiceShippingCostShippingRateDataFixedAmount
impl UnwindSafe for UpdateInvoiceShippingCostShippingRateDataFixedAmount
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