Class ShippingRateCreateParams.Builder

java.lang.Object
com.stripe.param.ShippingRateCreateParams.Builder
Enclosing class:
ShippingRateCreateParams

public static class ShippingRateCreateParams.Builder extends Object
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • build

      public ShippingRateCreateParams 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

      public ShippingRateCreateParams.Builder setDisplayName(String displayName)
      Required. The name of the shipping rate, meant to be displayable to the customer. This will appear on CheckoutSessions.
    • addExpand

      public ShippingRateCreateParams.Builder addExpand(String element)
      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. See ShippingRateCreateParams.expand for the field documentation.
    • addAllExpand

      public ShippingRateCreateParams.Builder addAllExpand(List<String> elements)
      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. See ShippingRateCreateParams.expand for the field documentation.
    • putExtraParam

      public ShippingRateCreateParams.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. See ShippingRateCreateParams.extraParams for the field documentation.
    • putAllExtraParam

      public ShippingRateCreateParams.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. See ShippingRateCreateParams.extraParams for the field documentation.
    • setFixedAmount

      Describes a fixed amount to charge for shipping. Must be present if type is fixed_amount.
    • putMetadata

      public ShippingRateCreateParams.Builder putMetadata(String key, String value)
      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. See ShippingRateCreateParams.metadata for the field documentation.
    • putAllMetadata

      public ShippingRateCreateParams.Builder putAllMetadata(Map<String,String> map)
      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. See ShippingRateCreateParams.metadata for the field documentation.
    • setTaxBehavior

      Specifies whether the rate is considered inclusive of taxes or exclusive of taxes. One of inclusive, exclusive, or unspecified.
    • setTaxCode

      public ShippingRateCreateParams.Builder setTaxCode(String taxCode)
      A tax code ID. The Shipping tax code is txcd_92010001.
    • setType

      The type of calculation to use on the shipping rate. Can only be fixed_amount for now.