public class PaymentIntentUpdateParams extends ApiRequestParams
Modifier and Type | Class and Description |
---|---|
static class |
PaymentIntentUpdateParams.Builder |
static class |
PaymentIntentUpdateParams.PaymentMethodData |
static class |
PaymentIntentUpdateParams.PaymentMethodOptions |
static class |
PaymentIntentUpdateParams.SetupFutureUsage
Add all map key/value pairs to `extraParams` map.
|
static class |
PaymentIntentUpdateParams.Shipping
Language shown to the payer on redirect.
|
static class |
PaymentIntentUpdateParams.TransferData
State, county, province, or region.
|
ApiRequestParams.EnumParam
EXTRA_PARAMS_KEY
Modifier and Type | Method and Description |
---|---|
static PaymentIntentUpdateParams.Builder |
builder() |
java.lang.Long |
getAmount()
Amount intended to be collected by this PaymentIntent.
|
java.lang.Object |
getApplicationFeeAmount()
The amount of the application fee (if any) that will be requested to be applied to the payment
and transferred to the application owner's Stripe account.
|
java.lang.Object |
getCurrency()
Three-letter ISO currency code,
in lowercase.
|
java.lang.Object |
getCustomer()
ID of the Customer this PaymentIntent belongs to, if one exists.
|
java.lang.Object |
getDescription()
An arbitrary string attached to the object.
|
java.util.List<java.lang.String> |
getExpand()
Specifies which fields in the response should be expanded.
|
java.util.Map<java.lang.String,java.lang.Object> |
getExtraParams()
Map of extra parameters for custom features not available in this client library.
|
java.lang.Object |
getMetadata()
Set of key-value pairs that you can attach
to an object.
|
java.lang.Object |
getPaymentMethod()
ID of the payment method (a PaymentMethod, Card, or compatible Source
object) to attach to this PaymentIntent.
|
PaymentIntentUpdateParams.PaymentMethodData |
getPaymentMethodData()
If provided, this hash will be used to create a PaymentMethod.
|
PaymentIntentUpdateParams.PaymentMethodOptions |
getPaymentMethodOptions()
Payment-method-specific configuration for this PaymentIntent.
|
java.util.List<java.lang.String> |
getPaymentMethodTypes()
The list of payment method types (e.g.
|
java.lang.Object |
getReceiptEmail()
Email address that the receipt for the resulting payment will be sent to.
|
ApiRequestParams.EnumParam |
getSetupFutureUsage()
Indicates that you intend to make future payments with this PaymentIntent's payment method.
|
java.lang.Object |
getShipping()
Shipping information for this PaymentIntent.
|
java.lang.Object |
getStatementDescriptor()
For non-card charges, you can use this value as the complete description that appears on your
customers’ statements.
|
java.lang.Object |
getStatementDescriptorSuffix()
Provides information about a card payment that customers see on their statements.
|
PaymentIntentUpdateParams.TransferData |
getTransferData()
The parameters used to automatically create a Transfer when the payment succeeds.
|
java.lang.Object |
getTransferGroup()
A string that identifies the resulting payment as part of a group.
|
toMap
public static PaymentIntentUpdateParams.Builder builder()
public java.lang.Long getAmount()
public java.lang.Object getApplicationFeeAmount()
public java.lang.Object getCurrency()
public java.lang.Object getCustomer()
Payment methods attached to other Customers cannot be used with this PaymentIntent.
If present in combination with setup_future_usage, this PaymentIntent's payment method will be attached to the Customer after the PaymentIntent has been confirmed and any required actions from the user are complete.
public java.lang.Object getDescription()
public java.util.List<java.lang.String> getExpand()
public java.util.Map<java.lang.String,java.lang.Object> getExtraParams()
@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.public java.lang.Object getMetadata()
metadata
.public java.lang.Object getPaymentMethod()
public PaymentIntentUpdateParams.PaymentMethodData getPaymentMethodData()
public PaymentIntentUpdateParams.PaymentMethodOptions getPaymentMethodOptions()
public java.util.List<java.lang.String> getPaymentMethodTypes()
public java.lang.Object getReceiptEmail()
receipt_email
is specified for a payment in live mode, a receipt will be sent regardless of
your email settings.public ApiRequestParams.EnumParam getSetupFutureUsage()
Providing this parameter will attach the payment method to the PaymentIntent's Customer, if present, after the PaymentIntent is confirmed and any required actions from the user are complete. If no Customer was provided, the payment method can still be attached to a Customer after the transaction completes.
When processing card payments, Stripe also uses setup_future_usage
to dynamically
optimize your payment flow and comply with regional legislation and network rules, such as SCA.
If setup_future_usage
is already set and you are performing a request using a
publishable key, you may only update the value from on_session
to off_session
.
public java.lang.Object getShipping()
public java.lang.Object getStatementDescriptor()
public java.lang.Object getStatementDescriptorSuffix()
public PaymentIntentUpdateParams.TransferData getTransferData()
public java.lang.Object getTransferGroup()
transfer_group
may
only be provided if it has not been set. See the PaymentIntents use case for connected accounts
for details.