Package com.stripe.param
Class InvoiceUpdateLinesParams.Line.PriceData.Builder
java.lang.Object
com.stripe.param.InvoiceUpdateLinesParams.Line.PriceData.Builder
- Enclosing class:
- InvoiceUpdateLinesParams.Line.PriceData
-
Constructor Summary
-
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
(String currency) Required. Three-letter ISO currency code, in lowercase.setProduct
(String product) The ID of the product that this price will belong to.Data used to generate a new product object inline.Only required if a default tax behavior was not provided in the Stripe Tax settings.setUnitAmount
(Long unitAmount) A non-negative integer in cents (or local equivalent) representing how much to charge.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
Required. Three-letter ISO currency code, in lowercase. Must be a supported currency. -
putExtraParam
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. SeeInvoiceUpdateLinesParams.Line.PriceData.extraParams
for the field documentation. -
putAllExtraParam
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. SeeInvoiceUpdateLinesParams.Line.PriceData.extraParams
for the field documentation. -
setProduct
The ID of the product that this price will belong to. One ofproduct
orproduct_data
is required. -
setProductData
public InvoiceUpdateLinesParams.Line.PriceData.Builder setProductData(InvoiceUpdateLinesParams.Line.PriceData.ProductData productData) Data used to generate a new product object inline. One ofproduct
orproduct_data
is required. -
setTaxBehavior
public InvoiceUpdateLinesParams.Line.PriceData.Builder setTaxBehavior(InvoiceUpdateLinesParams.Line.PriceData.TaxBehavior taxBehavior) 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 ofinclusive
,exclusive
, orunspecified
. Once specified as eitherinclusive
orexclusive
, it cannot be changed. -
setUnitAmount
A non-negative integer in cents (or local equivalent) representing how much to charge. One ofunit_amount
orunit_amount_decimal
is required. -
setUnitAmountDecimal
public InvoiceUpdateLinesParams.Line.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_amount
andunit_amount_decimal
can be set.
-