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

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

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

 * <complexType name="InterCompanyJournalEntryAccountingBookDetail">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="accountingBook" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="currency" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="subsidiary" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="exchangeRate" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InterCompanyJournalEntryAccountingBookDetail", namespace = "urn:general_2023_1.transactions.webservices.netsuite.com", propOrder = { "accountingBook", "currency", "subsidiary", "exchangeRate" }) public class InterCompanyJournalEntryAccountingBookDetail { protected RecordRef accountingBook; protected RecordRef currency; protected RecordRef subsidiary; protected Double exchangeRate; /** * Gets the value of the accountingBook property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getAccountingBook() { return accountingBook; } /** * Sets the value of the accountingBook property. * * @param value * allowed object is * {@link RecordRef } * */ public void setAccountingBook(RecordRef value) { this.accountingBook = value; } /** * Gets the value of the currency property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getCurrency() { return currency; } /** * Sets the value of the currency property. * * @param value * allowed object is * {@link RecordRef } * */ public void setCurrency(RecordRef value) { this.currency = value; } /** * Gets the value of the subsidiary property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getSubsidiary() { return subsidiary; } /** * Sets the value of the subsidiary property. * * @param value * allowed object is * {@link RecordRef } * */ public void setSubsidiary(RecordRef value) { this.subsidiary = value; } /** * Gets the value of the exchangeRate property. * * @return * possible object is * {@link Double } * */ public Double getExchangeRate() { return exchangeRate; } /** * Sets the value of the exchangeRate property. * * @param value * allowed object is * {@link Double } * */ public void setExchangeRate(Double value) { this.exchangeRate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy