com.prowidesoftware.swift.model.mx.dic.RejectedStatusReason5Code 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 RejectedStatusReason5Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="RejectedStatusReason5Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="POIN"/>
* <enumeration value="ICAG"/>
* <enumeration value="IDDB"/>
* <enumeration value="INTE"/>
* <enumeration value="SAFE"/>
* <enumeration value="IPAY"/>
* <enumeration value="ICTR"/>
* <enumeration value="DEPT"/>
* <enumeration value="IVAG"/>
* <enumeration value="ISAF"/>
* <enumeration value="DFOR"/>
* <enumeration value="DSEC"/>
* <enumeration value="BLCA"/>
* <enumeration value="BLTR"/>
* <enumeration value="DOCC"/>
* <enumeration value="MONY"/>
* <enumeration value="SECU"/>
* <enumeration value="IDNA"/>
* <enumeration value="UWAI"/>
* <enumeration value="UDCY"/>
* <enumeration value="UNAV"/>
* <enumeration value="UPAY"/>
* <enumeration value="URSC"/>
* <enumeration value="SHIG"/>
* <enumeration value="SLOW"/>
* <enumeration value="ULNK"/>
* <enumeration value="DLVY"/>
* <enumeration value="ORRF"/>
* <enumeration value="IPAC"/>
* <enumeration value="IOTP"/>
* <enumeration value="NSLA"/>
* <enumeration value="CUTO"/>
* <enumeration value="OTHR"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "RejectedStatusReason5Code")
@XmlEnum
public enum RejectedStatusReason5Code {
/**
* Order contains funds that have different valuation points.
*
*/
POIN,
/**
* Delivering agent is not recognised or is invalid.
*
*/
ICAG,
/**
* Direct debit account identification is not recognised or is invalid.
*
*/
IDDB,
/**
* Intermediary is not recognised or is invalid.
*
*/
INTE,
/**
* Investment account identification is not recognised or is invalid.
*
*/
SAFE,
/**
* Payment card details are incorrect.
*
*/
IPAY,
/**
* Credit transfer details are incorrect.
*
*/
ICTR,
/**
* Place of settlement is not recognised or is invalid.
*
*/
DEPT,
/**
* Receiving agent is not recognised or is invalid.
*
*/
IVAG,
/**
* Safekeeping place is not recognised or is invalid.
*
*/
ISAF,
/**
* Form of the security is wrong, eg, the form of security is registered not bearer or vice versa.
*
*/
DFOR,
/**
* Identification of the security is not recognised or is invalid.
*
*/
DSEC,
/**
* Investment account is blocked due to a corporate action.
*
*/
BLCA,
/**
* Investment account is blocked due to a transfer out of investment funds.
*
*/
BLTR,
/**
* Investment account is blocked until certain legal proceedings are completed, eg, legal documents from the successor, legal proceedings due to bankruptcy.
*
*/
DOCC,
/**
* There is not enough cash in the account to process the instruction.
*
*/
MONY,
/**
* There are not enough securities in the account to process the instruction.
*
*/
SECU,
/**
* Identification of the security and the security name are not the same.
*
*/
IDNA,
/**
* Percentage of commission waiving exceeds the commission percentage or commission amount.
*
*/
UWAI,
/**
* Deal currency is not supported.
*
*/
UDCY,
/**
* Net asset value currency is not supported.
*
*/
UNAV,
/**
* Payment method, eg, cheque or payment card, is not accepted.
*
*/
UPAY,
/**
* Settlement currency requested is not supported.
*
*/
URSC,
/**
* Quantity of units or amount of money in the order is too high for a subscription.
*
*/
SHIG,
/**
* Quantity of units or amount of money in the order is too low for a subscription.
*
*/
SLOW,
/**
* Linked reference is not known.
*
*/
ULNK,
/**
* Order contains physical delivery details but the fund can not be physically delivered.
*
*/
DLVY,
/**
* Order reference is a duplicate of a previously received order.
*
*/
ORRF,
/**
* Instructing party is not allowed to instruct for this investment account.
*
*/
IPAC,
/**
* Order type is invalid.
*
*/
IOTP,
/**
* Instruction is not compliant with the service level agreement.
*
*/
NSLA,
/**
* Instruction has been received after the cut-off time.
*
*/
CUTO,
/**
* Another reason for the status rejected.
*
*/
OTHR;
public String value() {
return name();
}
public static RejectedStatusReason5Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy