# `Stripe.Params.TestHelpers.Issuing.AuthorizationCreateParams.VerificationData`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/test_helpers/issuing/authorization_create_params.ex#L304)

Nested parameters.

# `t`

```elixir
@type t() ::
  %Stripe.Params.TestHelpers.Issuing.AuthorizationCreateParams.VerificationData{
    address_line1_check: String.t() | nil,
    address_postal_code_check: String.t() | nil,
    authentication_exemption:
      Stripe.Params.TestHelpers.Issuing.AuthorizationCreateParams.VerificationData.AuthenticationExemption.t()
      | nil,
    cvc_check: String.t() | nil,
    expiry_check: String.t() | nil,
    three_d_secure:
      Stripe.Params.TestHelpers.Issuing.AuthorizationCreateParams.VerificationData.ThreeDSecure.t()
      | nil
  }
```

* `address_line1_check` - Whether the cardholder provided an address first line and if it matched the cardholder’s `billing.address.line1`. Possible values: `match`, `mismatch`, `not_provided`.
* `address_postal_code_check` - Whether the cardholder provided a postal code and if it matched the cardholder’s `billing.address.postal_code`. Possible values: `match`, `mismatch`, `not_provided`.
* `authentication_exemption` - The exemption applied to this authorization.
* `cvc_check` - Whether the cardholder provided a CVC and if it matched Stripe’s record. Possible values: `match`, `mismatch`, `not_provided`.
* `expiry_check` - Whether the cardholder provided an expiry date and if it matched Stripe’s record. Possible values: `match`, `mismatch`, `not_provided`.
* `three_d_secure` - 3D Secure details.

---

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