
tsg.ns.wsdl.coop.CustomerCurrency 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for CustomerCurrency complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomerCurrency">
* <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="consolBalance" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="depositBalance" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="consolDepositBalance" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="overdueBalance" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="consolOverdueBalance" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="unbilledOrders" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="consolUnbilledOrders" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="overrideCurrencyFormat" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="displaySymbol" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="symbolPlacement" type="{urn:types.common_2023_1.platform.webservices.netsuite.com}CurrencySymbolPlacement" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomerCurrency", namespace = "urn:relationships_2023_1.lists.webservices.netsuite.com", propOrder = {
"currency",
"balance",
"consolBalance",
"depositBalance",
"consolDepositBalance",
"overdueBalance",
"consolOverdueBalance",
"unbilledOrders",
"consolUnbilledOrders",
"overrideCurrencyFormat",
"displaySymbol",
"symbolPlacement"
})
public class CustomerCurrency {
protected RecordRef currency;
protected Double balance;
protected Double consolBalance;
protected Double depositBalance;
protected Double consolDepositBalance;
protected Double overdueBalance;
protected Double consolOverdueBalance;
protected Double unbilledOrders;
protected Double consolUnbilledOrders;
protected Boolean overrideCurrencyFormat;
protected String displaySymbol;
@XmlSchemaType(name = "string")
protected CurrencySymbolPlacement symbolPlacement;
/**
* 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 consolBalance property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getConsolBalance() {
return consolBalance;
}
/**
* Sets the value of the consolBalance property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setConsolBalance(Double value) {
this.consolBalance = value;
}
/**
* Gets the value of the depositBalance property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getDepositBalance() {
return depositBalance;
}
/**
* Sets the value of the depositBalance property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setDepositBalance(Double value) {
this.depositBalance = value;
}
/**
* Gets the value of the consolDepositBalance property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getConsolDepositBalance() {
return consolDepositBalance;
}
/**
* Sets the value of the consolDepositBalance property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setConsolDepositBalance(Double value) {
this.consolDepositBalance = value;
}
/**
* Gets the value of the overdueBalance property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getOverdueBalance() {
return overdueBalance;
}
/**
* Sets the value of the overdueBalance property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setOverdueBalance(Double value) {
this.overdueBalance = value;
}
/**
* Gets the value of the consolOverdueBalance property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getConsolOverdueBalance() {
return consolOverdueBalance;
}
/**
* Sets the value of the consolOverdueBalance property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setConsolOverdueBalance(Double value) {
this.consolOverdueBalance = 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;
}
/**
* Gets the value of the consolUnbilledOrders property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getConsolUnbilledOrders() {
return consolUnbilledOrders;
}
/**
* Sets the value of the consolUnbilledOrders property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setConsolUnbilledOrders(Double value) {
this.consolUnbilledOrders = value;
}
/**
* Gets the value of the overrideCurrencyFormat property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isOverrideCurrencyFormat() {
return overrideCurrencyFormat;
}
/**
* Sets the value of the overrideCurrencyFormat property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setOverrideCurrencyFormat(Boolean value) {
this.overrideCurrencyFormat = value;
}
/**
* Gets the value of the displaySymbol property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisplaySymbol() {
return displaySymbol;
}
/**
* Sets the value of the displaySymbol property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisplaySymbol(String value) {
this.displaySymbol = value;
}
/**
* Gets the value of the symbolPlacement property.
*
* @return
* possible object is
* {@link CurrencySymbolPlacement }
*
*/
public CurrencySymbolPlacement getSymbolPlacement() {
return symbolPlacement;
}
/**
* Sets the value of the symbolPlacement property.
*
* @param value
* allowed object is
* {@link CurrencySymbolPlacement }
*
*/
public void setSymbolPlacement(CurrencySymbolPlacement value) {
this.symbolPlacement = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy