Package com.stripe.param
Class SubscriptionCreateParams.AddInvoiceItem
- java.lang.Object
-
- com.stripe.param.SubscriptionCreateParams.AddInvoiceItem
-
- Enclosing class:
- SubscriptionCreateParams
public static class SubscriptionCreateParams.AddInvoiceItem extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSubscriptionCreateParams.AddInvoiceItem.Builderstatic classSubscriptionCreateParams.AddInvoiceItem.PriceData
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SubscriptionCreateParams.AddInvoiceItem.Builderbuilder()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.StringgetPrice()The ID of the price object.SubscriptionCreateParams.AddInvoiceItem.PriceDatagetPriceData()Data used to generate a new Price object inline.java.lang.LonggetQuantity()Quantity for this item.java.lang.ObjectgetTaxRates()The tax rates which apply to the item.
-
-
-
Method Detail
-
builder
public static SubscriptionCreateParams.AddInvoiceItem.Builder builder()
-
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.
-
getPrice
public java.lang.String getPrice()
The ID of the price object.
-
getPriceData
public SubscriptionCreateParams.AddInvoiceItem.PriceData getPriceData()
Data used to generate a new Price object inline.
-
getQuantity
public java.lang.Long getQuantity()
Quantity for this item. Defaults to 1.
-
getTaxRates
public java.lang.Object getTaxRates()
The tax rates which apply to the item. When set, thedefault_tax_ratesdo not apply to this item.
-
-