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

com.bytekast.netsuite.client.CurrencyRateSearchBasic Maven / Gradle / Ivy

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 CurrencyRateSearchBasic complex type. * *

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

 * <complexType name="CurrencyRateSearchBasic">
 *   <complexContent>
 *     <extension base="{urn:core_2017_1.platform.webservices.netsuite.com}SearchRecordBasic">
 *       <sequence>
 *         <element name="baseCurrency" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="effectiveDate" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchDateField" minOccurs="0"/>
 *         <element name="exchangeRate" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchDoubleField" minOccurs="0"/>
 *         <element name="internalId" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *         <element name="internalIdNumber" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchLongField" minOccurs="0"/>
 *         <element name="transactionCurrency" type="{urn:core_2017_1.platform.webservices.netsuite.com}SearchMultiSelectField" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CurrencyRateSearchBasic", namespace = "urn:common_2017_1.platform.webservices.netsuite.com", propOrder = { "baseCurrency", "effectiveDate", "exchangeRate", "internalId", "internalIdNumber", "transactionCurrency" }) public class CurrencyRateSearchBasic extends SearchRecordBasic implements Serializable { protected SearchMultiSelectField baseCurrency; protected SearchDateField effectiveDate; protected SearchDoubleField exchangeRate; protected SearchMultiSelectField internalId; protected SearchLongField internalIdNumber; protected SearchMultiSelectField transactionCurrency; /** * Gets the value of the baseCurrency property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getBaseCurrency() { return baseCurrency; } /** * Sets the value of the baseCurrency property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setBaseCurrency(SearchMultiSelectField value) { this.baseCurrency = value; } /** * Gets the value of the effectiveDate property. * * @return * possible object is * {@link SearchDateField } * */ public SearchDateField getEffectiveDate() { return effectiveDate; } /** * Sets the value of the effectiveDate property. * * @param value * allowed object is * {@link SearchDateField } * */ public void setEffectiveDate(SearchDateField value) { this.effectiveDate = value; } /** * Gets the value of the exchangeRate property. * * @return * possible object is * {@link SearchDoubleField } * */ public SearchDoubleField getExchangeRate() { return exchangeRate; } /** * Sets the value of the exchangeRate property. * * @param value * allowed object is * {@link SearchDoubleField } * */ public void setExchangeRate(SearchDoubleField value) { this.exchangeRate = value; } /** * Gets the value of the internalId property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getInternalId() { return internalId; } /** * Sets the value of the internalId property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setInternalId(SearchMultiSelectField value) { this.internalId = value; } /** * Gets the value of the internalIdNumber property. * * @return * possible object is * {@link SearchLongField } * */ public SearchLongField getInternalIdNumber() { return internalIdNumber; } /** * Sets the value of the internalIdNumber property. * * @param value * allowed object is * {@link SearchLongField } * */ public void setInternalIdNumber(SearchLongField value) { this.internalIdNumber = value; } /** * Gets the value of the transactionCurrency property. * * @return * possible object is * {@link SearchMultiSelectField } * */ public SearchMultiSelectField getTransactionCurrency() { return transactionCurrency; } /** * Sets the value of the transactionCurrency property. * * @param value * allowed object is * {@link SearchMultiSelectField } * */ public void setTransactionCurrency(SearchMultiSelectField value) { this.transactionCurrency = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy