com.prowidesoftware.swift.model.mx.dic.PartyRole2Code 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 PartyRole2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "PartyRole2Code")
@XmlEnum
public enum PartyRole2Code {
/**
* Party that act as an wholesaler of funds.
*
*/
DIST,
/**
* Party that has been appointed by a legal authority to act on behalf of a person judged to be incapacitated.
*
*/
LGRD,
/**
* Party that is authorised to take investment decisions on behalf of the shareholder.
*
*/
DECM;
public String value() {
return name();
}
public static PartyRole2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy