All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.prowidesoftware.swift.model.mx.dic.CardholderAddressVerificationResult1Code Maven / Gradle / Ivy

There is a newer version: SRU2024-10.2.4
Show newest version

package com.prowidesoftware.swift.model.mx.dic;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CardholderAddressVerificationResult1Code. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="CardholderAddressVerificationResult1Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="AMCH"/>
 *     <enumeration value="ANMH"/>
 *     <enumeration value="ANMT"/>
 *     <enumeration value="ANMO"/>
 *     <enumeration value="AMSS"/>
 *     <enumeration value="ANUS"/>
 *     <enumeration value="PMCH"/>
 *     <enumeration value="PNMH"/>
 *     <enumeration value="PNMT"/>
 *     <enumeration value="PNMO"/>
 *     <enumeration value="PMSS"/>
 *     <enumeration value="PNUS"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "CardholderAddressVerificationResult1Code") @XmlEnum public enum CardholderAddressVerificationResult1Code { /** * Address numeric match. * */ AMCH, /** * Address numerics do not match. * */ ANMH, /** * Address numeric not processed for technical reason. * */ ANMT, /** * Address numeric not processed for non-technical reason. * */ ANMO, /** * Address numeric missing in request. * */ AMSS, /** * Address numeric not used by issuer. * */ ANUS, /** * Postal code matches. * */ PMCH, /** * Postal code does not match. * */ PNMH, /** * Postal code not processed for technical reason. * */ PNMT, /** * Postal code not processed for non-technical reason. * */ PNMO, /** * Postal code missing in request. * */ PMSS, /** * Postal code not used by issuer. * */ PNUS; public String value() { return name(); } public static CardholderAddressVerificationResult1Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy