com.prowidesoftware.swift.model.mx.dic.MessageReason2Code 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 MessageReason2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "MessageReason2Code")
@XmlEnum
public enum MessageReason2Code {
/**
* Stand-in processing at the acquirer's option.
*
*/
ASTD,
/**
* Transaction above or under the floor limit.
*
*/
FLRL,
/**
* Transaction performed offline by the card.
*
*/
COFF,
/**
* Card acceptor forced to be online.
*
*/
ASPC,
/**
* Card cannot process offline the transaction.
*
*/
CUNB,
/**
* Random online decided by the card.
*
*/
CRND,
/**
* Forced online by card acceptor, terminal, card, or the issuer.
*
*/
FORC,
/**
* Issuer signed off.
*
*/
ISGN,
/**
* Issuer timed out on request.
*
*/
ITIM,
/**
* Issuer unavailable.
*
*/
IUNV,
/**
* Other national type of reason.
*
*/
OTHN,
/**
* Other private type of reason.
*
*/
OTHP,
/**
* Random online decided by the terminal.
*
*/
TRND,
/**
* Terminal cannot process offline the transaction.
*
*/
TUNB,
/**
* Stand-in processing at the receiver's option.
*
*/
RSTD,
/**
* Receiver timed out on request.
*
*/
RTIM,
/**
* Receiver signed off.
*
*/
RSGN,
/**
* Receiver unavailable.
*
*/
RUNV,
/**
* Transaction performed offline by the terminal.
*
*/
TOFF;
public String value() {
return name();
}
public static MessageReason2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy