com.prowidesoftware.swift.model.mx.dic.RejectionReason29Code 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
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for RejectionReason29Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="RejectionReason29Code">
* <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"/>
* <enumeration value="DQUA"/>
* <enumeration value="DSEC"/>
* <enumeration value="INVB"/>
* <enumeration value="INVL"/>
* <enumeration value="INVN"/>
* <enumeration value="MINO"/>
* <enumeration value="MUNO"/>
* <enumeration value="VALR"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "RejectionReason29Code")
@XmlEnum
public enum RejectionReason29Code {
/**
* 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,
/**
* Unrecognised or invalid instructed quantity.
*
*/
DQUA,
/**
* Unrecognised or invalid financial instrument identification.
*
*/
DSEC,
/**
* Instruction aims at using an invalid balance.
*
*/
INVB,
/**
* Invalid or unrecognized link.
*
*/
INVL,
/**
* Invalid or unrecognized lot number.
*
*/
INVN,
/**
* Quantity instructed is lower than the minimum existing settlement quantity for the financial instrument.
*
*/
MINO,
/**
* Quantity instructed is not a multiple of an existing settlement quantity lot for the financial instrument.
*
*/
MUNO,
/**
* Account servicer validation rule rejection.
*
*/
VALR;
public String value() {
return name();
}
public static RejectionReason29Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy