# `Twilio.Resources.Verify.V2.Service.VerificationCheck`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/resources/verify/v2/service/verification_check.ex#L2)

VerificationCheck resource.

SID prefix: `VE`

Parent: `/Services/{Sid}`

## Properties

| Field | Description |
|-------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `account_sid` | The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the VerificationCheck resource. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `amount` | The amount of the associated PSD2 compliant transaction. Requires the PSD2 Service flag enabled.. PII: sensitive |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `channel` | The verification method to use. One of: [`email`](https://www.twilio.com/docs/verify/email), `sms`, `whatsapp`, `call`, or `sna`.. Values: `sms`, `call`, `email`, `whatsapp`, `sna` |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `date_created` | The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time in GMT when the Verification Check resource was created.. Format: date-time |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `date_updated` | The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time in GMT when the Verification Check resource was last updated.. Format: date-time |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `payee` | The payee of the associated PSD2 compliant transaction. Requires the PSD2 Service flag enabled.. PII: sensitive |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `service_sid` | The SID of the [Service](https://www.twilio.com/docs/verify/api/service) the resource is associated with. |
| `sid` | The unique string that we created to identify the VerificationCheck resource. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `sna_attempts_error_codes` | List of error codes as a result of attempting a verification using the `sna` channel. The error codes are chronologically ordered, from the first attempt to the latest attempt. This will be an empty list if no errors occured or `null` if the last channel used wasn't `sna`. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `status` | The status of the verification. Can be: `pending`, `approved`, `canceled`, `max_attempts_reached`, `deleted`, `failed` or `expired`. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `to` | The phone number or [email](https://www.twilio.com/docs/verify/email) being verified. Phone numbers must be in [E.164 format](https://www.twilio.com/docs/glossary/what-e164).. PII: standard |
| `valid` | Use "status" instead. Legacy property indicating whether the verification was successful. |

# `t`

```elixir
@type t() :: %Twilio.Resources.Verify.V2.Service.VerificationCheck{
  account_sid: String.t() | nil,
  amount: String.t() | nil,
  channel: String.t(),
  date_created: String.t() | nil,
  date_updated: String.t() | nil,
  payee: String.t() | nil,
  service_sid: String.t() | nil,
  sid: String.t() | nil,
  sna_attempts_error_codes: list() | nil,
  status: String.t() | nil,
  to: String.t() | nil,
  valid: boolean() | nil
}
```

# `object_name`

# `sid_prefix`

---

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