
com.prowidesoftware.swift.model.mx.dic.DisclosureRequestCancellationReason1Code 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 DisclosureRequestCancellationReason1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="DisclosureRequestCancellationReason1Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="PROC"/>
* <enumeration value="WITH"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "DisclosureRequestCancellationReason1Code")
@XmlEnum
public enum DisclosureRequestCancellationReason1Code {
/**
* The cancellation of the disclosure request is due to a processsing error.
*
*/
PROC,
/**
* The cancellation of the discolure request is due to the withdrawal of the request by the issuer.
*
*/
WITH;
public String value() {
return name();
}
public static DisclosureRequestCancellationReason1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy