
com.prowidesoftware.swift.model.mx.dic.CancellationProcess1Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CancellationProcess1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="CancellationProcess1Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ADVC"/>
* <enumeration value="NALW"/>
* <enumeration value="REQU"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "CancellationProcess1Code")
@XmlEnum
public enum CancellationProcess1Code {
/**
* Card payment transaction may be cancelled by an advice only before closure of the reconciliation period or before the capture by batch.
*
*/
ADVC,
/**
* Card payment transaction cannot be cancelled by the acquirer.
*
*/
NALW,
/**
* Card payment transaction may also be cancelled after the closure of the reconciliation period or after the capture by batch. In this case a cancellation request exchange is required.
*
*/
REQU;
public String value() {
return name();
}
public static CancellationProcess1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy