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

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

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

*

 * <simpleType name="RejectionReason18Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="FAIL"/>
 *     <enumeration value="INHO"/>
 *     <enumeration value="LATT"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "RejectionReason18Code") @XmlEnum public enum RejectionReason18Code { /** * The validation of the advice/instruction/request failed. * */ FAIL, /** * Insufficient balance. * */ INHO, /** * Instruction/Request arrives too late. * */ LATT; public String value() { return name(); } public static RejectionReason18Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy