UNPKG

pcp-server-nodejs-sdk

Version:

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PAYONE-GmbH_PCP-server-nodeJS-SDK&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [![Coverage](https://sonarcloud.io/api/pr

57 lines 2.42 kB
/** * @description Result of the Address Verification Service checks. * Possible values are: * * A - Address (Street) matches, Zip does not * * B - Street address match for international transactions—Postal code not verified due to incompatible formats * * C - Street address and postal code not verified for international transaction due to incompatible formats * * D - Street address and postal code match for international transaction, cardholder name is incorrect * * E - AVS error * * F - Address does match and five digit ZIP code does match (UK only) * * G - Address information is unavailable; international transaction; non-AVS participant * * H - Billing address and postal code match, cardholder name is incorrect (Amex) * * I - Address information not verified for international transaction * * K - Cardholder name matches (Amex) * * L - Cardholder name and postal code match (Amex) * * M - Cardholder name, street address, and postal code match for international transaction * * N - No Match on Address (Street) or Zip * * O - Cardholder name and address match (Amex) * * P - Postal codes match for international transaction—Street address not verified due to incompatible formats * * Q - Billing address matches, cardholder is incorrect (Amex) * * R - Retry, System unavailable or Timed out * * S - Service not supported by issuer * * U - Address information is unavailable * * W - 9 digit Zip matches, Address (Street) does not * * X - Exact AVS Match * * Y - Address (Street) and 5 digit Zip match * * Z - 5 digit Zip matches, Address (Street) does not * * 0 - No service available * @example A */ export var AvsResult; (function (AvsResult) { AvsResult["A"] = "A"; AvsResult["B"] = "B"; AvsResult["C"] = "C"; AvsResult["D"] = "D"; AvsResult["E"] = "E"; AvsResult["F"] = "F"; AvsResult["G"] = "G"; AvsResult["H"] = "H"; AvsResult["I"] = "I"; AvsResult["K"] = "K"; AvsResult["L"] = "L"; AvsResult["M"] = "M"; AvsResult["N"] = "N"; AvsResult["O"] = "O"; AvsResult["P"] = "P"; AvsResult["Q"] = "Q"; AvsResult["R"] = "R"; AvsResult["S"] = "S"; AvsResult["U"] = "U"; AvsResult["W"] = "W"; AvsResult["X"] = "X"; AvsResult["Y"] = "Y"; AvsResult["Z"] = "Z"; AvsResult["NO_SERVICE"] = "0"; })(AvsResult || (AvsResult = {})); //# sourceMappingURL=AvsResult.js.map