Package com.stripe.param
Class AccountUpdateParams.Settings
java.lang.Object
com.stripe.param.AccountUpdateParams.Settings
- Enclosing class:
- AccountUpdateParams
public static class AccountUpdateParams.Settings
extends java.lang.Object
The front of an ID returned by a [file upload](#create_file) with a `purpose` value of
`identity_document`. The uploaded file needs to be a color image (smaller than 8,000px
by 8,000px), in JPG or PNG format, and less than 10 MB in size.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AccountUpdateParams.Settings.Branding
static class
AccountUpdateParams.Settings.Builder
static class
AccountUpdateParams.Settings.CardPayments
A CSS hex color value representing the primary branding color for this account.static class
AccountUpdateParams.Settings.Payments
Add all map key/value pairs to `extraParams` map.static class
AccountUpdateParams.Settings.Payouts
The Kanji variation of the default text that appears on credit card statements when a charge is made (Japan only). -
Method Summary
Modifier and Type Method Description static AccountUpdateParams.Settings.Builder
builder()
AccountUpdateParams.Settings.Branding
getBranding()
Settings used to apply the account's branding to email receipts, invoices, Checkout, and other products.AccountUpdateParams.Settings.CardPayments
getCardPayments()
Settings specific to card charging on the account.java.util.Map<java.lang.String,java.lang.Object>
getExtraParams()
Map of extra parameters for custom features not available in this client library.AccountUpdateParams.Settings.Payments
getPayments()
Settings that apply across payment methods for charging on the account.AccountUpdateParams.Settings.Payouts
getPayouts()
Settings specific to the account's payouts.
-
Method Details
-
builder
-
getBranding
Settings used to apply the account's branding to email receipts, invoices, Checkout, and other products. -
getCardPayments
Settings specific to card charging on the account. -
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. -
getPayments
Settings that apply across payment methods for charging on the account. -
getPayouts
Settings specific to the account's payouts.
-