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

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

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

 * <complexType name="PresentationItem">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="item" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="itemType" type="{urn:types.common_2023_1.platform.webservices.netsuite.com}PresentationItemType" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="onlinePrice" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="basePrice" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PresentationItem", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = { "item", "itemType", "description", "onlinePrice", "basePrice" }) public class PresentationItem { protected RecordRef item; @XmlSchemaType(name = "string") protected PresentationItemType itemType; protected String description; protected Double onlinePrice; protected Double basePrice; /** * Gets the value of the item property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getItem() { return item; } /** * Sets the value of the item property. * * @param value * allowed object is * {@link RecordRef } * */ public void setItem(RecordRef value) { this.item = value; } /** * Gets the value of the itemType property. * * @return * possible object is * {@link PresentationItemType } * */ public PresentationItemType getItemType() { return itemType; } /** * Sets the value of the itemType property. * * @param value * allowed object is * {@link PresentationItemType } * */ public void setItemType(PresentationItemType value) { this.itemType = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the onlinePrice property. * * @return * possible object is * {@link Double } * */ public Double getOnlinePrice() { return onlinePrice; } /** * Sets the value of the onlinePrice property. * * @param value * allowed object is * {@link Double } * */ public void setOnlinePrice(Double value) { this.onlinePrice = value; } /** * Gets the value of the basePrice property. * * @return * possible object is * {@link Double } * */ public Double getBasePrice() { return basePrice; } /** * Sets the value of the basePrice property. * * @param value * allowed object is * {@link Double } * */ public void setBasePrice(Double value) { this.basePrice = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy