com.prowidesoftware.swift.model.mx.dic.AgentRole2Code 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 AgentRole2Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "AgentRole2Code")
@XmlEnum
public enum AgentRole2Code {
/**
* The System Paying Agent (SPA) is the party within the CSD that is responsible for the distribution of cash and security proceeds related to a specific distribution to other CSD Parties.
*
*/
SPAY,
/**
* Sub-agent appointed to execute the payment for the corporate action event on behalf of the issuer company/offeror.
*
*/
CODO,
/**
* Party appointed to administer the event on behalf of the issuer company/offeror. The party may be contacted for more information about the event.
*
*/
ISAG,
/**
* Party/agent responsible for maintaining the register of a security.
*
*/
REGR,
/**
* Agent (principal or fiscal paying agent) appointed to execute the payment for the corporate action event on behalf of the issuer company/offeror.
*
*/
PAYA;
public String value() {
return name();
}
public static AgentRole2Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy