# plan\_tier

From **Stripe API**.

- Type: `object`

## Properties

### `flat_amount`

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

Price for the entire tier.

### `flat_amount_decimal`

- Required: false
- Type: `string`
- Format: `decimal`
- Nullable: true

Same as `flat_amount`, but contains a decimal value with at most 12 decimal places.

### `unit_amount`

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

Per unit price for units relevant to the tier.

### `unit_amount_decimal`

- Required: false
- Type: `string`
- Format: `decimal`
- Nullable: true

Same as `unit_amount`, but contains a decimal value with at most 12 decimal places.

### `up_to`

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

Up to and including to this quantity will be contained in the tier.

## JSON Schema

```json
{"properties":{"flat_amount":{"description":"Price for the entire tier.","nullable":true,"type":"integer"},"flat_amount_decimal":{"description":"Same as `flat_amount`, but contains a decimal value with at most 12 decimal places.","format":"decimal","nullable":true,"type":"string"},"unit_amount":{"description":"Per unit price for units relevant to the tier.","nullable":true,"type":"integer"},"unit_amount_decimal":{"description":"Same as `unit_amount`, but contains a decimal value with at most 12 decimal places.","format":"decimal","nullable":true,"type":"string"},"up_to":{"description":"Up to and including to this quantity will be contained in the tier.","nullable":true,"type":"integer"}},"title":"PlanTier","type":"object","x-expandableFields":[]}
```
