org.fpml.fpml_5.confirmation.MutualFund Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.05.10 at 03:58:40 PM UTC
//
package org.fpml.fpml_5.confirmation;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for MutualFund complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MutualFund">
* <complexContent>
* <extension base="{http://www.fpml.org/FpML-5/confirmation}UnderlyingAsset">
* <sequence>
* <element name="openEndedFund" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="fundManager" type="{http://www.fpml.org/FpML-5/confirmation}String" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MutualFund", propOrder = {
"openEndedFund",
"fundManager"
})
public class MutualFund
extends UnderlyingAsset
{
protected Boolean openEndedFund;
protected String fundManager;
/**
* Gets the value of the openEndedFund property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isOpenEndedFund() {
return openEndedFund;
}
/**
* Sets the value of the openEndedFund property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setOpenEndedFund(Boolean value) {
this.openEndedFund = value;
}
/**
* Gets the value of the fundManager property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFundManager() {
return fundManager;
}
/**
* Sets the value of the fundManager property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFundManager(String value) {
this.fundManager = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy