Properties
| Name | Type | Description |
|---|---|---|
| avs | object | Describes the configuration for AVS ([Address Verification System](https://en.wikipedia.org/wiki/Address_Verification_System)). |
| cardHolderName | string | Determines whether the cardholder name should be provided or not. Permitted values: * NONE * OPTIONAL * REQUIRED |
| installments | object | Describes the configuration for [installment payments](https://docs.adyen.com/payment-methods/cards/credit-card-installments). |
| shopperInput | object | Determines how to display the details fields. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Configuration",
"title": "Configuration",
"properties": {
"avs": {
"description": "Describes the configuration for AVS ([Address Verification System](https://en.wikipedia.org/wiki/Address_Verification_System)).",
"$ref": "#/components/schemas/Avs"
},
"cardHolderName": {
"x-addedInVersion": "37",
"description": "Determines whether the cardholder name should be provided or not.\n\nPermitted values:\n* NONE\n* OPTIONAL\n* REQUIRED",
"enum": [
"NONE",
"OPTIONAL",
"REQUIRED"
],
"type": "string"
},
"installments": {
"description": "Describes the configuration for [installment payments](https://docs.adyen.com/payment-methods/cards/credit-card-installments).",
"$ref": "#/components/schemas/InstallmentsNumber"
},
"shopperInput": {
"x-addedInVersion": "37",
"description": "Determines how to display the details fields.",
"$ref": "#/components/schemas/ShopperInput"
}
},
"type": "object"
}