# `Stripe.Resources.Source.CodeVerification`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/source.ex#L149)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Source.CodeVerification{
  attempts_remaining: integer() | nil,
  status: String.t() | nil
}
```

* `attempts_remaining` - The number of attempts remaining to authenticate the source object with a verification code.
* `status` - The status of the code verification, either `pending` (awaiting verification, `attempts_remaining` should be greater than 0), `succeeded` (successful verification) or `failed` (failed verification, cannot be verified anymore as `attempts_remaining` should be 0). Max length: 5000.

---

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