Properties
| Name | Type | Description |
|---|---|---|
| directCapture | boolean | Indicates if direct (immediate) capture for PayPal is enabled. If set to **true**, this setting overrides the [capture](https://docs.adyen.com/online-payments/capture) settings of your merchant accoun |
| payerId | string | PayPal Merchant ID. Character length and limitations: 13 single-byte alphanumeric characters. |
| subject | string | Your business email address. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PayPalInfo",
"title": "PayPalInfo",
"properties": {
"directCapture": {
"description": "Indicates if direct (immediate) capture for PayPal is enabled. If set to **true**, this setting overrides the [capture](https://docs.adyen.com/online-payments/capture) settings of your merchant account. Default value: **true**.",
"type": "boolean"
},
"payerId": {
"description": "PayPal Merchant ID. Character length and limitations: 13 single-byte alphanumeric characters.",
"maxLength": 13,
"minLength": 13,
"type": "string"
},
"subject": {
"description": "Your business email address.",
"type": "string"
}
},
"required": [
"subject",
"payerId"
],
"type": "object"
}