Package com.stripe.param
Class SubscriptionCreateParams.PaymentSettings.Builder
java.lang.Object
com.stripe.param.SubscriptionCreateParams.PaymentSettings.Builder
- Enclosing class:
- SubscriptionCreateParams.PaymentSettings
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionAdd all elements to `paymentMethodTypes` list.Add an element to `paymentMethodTypes` list.build()
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.setPaymentMethodOptions
(SubscriptionCreateParams.PaymentSettings.PaymentMethodOptions paymentMethodOptions) Payment-method-specific configuration to provide to invoices created by the subscription.setPaymentMethodTypes
(EmptyParam paymentMethodTypes) The list of payment method types (e.g.setPaymentMethodTypes
(List<SubscriptionCreateParams.PaymentSettings.PaymentMethodType> paymentMethodTypes) The list of payment method types (e.g.setSaveDefaultPaymentMethod
(SubscriptionCreateParams.PaymentSettings.SaveDefaultPaymentMethod saveDefaultPaymentMethod) Configure whether Stripe updatessubscription.default_payment_method
when payment succeeds.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
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. SeeSubscriptionCreateParams.PaymentSettings.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. SeeSubscriptionCreateParams.PaymentSettings.extraParams
for the field documentation. -
setPaymentMethodOptions
public SubscriptionCreateParams.PaymentSettings.Builder setPaymentMethodOptions(SubscriptionCreateParams.PaymentSettings.PaymentMethodOptions paymentMethodOptions) Payment-method-specific configuration to provide to invoices created by the subscription. -
addPaymentMethodType
public SubscriptionCreateParams.PaymentSettings.Builder addPaymentMethodType(SubscriptionCreateParams.PaymentSettings.PaymentMethodType element) Add an element to `paymentMethodTypes` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeSubscriptionCreateParams.PaymentSettings.paymentMethodTypes
for the field documentation. -
addAllPaymentMethodType
public SubscriptionCreateParams.PaymentSettings.Builder addAllPaymentMethodType(List<SubscriptionCreateParams.PaymentSettings.PaymentMethodType> elements) Add all elements to `paymentMethodTypes` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. SeeSubscriptionCreateParams.PaymentSettings.paymentMethodTypes
for the field documentation. -
setPaymentMethodTypes
public SubscriptionCreateParams.PaymentSettings.Builder setPaymentMethodTypes(EmptyParam paymentMethodTypes) The list of payment method types (e.g. card) to provide to the invoice’s PaymentIntent. If not set, Stripe attempts to automatically determine the types to use by looking at the invoice’s default payment method, the subscription’s default payment method, the customer’s default payment method, and your invoice template settings. -
setPaymentMethodTypes
public SubscriptionCreateParams.PaymentSettings.Builder setPaymentMethodTypes(List<SubscriptionCreateParams.PaymentSettings.PaymentMethodType> paymentMethodTypes) The list of payment method types (e.g. card) to provide to the invoice’s PaymentIntent. If not set, Stripe attempts to automatically determine the types to use by looking at the invoice’s default payment method, the subscription’s default payment method, the customer’s default payment method, and your invoice template settings. -
setSaveDefaultPaymentMethod
public SubscriptionCreateParams.PaymentSettings.Builder setSaveDefaultPaymentMethod(SubscriptionCreateParams.PaymentSettings.SaveDefaultPaymentMethod saveDefaultPaymentMethod) Configure whether Stripe updatessubscription.default_payment_method
when payment succeeds. Defaults tooff
if unspecified.
-