com.bytekast.netsuite.client.Price Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netsuite-suitetalk Show documentation
Show all versions of netsuite-suitetalk Show documentation
Client API for NetSuite Suitetalk Web Services
The newest version!
package com.bytekast.netsuite.client;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Price complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Price">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="quantity" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Price", propOrder = {
"value",
"quantity"
})
public class Price
implements Serializable
{
protected Double value;
protected Double quantity;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setValue(Double value) {
this.value = value;
}
/**
* Gets the value of the quantity property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getQuantity() {
return quantity;
}
/**
* Sets the value of the quantity property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setQuantity(Double value) {
this.quantity = value;
}
}