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

tsg.ns.wsdl.coop.Rate 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 Rate complex type. * *

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

 * <complexType name="Rate">
 *   <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="priceLevel" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Rate", propOrder = { "value", "priceLevel" }) public class Rate { protected Double value; protected RecordRef priceLevel; /** * 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 priceLevel property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getPriceLevel() { return priceLevel; } /** * Sets the value of the priceLevel property. * * @param value * allowed object is * {@link RecordRef } * */ public void setPriceLevel(RecordRef value) { this.priceLevel = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy