com.prowidesoftware.swift.model.mx.dic.RejectionReason54Code 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 RejectionReason54Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="RejectionReason54Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ADEA"/>
* <enumeration value="CERT"/>
* <enumeration value="INVA"/>
* <enumeration value="OPTY"/>
* <enumeration value="ULNK"/>
* <enumeration value="DSEC"/>
* <enumeration value="LACK"/>
* <enumeration value="LATE"/>
* <enumeration value="NMTY"/>
* <enumeration value="FULL"/>
* <enumeration value="CANC"/>
* <enumeration value="INTV"/>
* <enumeration value="OPNM"/>
* <enumeration value="OTHR"/>
* <enumeration value="DQUA"/>
* <enumeration value="REFT"/>
* <enumeration value="SAFE"/>
* <enumeration value="EVNM"/>
* <enumeration value="DQCS"/>
* <enumeration value="DQCC"/>
* <enumeration value="DQAM"/>
* <enumeration value="IRDQ"/>
* <enumeration value="DQBV"/>
* <enumeration value="DQBI"/>
* <enumeration value="SHAR"/>
* <enumeration value="ITAX"/>
* <enumeration value="NTAX"/>
* <enumeration value="MTAX"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "RejectionReason54Code")
@XmlEnum
public enum RejectionReason54Code {
/**
* Transaction/instruction received after the account servicer's specified deadline.
*
*/
ADEA,
/**
* Instruction is rejected since the provided certification is incorrect or incomplete.
*
*/
CERT,
/**
* For tax reclaim, the reclaim is invalid for the tax authorities.
*
*/
INVA,
/**
* Invalid option type.
*
*/
OPTY,
/**
* Linked reference is unknown.
*
*/
ULNK,
/**
* Unrecognised or invalid financial instrument identification.
*
*/
DSEC,
/**
* Instructed position exceeds the eligible balance.
*
*/
LACK,
/**
* Received after market deadline.
*
*/
LATE,
/**
* Mismatch between option number and option type.
*
*/
NMTY,
/**
* Rejected due to missing beneficiary owner details.
*
*/
FULL,
/**
* Option is not valid; it has been cancelled by the market or service provider, and cannot be responded to. Any responses already processed against this option are considered void and new responses will be required.
*
*/
CANC,
/**
* Option is not active and can no longer be responded to. Any responses already processed against this option will remain valid, for example, expired option.
*
*/
INTV,
/**
* Unrecognised option number.
*
*/
OPNM,
/**
* Other. See Narrative.
*
*/
OTHR,
/**
* Unrecognised or invalid instructed quantity.
*
*/
DQUA,
/**
* Reclaim is refused by the tax authorities.
*
*/
REFT,
/**
* Unrecognised or invalid message sender's safekeeping account.
*
*/
SAFE,
/**
* Unrecognised event number.
*
*/
EVNM,
/**
* Unrecognised or invalid instructed cash amount.
*
*/
DQCS,
/**
* Invalid instructed currency.
*
*/
DQCC,
/**
* Invalid use of instructed amount (QCAS) or of instructed quantity (QINS) qualifiers.
*
*/
DQAM,
/**
* Instruction is rejected due to invalid use of the additional round up quantity.
*
*/
IRDQ,
/**
* Bid price / basis points / percentage falls outside of bid range for the event (generally used in Dutch Auctions or Bid Tenders).
*
*/
DQBV,
/**
* Bid price / basis points / percentage increments rejected due to invalid bid increment for the event (generally used in Dutch Auctions or Bid Tenders).
*
*/
DQBI,
/**
* Unrecognised, missing or invalid shareholder number.
*
*/
SHAR,
/**
* Tax rate provided is incorrect. It falls outside the acceptable values for that investment country.
*
*/
ITAX,
/**
* Tax rate is not consistent with the documentation in place.
*
*/
NTAX,
/**
* Tax rate is missing.
*
*/
MTAX;
public String value() {
return name();
}
public static RejectionReason54Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy