Package com.stripe.param
Class InvoiceUpdateParams.PaymentSettings.PaymentMethodOptions
- java.lang.Object
-
- com.stripe.param.InvoiceUpdateParams.PaymentSettings.PaymentMethodOptions
-
- Enclosing class:
- InvoiceUpdateParams.PaymentSettings
public static class InvoiceUpdateParams.PaymentSettings.PaymentMethodOptions extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InvoiceUpdateParams.PaymentSettings.PaymentMethodOptions.Bancontact
static class
InvoiceUpdateParams.PaymentSettings.PaymentMethodOptions.Builder
static class
InvoiceUpdateParams.PaymentSettings.PaymentMethodOptions.Card
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InvoiceUpdateParams.PaymentSettings.PaymentMethodOptions.Builder
builder()
java.lang.Object
getBancontact()
If paying bybancontact
, this sub-hash contains details about the Bancontact payment method options to pass to the invoice’s PaymentIntent.java.lang.Object
getCard()
If paying bycard
, this sub-hash contains details about the Card payment method options to pass to the invoice’s PaymentIntent.java.util.Map<java.lang.String,java.lang.Object>
getExtraParams()
Map of extra parameters for custom features not available in this client library.
-
-
-
Method Detail
-
builder
public static InvoiceUpdateParams.PaymentSettings.PaymentMethodOptions.Builder builder()
-
getBancontact
public java.lang.Object getBancontact()
If paying bybancontact
, this sub-hash contains details about the Bancontact payment method options to pass to the invoice’s PaymentIntent.
-
getCard
public java.lang.Object getCard()
If paying bycard
, this sub-hash contains details about the Card payment method options to pass to the invoice’s PaymentIntent.
-
getExtraParams
public java.util.Map<java.lang.String,java.lang.Object> getExtraParams()
Map of extra parameters for custom features not available in this client library. The content in this map is not serialized under this field's@SerializedName
value. Instead, each key/value pair is serialized as if the key is a root-level field (serialized) name in this param object. Effectively, this map is flattened to its parent instance.
-
-