Package com.stripe.param.issuing
Class AuthorizationCreateParams
java.lang.Object
com.stripe.net.ApiRequestParams
com.stripe.param.issuing.AuthorizationCreateParams
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
static enum
static class
static class
Add all map key/value pairs to `extraParams` map.static class
static class
static class
static class
Add all map key/value pairs to `extraParams` map.static enum
Nested classes/interfaces inherited from class com.stripe.net.ApiRequestParams
ApiRequestParams.EnumParam
-
Field Summary
Fields inherited from class com.stripe.net.ApiRequestParams
EXTRA_PARAMS_KEY
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Required. The total amount to attempt to authorize.Detailed breakdown of amount components.How the card details were provided.getCard()
Required. Card associated with this authorization.The currency of the authorization.Specifies which fields in the response should be expanded.Map of extra parameters for custom features not available in this client library.getFleet()
Fleet-specific information for authorizations using Fleet cards.getFuel()
Information about fuel that was purchased with this transaction.If settrue
, you may provide amount to control how much to hold for the authorization.Details about the seller (grocery store, e-commerce website, etc.) where the card authorization happened.Details about the authorization, such as identifiers, set by the card network.Verifications that Stripe performed on information that the cardholder provided to the merchant.The digital wallet used for this transaction.Methods inherited from class com.stripe.net.ApiRequestParams
paramsToMap, toMap
-
Method Details
-
builder
-
getAmount
Required. The total amount to attempt to authorize. This amount is in the provided currency, or defaults to the card's currency, and in the smallest currency unit. -
getAmountDetails
Detailed breakdown of amount components. These amounts are denominated incurrency
and in the smallest currency unit. -
getAuthorizationMethod
How the card details were provided. Defaults to online. -
getCard
Required. Card associated with this authorization. -
getCurrency
The currency of the authorization. If not provided, defaults to the currency of the card. Three-letter ISO currency code, in lowercase. Must be a supported currency. -
getExpand
Specifies which fields in the response should be expanded. -
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. -
getFleet
Fleet-specific information for authorizations using Fleet cards. -
getFuel
Information about fuel that was purchased with this transaction. -
getIsAmountControllable
If settrue
, you may provide amount to control how much to hold for the authorization. -
getMerchantData
Details about the seller (grocery store, e-commerce website, etc.) where the card authorization happened. -
getNetworkData
Details about the authorization, such as identifiers, set by the card network. -
getVerificationData
Verifications that Stripe performed on information that the cardholder provided to the merchant. -
getWallet
The digital wallet used for this transaction. One ofapple_pay
,google_pay
, orsamsung_pay
. Will populate asnull
when no digital wallet was utilized.
-