AI-generated Key Takeaways
-
This documentation outlines the different verification results for the Card Verification Number (CVN) provided in a request.
-
The results indicate whether the CVN was sent by Google, verified, and if it matched the expected value.
-
Several enums explain scenarios where the CVN wasn't sent or wasn't supported by various entities (integrator, network, issuer).
-
Specific network result codes ("F", "M", "N") correspond to certain verification outcomes (not verified, match, mismatch).
-
Outcomes also cover instances where the CVN verification was skipped or unsupported by involved parties.
The result of verifying the CVN provided in the request.
Enums | |
---|---|
CVN_RESULT_UNSPECIFIED |
Do not ever set this default value! |
NOT_SENT_UNSUPPORTED_BY_INTEGRATOR |
Google did not provide the CVN, so it could not be verified. If it had been sent the integrator would not have been able to support it. |
NOT_SENT_UNSUPPORTED_BY_NETWORK |
Google did not provide the CVN, so it could not be verified. If it had been sent the network would not have been able to support it. |
NOT_SENT_UNSUPPORTED_BY_ISSUER |
Google did not provide the CVN, so it could not be verified. If it had been sent the issuer would not have been able to support it. |
NOT_SENT_SUPPORTED |
Google did not provide the CVN, so it could not be verified. If it had been sent the integrator would have been able to support it. |
NOT_VERIFIED |
Google sent the CVN, but it was not verified. This corresponds to a network result code of "F" |
MATCH |
Google sent the CVN, it was verified, and it matched. This corresponds to a network result code of "M". |
MISMATCH |
Google sent the CVN, it was verified, but it did not match. This corresponds to a network result code of "N". |
NOT_SPECIFIED |
Google sent the CVN, it was verified but the integrator didn't receive more details about the validation result. |
UNSUPPORTED_BY_INTEGRATOR |
Google sent the CVN, but the integrator does not support CVN verification. |
UNSUPPORTED_BY_NETWORK |
Google sent the CVN to the integrator but the Network does not support CVN verification. |
UNSUPPORTED_BY_ISSUER |
Google sent the CVN to the integrator but the issuer does not support CVN verification. |
SKIPPED_BY_NETWORK |
Google sent the CVN to the integrator but the Network did not return a CVN verification result (due to timeout etc.). |
SKIPPED_BY_ISSUER |
Google sent the CVN to the integrator but the issuer did not perform a CVN verification (due to timeout etc.). |