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

tsg.ns.wsdl.coop.InboundShipmentLandedCost Maven / Gradle / Ivy


package tsg.ns.wsdl.coop;

import javax.xml.datatype.XMLGregorianCalendar;
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 InboundShipmentLandedCost complex type. * *

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

 * <complexType name="InboundShipmentLandedCost">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="landedCostCostCategory" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="landedCostAmount" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="landedCostCurrency" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="landedCostExchangeRate" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="landedCostEffectiveDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="landedCostAllocationMethod" type="{urn:types.purchases_2023_1.transactions.webservices.netsuite.com}InboundShipmentLandedCostAllocationMethod" minOccurs="0"/>
 *         <element name="landedCostShipmentItemsList" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRefList" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InboundShipmentLandedCost", namespace = "urn:purchases_2023_1.transactions.webservices.netsuite.com", propOrder = { "landedCostCostCategory", "landedCostAmount", "landedCostCurrency", "landedCostExchangeRate", "landedCostEffectiveDate", "landedCostAllocationMethod", "landedCostShipmentItemsList" }) public class InboundShipmentLandedCost { protected RecordRef landedCostCostCategory; protected Double landedCostAmount; protected RecordRef landedCostCurrency; protected Double landedCostExchangeRate; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar landedCostEffectiveDate; @XmlSchemaType(name = "string") protected InboundShipmentLandedCostAllocationMethod landedCostAllocationMethod; protected RecordRefList landedCostShipmentItemsList; /** * Gets the value of the landedCostCostCategory property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getLandedCostCostCategory() { return landedCostCostCategory; } /** * Sets the value of the landedCostCostCategory property. * * @param value * allowed object is * {@link RecordRef } * */ public void setLandedCostCostCategory(RecordRef value) { this.landedCostCostCategory = value; } /** * Gets the value of the landedCostAmount property. * * @return * possible object is * {@link Double } * */ public Double getLandedCostAmount() { return landedCostAmount; } /** * Sets the value of the landedCostAmount property. * * @param value * allowed object is * {@link Double } * */ public void setLandedCostAmount(Double value) { this.landedCostAmount = value; } /** * Gets the value of the landedCostCurrency property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getLandedCostCurrency() { return landedCostCurrency; } /** * Sets the value of the landedCostCurrency property. * * @param value * allowed object is * {@link RecordRef } * */ public void setLandedCostCurrency(RecordRef value) { this.landedCostCurrency = value; } /** * Gets the value of the landedCostExchangeRate property. * * @return * possible object is * {@link Double } * */ public Double getLandedCostExchangeRate() { return landedCostExchangeRate; } /** * Sets the value of the landedCostExchangeRate property. * * @param value * allowed object is * {@link Double } * */ public void setLandedCostExchangeRate(Double value) { this.landedCostExchangeRate = value; } /** * Gets the value of the landedCostEffectiveDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLandedCostEffectiveDate() { return landedCostEffectiveDate; } /** * Sets the value of the landedCostEffectiveDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLandedCostEffectiveDate(XMLGregorianCalendar value) { this.landedCostEffectiveDate = value; } /** * Gets the value of the landedCostAllocationMethod property. * * @return * possible object is * {@link InboundShipmentLandedCostAllocationMethod } * */ public InboundShipmentLandedCostAllocationMethod getLandedCostAllocationMethod() { return landedCostAllocationMethod; } /** * Sets the value of the landedCostAllocationMethod property. * * @param value * allowed object is * {@link InboundShipmentLandedCostAllocationMethod } * */ public void setLandedCostAllocationMethod(InboundShipmentLandedCostAllocationMethod value) { this.landedCostAllocationMethod = value; } /** * Gets the value of the landedCostShipmentItemsList property. * * @return * possible object is * {@link RecordRefList } * */ public RecordRefList getLandedCostShipmentItemsList() { return landedCostShipmentItemsList; } /** * Sets the value of the landedCostShipmentItemsList property. * * @param value * allowed object is * {@link RecordRefList } * */ public void setLandedCostShipmentItemsList(RecordRefList value) { this.landedCostShipmentItemsList = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy