AVSResult
public enum AVSResult : String, Codable, Sendable, CaseIterable
AVS results.
-
Street address matches, but 5-digit and 9-digit postal code do not match.
Declaration
Swift
case codeA = "A" -
Street address matches, but postal code not verified.
Declaration
Swift
case codeB = "B" -
Street address and postal code match. Code “M” is equivalent.
Declaration
Swift
case codeD = "D" -
AVS data is invalid or AVS is not allowed for this card type.
Declaration
Swift
case codeE = "E" -
Card member’s name does not match, but billing postal code matches.
Declaration
Swift
case codeF = "F" -
Non-U.S. issuing bank does not support AVS.
Declaration
Swift
case codeG = "G" -
Card member’s name does not match. Street address and postal code match.
Declaration
Swift
case codeH = "H" -
Address not verified.
Declaration
Swift
case codeI = "I" -
Card member’s name, billing address, and postal code match.
Declaration
Swift
case codeJ = "J" -
Card member’s name and billing postal code match, but billing address does not match.
Declaration
Swift
case codeL = "L" -
Street address and postal code match. Code “D” is equivalent.
Declaration
Swift
case codeM = "M" -
Card member’s name and billing address match, but billing postal code does not match.
Declaration
Swift
case codeO = "O"
View on GitHub