com.prowidesoftware.swift.model.mx.dic.GeneratedReason2Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for GeneratedReason2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "GeneratedReason2Code")
@XmlEnum
public enum GeneratedReason2Code {
/**
* Transaction has been generated for collateral management purposes.
*
*/
COLL,
/**
* Relates to the return of financial instruments resulting from a rejected delivery without matching operation.
*
*/
RODE,
/**
* Transaction has been generated to enable settlement following a shortage of position.
*
*/
SPLI,
/**
* Transaction has been generated by a third party, for example, a central counterparty.
*
*/
THRD,
/**
* Transaction has been generated due to transformation following a corporate action.
*
*/
TRAN,
/**
* Other. See Narrative.
*
*/
OTHR;
public String value() {
return name();
}
public static GeneratedReason2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy