Package com.stripe.param.checkout
Class SessionCreateParams.CustomField
java.lang.Object
com.stripe.param.checkout.SessionCreateParams.CustomField
- Enclosing class:
- SessionCreateParams
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
static class
static class
The value for this option, not displayed to the customer, used by your integration to reconcile the option selected by the customer.static enum
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Configuration fortype=dropdown
fields.Map of extra parameters for custom features not available in this client library.getKey()
String of your choice that your integration can use to reconcile this field.getLabel()
The label for the field, displayed to the customer.Whether the customer is required to complete the field before completing the Checkout Session.getType()
The type of the field.
-
Method Details
-
builder
-
getDropdown
Configuration fortype=dropdown
fields. -
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. -
getKey
String of your choice that your integration can use to reconcile this field. Must be unique to this field, alphanumeric, and up to 200 characters. -
getLabel
The label for the field, displayed to the customer. -
getOptional
Whether the customer is required to complete the field before completing the Checkout Session. Defaults tofalse
. -
getType
The type of the field.
-