# quotes\_resource\_transfer\_data

From **Stripe API**.

- Type: `object`

## Properties

### `amount`

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

The amount in %s that will be transferred to the destination account when the invoice is paid. By default, the entire amount is transferred to the destination.

### `amount_percent`

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

A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice subtotal that will be transferred to the destination account. By default, the entire amount will be transferred to the destination.

### `destination`

- Required: true
The account where funds from the payment will be transferred to upon payment success.

## JSON Schema

```json
{"properties":{"amount":{"description":"The amount in %s that will be transferred to the destination account when the invoice is paid. By default, the entire amount is transferred to the destination.","nullable":true,"type":"integer"},"amount_percent":{"description":"A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice subtotal that will be transferred to the destination account. By default, the entire amount will be transferred to the destination.","nullable":true,"type":"number"},"destination":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/account"}],"description":"The account where funds from the payment will be transferred to upon payment success.","x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/account"}]}}},"required":["destination"],"title":"QuotesResourceTransferData","type":"object","x-expandableFields":["destination"]}
```
