
com.prowidesoftware.swift.model.mx.dic.RepoCallAcknowledgementReason2Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for RepoCallAcknowledgementReason2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="RepoCallAcknowledgementReason2Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CALD"/>
* <enumeration value="CALP"/>
* <enumeration value="ADEA"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "RepoCallAcknowledgementReason2Code")
@XmlEnum
public enum RepoCallAcknowledgementReason2Code {
/**
* Repuchase agreement call is in process.
*
*/
CALD,
/**
* Repurchase agreement call is processed.
*
*/
CALP,
/**
* Received after the account servicer's deadline. Processed on best effort basis.
*
*/
ADEA;
public String value() {
return name();
}
public static RepoCallAcknowledgementReason2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy