Package com.stripe.param
Class SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder
java.lang.Object
com.stripe.param.SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder
- Enclosing class:
SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData
public static class SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder
extends Object
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()Finalize and obtain parameter instance from this builder.putAllExtraParam(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam(String key, Object value) Add a key/value pair to `extraParams` map.setCurrency(EmptyParam currency) Three-letter ISO currency code, in lowercase.setCurrency(String currency) Three-letter ISO currency code, in lowercase.setProduct(EmptyParam product) The ID of the product that this price will belong to.setProduct(String product) The ID of the product that this price will belong to.setTaxBehavior(SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.TaxBehavior taxBehavior) Specifies whether the price is considered inclusive of taxes or exclusive of taxes.setUnitAmount(Long unitAmount) A positive integer in cents (or local equivalent) (or 0 for a free price) representing how much to charge.setUnitAmountDecimal(EmptyParam unitAmountDecimal) setUnitAmountDecimal(BigDecimal unitAmountDecimal) Same asunit_amount, but accepts a decimal value in cents (or local equivalent) with at most 12 decimal places.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setCurrency
public SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder setCurrency(String currency) Three-letter ISO currency code, in lowercase. Must be a supported currency. -
setCurrency
public SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder setCurrency(EmptyParam currency) Three-letter ISO currency code, in lowercase. Must be a supported currency. -
putExtraParam
public SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder putExtraParam(String key, Object value) Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeSubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.extraParamsfor the field documentation. -
putAllExtraParam
public SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder putAllExtraParam(Map<String, Object> map) Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeSubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.extraParamsfor the field documentation. -
setProduct
public SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder setProduct(String product) The ID of the product that this price will belong to. -
setProduct
public SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder setProduct(EmptyParam product) The ID of the product that this price will belong to. -
setTaxBehavior
public SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder setTaxBehavior(SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.TaxBehavior taxBehavior) 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. -
setUnitAmount
public SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder setUnitAmount(Long unitAmount) A positive integer in cents (or local equivalent) (or 0 for a free price) representing how much to charge. -
setUnitAmountDecimal
public SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder setUnitAmountDecimal(BigDecimal unitAmountDecimal) Same asunit_amount, but accepts a decimal value in cents (or local equivalent) with at most 12 decimal places. Only one ofunit_amountandunit_amount_decimalcan be set. -
setUnitAmountDecimal
public SubscriptionScheduleUpdateParams.Phase.AddInvoiceItem.PriceData.Builder setUnitAmountDecimal(EmptyParam unitAmountDecimal)
-