Struct stripe::CreateProductDefaultPriceData
source · pub struct CreateProductDefaultPriceData {
pub currency: Currency,
pub currency_options: Option<HashMap<Currency, CreateProductDefaultPriceDataCurrencyOptions>>,
pub recurring: Option<CreateProductDefaultPriceDataRecurring>,
pub tax_behavior: Option<CreateProductDefaultPriceDataTaxBehavior>,
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.
currency_options: Option<HashMap<Currency, CreateProductDefaultPriceDataCurrencyOptions>>Prices defined in each available currency option.
Each key must be a three-letter ISO currency code and a supported currency.
recurring: Option<CreateProductDefaultPriceDataRecurring>The recurring components of a price such as interval and interval_count.
tax_behavior: Option<CreateProductDefaultPriceDataTaxBehavior>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.
One of unit_amount or unit_amount_decimal is required.
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 CreateProductDefaultPriceData
impl Clone for CreateProductDefaultPriceData
source§fn clone(&self) -> CreateProductDefaultPriceData
fn clone(&self) -> CreateProductDefaultPriceData
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more