Struct stripe::generated::billing::subscription::InvoiceItemPriceData
source · pub struct InvoiceItemPriceData {
pub currency: Currency,
pub product: String,
pub tax_behavior: Option<InvoiceItemPriceDataTaxBehavior>,
pub unit_amount: Option<i64>,
pub unit_amount_decimal: Option<String>,
}Fields§
§currency: CurrencyThree-letter ISO currency code, in lowercase.
Must be a supported currency.
product: StringThe ID of the product that this price will belong to.
tax_behavior: Option<InvoiceItemPriceDataTaxBehavior>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.
Trait Implementations§
source§impl Clone for InvoiceItemPriceData
impl Clone for InvoiceItemPriceData
source§fn clone(&self) -> InvoiceItemPriceData
fn clone(&self) -> InvoiceItemPriceData
Returns a copy 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 moresource§impl Debug for InvoiceItemPriceData
impl Debug for InvoiceItemPriceData
source§impl Default for InvoiceItemPriceData
impl Default for InvoiceItemPriceData
source§fn default() -> InvoiceItemPriceData
fn default() -> InvoiceItemPriceData
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for InvoiceItemPriceData
impl<'de> Deserialize<'de> for InvoiceItemPriceData
source§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