com.prowidesoftware.swift.model.mx.dic.PendingReason22Code 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
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for PendingReason22Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "PendingReason22Code")
@XmlEnum
public enum PendingReason22Code {
/**
* Instruction was received after the account servicer's deadline. Processed on best effort basis.
*
*/
ADEA,
/**
* Other. See Narrative.
*
*/
OTHR,
/**
* Insufficient money in your account.
*
*/
MONY,
/**
* Insufficient financial instruments in your account.
*
*/
LACK,
/**
* Instruction was received after market deadline.
*
*/
LATE,
/**
* Insufficient deliverable financial instruments in counterparty's account or counterparty does not hold financial instruments.
*
*/
CLAC,
/**
* Insufficient money in counterparty's account.
*
*/
CMON,
/**
* Your instruction is a preadvice, that is, for matching only.
*
*/
PREA,
/**
* Your instruction is pending settlement because the instruction linked to it is pending.
*
*/
LINK,
/**
* Your instruction is confirmed in the local market or is ready for settlement, awaiting next settlement cycle.
*
*/
CYCL,
/**
* Counterparty's instruction and your instruction are on hold/frozen/ in a preadvice mode.
*
*/
BOTH,
/**
* Counterparty's instruction is a preadvice, that is, for matching only.
*
*/
PRCY,
/**
* Awaiting settlement date. No settlement problems to be reported.
*
*/
FUTU;
public String value() {
return name();
}
public static PendingReason22Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy