com.prowidesoftware.swift.model.mx.dic.TransactionIndividualStatus1Code 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 TransactionIndividualStatus1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "TransactionIndividualStatus1Code")
@XmlEnum
public enum TransactionIndividualStatus1Code {
/**
* Authentication and syntactical and semantical validation are successful.
*
*/
ACTC,
/**
* Payment initiation or individual transaction included in the payment initiation has been rejected.
*
*/
RJCT,
/**
* Payment initiation or individual transaction included in the payment initiation is pending. Further checks and status update will be performed.
*
*/
PDNG,
/**
* Preceding check of technical validation was successful. Customer profile check was also successful.
*
*/
ACCP,
/**
* All preceding checks such as technical validation and customer profile were successful and therefore the payment initiation has been accepted for execution.
*
*/
ACSP,
/**
* Settlement on the debtor's account has been completed.
*
* Usage : this can be used by the first agent to report to the debtor that the transaction has been completed. Warning : this status is provided for transaction status reasons, not for financial information. It can only be used after bilateral agreement
*
*/
ACSC,
/**
* Cancellation is accepted.
*
*/
ACCR,
/**
* Instruction is accepted but a change will be made, such as date or remittance not sent.
*
*/
ACWC;
public String value() {
return name();
}
public static TransactionIndividualStatus1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy