Package com.stripe.param
Class SubscriptionItemUpdateParams.PriceData
- java.lang.Object
-
- com.stripe.param.SubscriptionItemUpdateParams.PriceData
-
- Enclosing class:
- SubscriptionItemUpdateParams
public static class SubscriptionItemUpdateParams.PriceData extends java.lang.ObjectUsage threshold that triggers the subscription to advance to a new billing period.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSubscriptionItemUpdateParams.PriceData.Builderstatic classSubscriptionItemUpdateParams.PriceData.Recurringstatic classSubscriptionItemUpdateParams.PriceData.TaxBehavior
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SubscriptionItemUpdateParams.PriceData.Builderbuilder()java.lang.ObjectgetCurrency()Three-letter ISO currency code, in lowercase.java.util.Map<java.lang.String,java.lang.Object>getExtraParams()Map of extra parameters for custom features not available in this client library.java.lang.ObjectgetProduct()The ID of the product that this price will belong to.SubscriptionItemUpdateParams.PriceData.RecurringgetRecurring()The recurring components of a price such asintervalandusage_type.SubscriptionItemUpdateParams.PriceData.TaxBehaviorgetTaxBehavior()Specifies whether the price is considered inclusive of taxes or exclusive of taxes.java.lang.LonggetUnitAmount()A positive integer in %s (or 0 for a free price) representing how much to charge.java.lang.ObjectgetUnitAmountDecimal()Same asunit_amount, but accepts a decimal value in %s with at most 12 decimal places.
-
-
-
Method Detail
-
builder
public static SubscriptionItemUpdateParams.PriceData.Builder builder()
-
getCurrency
public java.lang.Object getCurrency()
Three-letter ISO currency code, in lowercase. Must be a supported currency.
-
getExtraParams
public java.util.Map<java.lang.String,java.lang.Object> getExtraParams()
Map of extra parameters for custom features not available in this client library. The content in this map is not serialized under this field's@SerializedNamevalue. Instead, each key/value pair is serialized as if the key is a root-level field (serialized) name in this param object. Effectively, this map is flattened to its parent instance.
-
getProduct
public java.lang.Object getProduct()
The ID of the product that this price will belong to.
-
getRecurring
public SubscriptionItemUpdateParams.PriceData.Recurring getRecurring()
The recurring components of a price such asintervalandusage_type.
-
getTaxBehavior
public SubscriptionItemUpdateParams.PriceData.TaxBehavior getTaxBehavior()
Specifies whether the price is considered inclusive of taxes or exclusive of taxes. One ofinclusive,exclusive, orunspecified. Once specified as eitherinclusiveorexclusive, it cannot be changed.
-
getUnitAmount
public java.lang.Long getUnitAmount()
A positive integer in %s (or 0 for a free price) representing how much to charge.
-
getUnitAmountDecimal
public java.lang.Object getUnitAmountDecimal()
Same asunit_amount, but accepts a decimal value in %s with at most 12 decimal places. Only one ofunit_amountandunit_amount_decimalcan be set.
-
-