# `Stripe.Resources.CustomFieldNumeric`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/custom_field_numeric.ex#L2)

PaymentPagesCheckoutSessionCustomFieldsNumeric

# `t`

```elixir
@type t() :: %Stripe.Resources.CustomFieldNumeric{
  default_value: String.t(),
  maximum_length: integer(),
  minimum_length: integer(),
  value: String.t()
}
```

* `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, containing only digits. Max length: 5000. Nullable.

# `object_name`

---

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