# `Stripe.Params.SourceUpdateParams.SourceOrder.Items`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/source_update_params.ex#L149)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.SourceUpdateParams.SourceOrder.Items{
  amount: integer() | nil,
  currency: String.t() | nil,
  description: String.t() | nil,
  parent: String.t() | nil,
  quantity: integer() | nil,
  type: String.t() | nil
}
```

* `amount`
* `currency` - Format: ISO 4217 currency code.
* `description` - Max length: 1000.
* `parent` - The ID of the SKU being ordered. Max length: 5000.
* `quantity` - The quantity of this order item. When type is `sku`, this is the number of instances of the SKU to be ordered.
* `type` - Possible values: `discount`, `shipping`, `sku`, `tax`. Max length: 5000.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
