# charge\_transfer\_data

From **Stripe API**.

- Type: `object`

## Properties

### `amount`

- Required: false
- Type: `integer`
- Nullable: true

The amount transferred to the destination account, if specified. By default, the entire charge amount is transferred to the destination account.

### `destination`

- Required: true
ID of an existing, connected Stripe account to transfer funds to if `transfer_data` was specified in the charge request.

## JSON Schema

```json
{"properties":{"amount":{"description":"The amount transferred to the destination account, if specified. By default, the entire charge amount is transferred to the destination account.","nullable":true,"type":"integer"},"destination":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/account"}],"description":"ID of an existing, connected Stripe account to transfer funds to if `transfer_data` was specified in the charge request.","x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/account"}]}}},"required":["destination"],"title":"ChargeTransferData","type":"object","x-expandableFields":["destination"]}
```
