Struct stripe::generated::billing::subscription::SubscriptionItemPriceData
source · pub struct SubscriptionItemPriceData {
pub currency: Currency,
pub product: String,
pub recurring: SubscriptionItemPriceDataRecurring,
pub tax_behavior: Option<SubscriptionItemPriceDataTaxBehavior>,
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.
recurring: SubscriptionItemPriceDataRecurringThe recurring components of a price such as interval and interval_count.
tax_behavior: Option<SubscriptionItemPriceDataTaxBehavior>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 SubscriptionItemPriceData
impl Clone for SubscriptionItemPriceData
source§fn clone(&self) -> SubscriptionItemPriceData
fn clone(&self) -> SubscriptionItemPriceData
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 SubscriptionItemPriceData
impl Debug for SubscriptionItemPriceData
source§impl Default for SubscriptionItemPriceData
impl Default for SubscriptionItemPriceData
source§fn default() -> SubscriptionItemPriceData
fn default() -> SubscriptionItemPriceData
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SubscriptionItemPriceData
impl<'de> Deserialize<'de> for SubscriptionItemPriceData
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