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

com.bytekast.netsuite.client.GetCurrencyRateRequest 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for GetCurrencyRateRequest complex type. * *

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

 * <complexType name="GetCurrencyRateRequest">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="currencyRateFilter" type="{urn:core_2017_1.platform.webservices.netsuite.com}CurrencyRateFilter"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GetCurrencyRateRequest", namespace = "urn:messages_2017_1.platform.webservices.netsuite.com", propOrder = { "currencyRateFilter" }) public class GetCurrencyRateRequest implements Serializable { @XmlElement(required = true) protected CurrencyRateFilter currencyRateFilter; /** * Gets the value of the currencyRateFilter property. * * @return * possible object is * {@link CurrencyRateFilter } * */ public CurrencyRateFilter getCurrencyRateFilter() { return currencyRateFilter; } /** * Sets the value of the currencyRateFilter property. * * @param value * allowed object is * {@link CurrencyRateFilter } * */ public void setCurrencyRateFilter(CurrencyRateFilter value) { this.currencyRateFilter = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy