Package com.stripe.param
Class SubscriptionUpdateParams.AddInvoiceItem
- java.lang.Object
-
- com.stripe.param.SubscriptionUpdateParams.AddInvoiceItem
-
- Enclosing class:
- SubscriptionUpdateParams
public static class SubscriptionUpdateParams.AddInvoiceItem extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SubscriptionUpdateParams.AddInvoiceItem.Builder
static class
SubscriptionUpdateParams.AddInvoiceItem.PriceData
-
Method Summary
Modifier and Type Method Description static SubscriptionUpdateParams.AddInvoiceItem.Builder
builder()
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.Object
getPrice()
The ID of the price object.SubscriptionUpdateParams.AddInvoiceItem.PriceData
getPriceData()
Data used to generate a new Price object inline.java.lang.Long
getQuantity()
Quantity for this item.
-
-
-
Method Detail
-
builder
public static SubscriptionUpdateParams.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@SerializedName
value. 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.Object getPrice()
The ID of the price object.
-
getPriceData
public SubscriptionUpdateParams.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.
-
-