
tsg.ns.wsdl.coop.AccountingTransactionSearchRow 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 AccountingTransactionSearchRow complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AccountingTransactionSearchRow">
* <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}AccountingTransactionSearchRowBasic" minOccurs="0"/>
* <element name="accountJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}AccountSearchRowBasic" minOccurs="0"/>
* <element name="revRecScheduleJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}RevRecScheduleSearchRowBasic" minOccurs="0"/>
* <element name="transactionJoin" type="{urn:common_2023_1.platform.webservices.netsuite.com}TransactionSearchRowBasic" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountingTransactionSearchRow", namespace = "urn:sales_2023_1.transactions.webservices.netsuite.com", propOrder = {
"basic",
"accountJoin",
"revRecScheduleJoin",
"transactionJoin"
})
public class AccountingTransactionSearchRow
extends SearchRow
{
protected AccountingTransactionSearchRowBasic basic;
protected AccountSearchRowBasic accountJoin;
protected RevRecScheduleSearchRowBasic revRecScheduleJoin;
protected TransactionSearchRowBasic transactionJoin;
/**
* Gets the value of the basic property.
*
* @return
* possible object is
* {@link AccountingTransactionSearchRowBasic }
*
*/
public AccountingTransactionSearchRowBasic getBasic() {
return basic;
}
/**
* Sets the value of the basic property.
*
* @param value
* allowed object is
* {@link AccountingTransactionSearchRowBasic }
*
*/
public void setBasic(AccountingTransactionSearchRowBasic value) {
this.basic = value;
}
/**
* Gets the value of the accountJoin property.
*
* @return
* possible object is
* {@link AccountSearchRowBasic }
*
*/
public AccountSearchRowBasic getAccountJoin() {
return accountJoin;
}
/**
* Sets the value of the accountJoin property.
*
* @param value
* allowed object is
* {@link AccountSearchRowBasic }
*
*/
public void setAccountJoin(AccountSearchRowBasic value) {
this.accountJoin = value;
}
/**
* Gets the value of the revRecScheduleJoin property.
*
* @return
* possible object is
* {@link RevRecScheduleSearchRowBasic }
*
*/
public RevRecScheduleSearchRowBasic getRevRecScheduleJoin() {
return revRecScheduleJoin;
}
/**
* Sets the value of the revRecScheduleJoin property.
*
* @param value
* allowed object is
* {@link RevRecScheduleSearchRowBasic }
*
*/
public void setRevRecScheduleJoin(RevRecScheduleSearchRowBasic value) {
this.revRecScheduleJoin = value;
}
/**
* Gets the value of the transactionJoin property.
*
* @return
* possible object is
* {@link TransactionSearchRowBasic }
*
*/
public TransactionSearchRowBasic getTransactionJoin() {
return transactionJoin;
}
/**
* Sets the value of the transactionJoin property.
*
* @param value
* allowed object is
* {@link TransactionSearchRowBasic }
*
*/
public void setTransactionJoin(TransactionSearchRowBasic value) {
this.transactionJoin = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy