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

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

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

 * <complexType name="ConsolidatedExchangeRateSearchRow">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}SearchRow">
 *       <sequence>
 *         <element name="basic" type="{urn:common_2023_1.platform.webservices.netsuite.com}ConsolidatedExchangeRateSearchRowBasic" minOccurs="0"/>
 *         <element name="fromSubsidiaryJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}SubsidiarySearchRowBasic" minOccurs="0"/>
 *         <element name="periodJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}AccountingPeriodSearchRowBasic" minOccurs="0"/>
 *         <element name="toSubsidiaryJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}SubsidiarySearchRowBasic" minOccurs="0"/>
 *         <element name="userJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}EmployeeSearchRowBasic" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConsolidatedExchangeRateSearchRow", propOrder = { "basic", "fromSubsidiaryJoin", "periodJoin", "toSubsidiaryJoin", "userJoin" }) public class ConsolidatedExchangeRateSearchRow extends SearchRow { protected ConsolidatedExchangeRateSearchRowBasic basic; protected SubsidiarySearchRowBasic fromSubsidiaryJoin; protected AccountingPeriodSearchRowBasic periodJoin; protected SubsidiarySearchRowBasic toSubsidiaryJoin; protected EmployeeSearchRowBasic userJoin; /** * Gets the value of the basic property. * * @return * possible object is * {@link ConsolidatedExchangeRateSearchRowBasic } * */ public ConsolidatedExchangeRateSearchRowBasic getBasic() { return basic; } /** * Sets the value of the basic property. * * @param value * allowed object is * {@link ConsolidatedExchangeRateSearchRowBasic } * */ public void setBasic(ConsolidatedExchangeRateSearchRowBasic value) { this.basic = value; } /** * Gets the value of the fromSubsidiaryJoin property. * * @return * possible object is * {@link SubsidiarySearchRowBasic } * */ public SubsidiarySearchRowBasic getFromSubsidiaryJoin() { return fromSubsidiaryJoin; } /** * Sets the value of the fromSubsidiaryJoin property. * * @param value * allowed object is * {@link SubsidiarySearchRowBasic } * */ public void setFromSubsidiaryJoin(SubsidiarySearchRowBasic value) { this.fromSubsidiaryJoin = value; } /** * Gets the value of the periodJoin property. * * @return * possible object is * {@link AccountingPeriodSearchRowBasic } * */ public AccountingPeriodSearchRowBasic getPeriodJoin() { return periodJoin; } /** * Sets the value of the periodJoin property. * * @param value * allowed object is * {@link AccountingPeriodSearchRowBasic } * */ public void setPeriodJoin(AccountingPeriodSearchRowBasic value) { this.periodJoin = value; } /** * Gets the value of the toSubsidiaryJoin property. * * @return * possible object is * {@link SubsidiarySearchRowBasic } * */ public SubsidiarySearchRowBasic getToSubsidiaryJoin() { return toSubsidiaryJoin; } /** * Sets the value of the toSubsidiaryJoin property. * * @param value * allowed object is * {@link SubsidiarySearchRowBasic } * */ public void setToSubsidiaryJoin(SubsidiarySearchRowBasic value) { this.toSubsidiaryJoin = value; } /** * Gets the value of the userJoin property. * * @return * possible object is * {@link EmployeeSearchRowBasic } * */ public EmployeeSearchRowBasic getUserJoin() { return userJoin; } /** * Sets the value of the userJoin property. * * @param value * allowed object is * {@link EmployeeSearchRowBasic } * */ public void setUserJoin(EmployeeSearchRowBasic value) { this.userJoin = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy