com.prowidesoftware.swift.model.mx.dic.Response3Code 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 Response3Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "Response3Code")
@XmlEnum
public enum Response3Code {
/**
* Service has been successfuly provided.
*
*/
APPR,
/**
* Service is declined.
*
*/
DECL,
/**
* Further action required to complete the transaction, for instance a referral.
*
*/
FRTH,
/**
* Service has been partialy provided.
*
*/
PART,
/**
* Advice message is processed.
*
*/
PRCS,
/**
* Advice message could not be processed.
*
*/
UNPR;
public String value() {
return name();
}
public static Response3Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy