pub struct CurrencyOption {
pub custom_unit_amount: Option<CustomUnitAmount>,
pub tax_behavior: Option<CurrencyOptionTaxBehavior>,
pub tiers: Option<Vec<PriceTier>>,
pub unit_amount: Option<i64>,
pub unit_amount_decimal: Option<String>,
}Fields§
§custom_unit_amount: Option<CustomUnitAmount>When set, provides configuration for the amount to be adjusted by the customer during Checkout Sessions and Payment Links.
tax_behavior: Option<CurrencyOptionTaxBehavior>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.
tiers: Option<Vec<PriceTier>>Each element represents a pricing tier.
This parameter requires billing_scheme to be set to tiered.
See also the documentation for billing_scheme.
unit_amount: Option<i64>The unit amount in cents (or local equivalent) to be charged, represented as a whole integer if possible.
Only set if billing_scheme=per_unit.
unit_amount_decimal: Option<String>The unit amount in cents (or local equivalent) to be charged, represented as a decimal string with at most 12 decimal places.
Only set if billing_scheme=per_unit.
Trait Implementations§
Source§impl Clone for CurrencyOption
impl Clone for CurrencyOption
Source§fn clone(&self) -> CurrencyOption
fn clone(&self) -> CurrencyOption
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more