com.prowidesoftware.swift.model.mx.dic.OnLineReason2Code Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for OnLineReason2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "OnLineReason2Code")
@XmlEnum
public enum OnLineReason2Code {
/**
* Transaction random selection to go online.
*
*/
RNDM,
/**
* Payment application in the Integrated Circuit Card forces to go on-line.
*
*/
ICCF,
/**
* On line forced by card acceptor.
*
*/
MERF,
/**
* Terminal random selection to go online.
*
*/
TRMF,
/**
* On line forced by card issuer.
*
*/
ISSF,
/**
* Over floor limit.
*
*/
FRLT,
/**
* Card appears on terminal exception file.
*
*/
EXFL,
/**
* Total amount of purchases per cardholder and per application above floor limit.
*
*/
TAMT,
/**
* Bank Identification Number under control.
*
*/
CBIN,
/**
* Unknown Bank Identification Number.
*
*/
UBIN,
/**
* Primary account number (card number) under control.
*
*/
CPAN,
/**
* Flow control.
*
*/
FLOW,
/**
* Unknown currency code or foreign currency.
*
*/
CRCY,
/**
* Request Cardholder Authentication througth PIN insertion
*
*/
IFPR;
public String value() {
return name();
}
public static OnLineReason2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy