# `Stripe.Params.Issuing.CardholderCreateParams.Individual`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/issuing/cardholder_create_params.ex#L96)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.Issuing.CardholderCreateParams.Individual{
  card_issuing:
    Stripe.Params.Issuing.CardholderCreateParams.Individual.CardIssuing.t()
    | nil,
  dob: Stripe.Params.Issuing.CardholderCreateParams.Individual.Dob.t() | nil,
  first_name: String.t() | nil,
  last_name: String.t() | nil,
  verification:
    Stripe.Params.Issuing.CardholderCreateParams.Individual.Verification.t()
    | nil
}
```

* `card_issuing` - Information related to the card_issuing program for this cardholder.
* `dob` - The date of birth of this cardholder. Cardholders must be older than 13 years old.
* `first_name` - The first name of this cardholder. Required before activating Cards. This field cannot contain any numbers, special characters (except periods, commas, hyphens, spaces and apostrophes) or non-latin letters.
* `last_name` - The last name of this cardholder. Required before activating Cards. This field cannot contain any numbers, special characters (except periods, commas, hyphens, spaces and apostrophes) or non-latin letters.
* `verification` - Government-issued ID document for this cardholder.

---

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