
tsg.ns.wsdl.coop.VendorCurrency 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.XmlType;
/**
* Java class for VendorCurrency complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VendorCurrency">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="currency" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="balance" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="unbilledOrders" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VendorCurrency", namespace = "urn:relationships_2023_1.lists.webservices.netsuite.com", propOrder = {
"currency",
"balance",
"unbilledOrders"
})
public class VendorCurrency {
protected RecordRef currency;
protected Double balance;
protected Double unbilledOrders;
/**
* Gets the value of the currency property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getCurrency() {
return currency;
}
/**
* Sets the value of the currency property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setCurrency(RecordRef value) {
this.currency = value;
}
/**
* Gets the value of the balance property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getBalance() {
return balance;
}
/**
* Sets the value of the balance property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setBalance(Double value) {
this.balance = value;
}
/**
* Gets the value of the unbilledOrders property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getUnbilledOrders() {
return unbilledOrders;
}
/**
* Sets the value of the unbilledOrders property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setUnbilledOrders(Double value) {
this.unbilledOrders = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy