# `Stripe.Resources.Checkout.Session.CustomFields.Text`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/checkout/session.ex#L591)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Checkout.Session.CustomFields.Text{
  default_value: String.t() | nil,
  maximum_length: integer() | nil,
  minimum_length: integer() | nil,
  value: String.t() | nil
}
```

* `default_value` - The value that will pre-fill the field on the payment page. Max length: 5000. Nullable.
* `maximum_length` - The maximum character length constraint for the customer's input. Nullable.
* `minimum_length` - The minimum character length requirement for the customer's input. Nullable.
* `value` - The value entered by the customer. Max length: 5000. Nullable.

---

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