# subscription\_transfer\_data

From **Stripe API**.

- Type: `object`

## Properties

### `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 is 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_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 is 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":"SubscriptionTransferData","type":"object","x-expandableFields":["destination"]}
```
