All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tsg.ns.wsdl.coop.BudgetExchangeRate Maven / Gradle / Ivy


package tsg.ns.wsdl.coop;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for BudgetExchangeRate complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="BudgetExchangeRate">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="period" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef"/>
 *         <element name="fromSubsidiary" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef"/>
 *         <element name="toSubsidiary" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef"/>
 *         <element name="currentRate" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="averageRate" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="historicalRate" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BudgetExchangeRate", namespace = "urn:core_2023_1.platform.webservices.netsuite.com", propOrder = { "period", "fromSubsidiary", "toSubsidiary", "currentRate", "averageRate", "historicalRate" }) public class BudgetExchangeRate { @XmlElement(required = true) protected RecordRef period; @XmlElement(required = true) protected RecordRef fromSubsidiary; @XmlElement(required = true) protected RecordRef toSubsidiary; protected Double currentRate; protected Double averageRate; protected Double historicalRate; /** * Gets the value of the period property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getPeriod() { return period; } /** * Sets the value of the period property. * * @param value * allowed object is * {@link RecordRef } * */ public void setPeriod(RecordRef value) { this.period = value; } /** * Gets the value of the fromSubsidiary property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getFromSubsidiary() { return fromSubsidiary; } /** * Sets the value of the fromSubsidiary property. * * @param value * allowed object is * {@link RecordRef } * */ public void setFromSubsidiary(RecordRef value) { this.fromSubsidiary = value; } /** * Gets the value of the toSubsidiary property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getToSubsidiary() { return toSubsidiary; } /** * Sets the value of the toSubsidiary property. * * @param value * allowed object is * {@link RecordRef } * */ public void setToSubsidiary(RecordRef value) { this.toSubsidiary = value; } /** * Gets the value of the currentRate property. * * @return * possible object is * {@link Double } * */ public Double getCurrentRate() { return currentRate; } /** * Sets the value of the currentRate property. * * @param value * allowed object is * {@link Double } * */ public void setCurrentRate(Double value) { this.currentRate = value; } /** * Gets the value of the averageRate property. * * @return * possible object is * {@link Double } * */ public Double getAverageRate() { return averageRate; } /** * Sets the value of the averageRate property. * * @param value * allowed object is * {@link Double } * */ public void setAverageRate(Double value) { this.averageRate = value; } /** * Gets the value of the historicalRate property. * * @return * possible object is * {@link Double } * */ public Double getHistoricalRate() { return historicalRate; } /** * Sets the value of the historicalRate property. * * @param value * allowed object is * {@link Double } * */ public void setHistoricalRate(Double value) { this.historicalRate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy