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