com.prowidesoftware.swift.model.mx.dic.CurrencyConversionResponse1Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for CurrencyConversionResponse1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "CurrencyConversionResponse1Code")
@XmlEnum
public enum CurrencyConversionResponse1Code {
/**
* Dynamic currency conversion may be offered to the cardholder.
*
*/
ODCC,
/**
* Transaction authorised with dynamic currency conversion.
*
*/
DCCA,
/**
* The card is not valid for dynamic currency conversion.
*
*/
ICRD,
/**
* The card acceptor has not been recognised.
*
*/
IMER,
/**
* Dynamic currency conversion service cannot be offered for this card product.
*
*/
IPRD,
/**
* Exchange rates are not available.
*
*/
IRAT,
/**
* Dynamic currency conversion is not available for other reason.
*
*/
NDCC;
public String value() {
return name();
}
public static CurrencyConversionResponse1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy