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

com.prowidesoftware.swift.model.mx.dic.RejectionReason22Code 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 RejectionReason22Code. * *

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

*

 * <simpleType name="RejectionReason22Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="SAFE"/>
 *     <enumeration value="ADEA"/>
 *     <enumeration value="LATE"/>
 *     <enumeration value="CAEV"/>
 *     <enumeration value="DDAT"/>
 *     <enumeration value="REFE"/>
 *     <enumeration value="OTHR"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "RejectionReason22Code") @XmlEnum public enum RejectionReason22Code { /** * Unrecognised or invalid message sender's safekeeping account. * */ SAFE, /** * Transaction/instruction received after the account servicer's specified deadline. * */ ADEA, /** * Received after market deadline. * */ LATE, /** * Corporate action pending on the financial instrument instructed. * */ CAEV, /** * Unrecognised or invalid settlement date. * */ DDAT, /** * Instruction has a reference identical to another previously received instruction. * */ REFE, /** * Other. See Narrative. * */ OTHR; public String value() { return name(); } public static RejectionReason22Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy