# `Stripe.Params.Terminal.ReaderCollectInputsParams.Inputs`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/terminal/reader_collect_inputs_params.ex#L18)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.Terminal.ReaderCollectInputsParams.Inputs{
  custom_text:
    Stripe.Params.Terminal.ReaderCollectInputsParams.Inputs.CustomText.t() | nil,
  required: boolean() | nil,
  selection:
    Stripe.Params.Terminal.ReaderCollectInputsParams.Inputs.Selection.t() | nil,
  toggles:
    [Stripe.Params.Terminal.ReaderCollectInputsParams.Inputs.Toggles.t()] | nil,
  type: String.t() | nil
}
```

* `custom_text` - Customize the text which will be displayed while collecting this input
* `required` - Indicate that this input is required, disabling the skip button
* `selection` - Options for the `selection` input
* `toggles` - List of toggles to be displayed and customization for the toggles
* `type` - The type of input to collect Possible values: `email`, `numeric`, `phone`, `selection`, `signature`, `text`.

---

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