Package com.stripe.param
Class ShippingRateCreateParams.Builder
java.lang.Object
com.stripe.param.ShippingRateCreateParams.Builder
- Enclosing class:
- ShippingRateCreateParams
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddAllExpand
(List<String> elements) Add all elements to `expand` list.Add an element to `expand` list.build()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putAllMetadata
(Map<String, String> map) Add all map key/value pairs to `metadata` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.putMetadata
(String key, String value) Add a key/value pair to `metadata` map.setDeliveryEstimate
(ShippingRateCreateParams.DeliveryEstimate deliveryEstimate) The estimated range for how long shipping will take, meant to be displayable to the customer.setDisplayName
(String displayName) Required. The name of the shipping rate, meant to be displayable to the customer.setFixedAmount
(ShippingRateCreateParams.FixedAmount fixedAmount) Describes a fixed amount to charge for shipping.setTaxBehavior
(ShippingRateCreateParams.TaxBehavior taxBehavior) Specifies whether the rate is considered inclusive of taxes or exclusive of taxes.setTaxCode
(String taxCode) A tax code ID.The type of calculation to use on the shipping rate.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setDeliveryEstimate
public ShippingRateCreateParams.Builder setDeliveryEstimate(ShippingRateCreateParams.DeliveryEstimate deliveryEstimate) The estimated range for how long shipping will take, meant to be displayable to the customer. This will appear on CheckoutSessions. -
setDisplayName
Required. The name of the shipping rate, meant to be displayable to the customer. This will appear on CheckoutSessions. -
addExpand
Add an element to `expand` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeShippingRateCreateParams.expand
for the field documentation. -
addAllExpand
Add all elements to `expand` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeShippingRateCreateParams.expand
for the field documentation. -
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. SeeShippingRateCreateParams.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. SeeShippingRateCreateParams.extraParams
for the field documentation. -
setFixedAmount
public ShippingRateCreateParams.Builder setFixedAmount(ShippingRateCreateParams.FixedAmount fixedAmount) Describes a fixed amount to charge for shipping. Must be present if type isfixed_amount
. -
putMetadata
Add a key/value pair to `metadata` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeShippingRateCreateParams.metadata
for the field documentation. -
putAllMetadata
Add all map key/value pairs to `metadata` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeShippingRateCreateParams.metadata
for the field documentation. -
setTaxBehavior
public ShippingRateCreateParams.Builder setTaxBehavior(ShippingRateCreateParams.TaxBehavior taxBehavior) Specifies whether the rate is considered inclusive of taxes or exclusive of taxes. One ofinclusive
,exclusive
, orunspecified
. -
setTaxCode
A tax code ID. The Shipping tax code istxcd_92010001
. -
setType
The type of calculation to use on the shipping rate.
-