com.prowidesoftware.swift.model.mx.dic.PaymentCancellationRejection1Code 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 PaymentCancellationRejection1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "PaymentCancellationRejection1Code")
@XmlEnum
public enum PaymentCancellationRejection1Code {
/**
* Reported when the cancellation cannot be accepted because of regulatory rules.
*
*/
LEGL,
/**
* Reported when the cancellation cannot be accepted because of an agent refuses to cancel.
*
*/
AGNT,
/**
* Reported when the cancellation cannot be accepted because of a customer decision (Creditor).
*
*/
CUST;
public String value() {
return name();
}
public static PaymentCancellationRejection1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy