com.prowidesoftware.swift.model.mx.dic.MoneyLaunderingCheck1Code Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for MoneyLaunderingCheck1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "MoneyLaunderingCheck1Code")
@XmlEnum
public enum MoneyLaunderingCheck1Code {
/**
* Money laundering identification procedures have been carried out by the intermediary.
*
*/
PASS,
/**
* Money laundering identification procedures have not been carried out.
*
*/
NOTC,
/**
* Money laundering identification procedures have not been carried out because the transaction is below the prescribed limit.
*
*/
EXEM,
/**
* Money laundering identification procedures have not been carried out because of the transaction type, for example, switch, or because the transaction is being funded from an existing investor account held by the intermediary.
*
*/
CLMO,
/**
* Money laundering identification procedures have not been carried out because the investor is an authorised credit or financial institution.
*
*/
AUTH,
/**
* Limited money laundering identification procedures have been carried out because it is a one time only transaction and the payment is being made by postal, telephone or electronic transfers from an existing account with an authorised credit or financial institution.
*
*/
POEP;
public String value() {
return name();
}
public static MoneyLaunderingCheck1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy