pub struct CreatePreviewInvoiceInvoiceItemsPriceData {
pub currency: Currency,
pub product: String,
pub tax_behavior: Option<CreatePreviewInvoiceInvoiceItemsPriceDataTaxBehavior>,
pub unit_amount: Option<i64>,
pub unit_amount_decimal: Option<String>,
}
Expand description
Data used to generate a new Price object inline.
One of price
or price_data
is required.
Fields§
§currency: Currency
Three-letter ISO currency code, in lowercase. Must be a supported currency.
product: String
§tax_behavior: Option<CreatePreviewInvoiceInvoiceItemsPriceDataTaxBehavior>
Only required if a default tax behavior was not provided in the Stripe Tax settings.
Specifies whether the price is considered inclusive of taxes or exclusive of taxes.
One of inclusive
, exclusive
, or unspecified
.
Once specified as either inclusive
or exclusive
, it cannot be changed.
unit_amount: Option<i64>
A positive integer in cents (or local equivalent) (or 0 for a free price) representing how much to charge.
unit_amount_decimal: Option<String>
Same as unit_amount
, but accepts a decimal value in cents (or local equivalent) with at most 12 decimal places.
Only one of unit_amount
and unit_amount_decimal
can be set.
Implementations§
Trait Implementations§
Source§impl Clone for CreatePreviewInvoiceInvoiceItemsPriceData
impl Clone for CreatePreviewInvoiceInvoiceItemsPriceData
Source§fn clone(&self) -> CreatePreviewInvoiceInvoiceItemsPriceData
fn clone(&self) -> CreatePreviewInvoiceInvoiceItemsPriceData
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 CreatePreviewInvoiceInvoiceItemsPriceData
impl RefUnwindSafe for CreatePreviewInvoiceInvoiceItemsPriceData
impl Send for CreatePreviewInvoiceInvoiceItemsPriceData
impl Sync for CreatePreviewInvoiceInvoiceItemsPriceData
impl Unpin for CreatePreviewInvoiceInvoiceItemsPriceData
impl UnwindSafe for CreatePreviewInvoiceInvoiceItemsPriceData
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