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

tsg.ns.wsdl.coop.Nexus 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for Nexus complex type. * *

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

 * <complexType name="Nexus">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}Record">
 *       <sequence>
 *         <element name="country" type="{urn:types.common_2023_1.platform.webservices.netsuite.com}Country" minOccurs="0"/>
 *         <element name="state" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="taxAgency" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="taxAgencyPst" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="taxCode" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="parentNexus" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="isInactive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="taxDateFromFulfillment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="internalId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="externalId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Nexus", propOrder = { "country", "state", "taxAgency", "taxAgencyPst", "taxCode", "description", "parentNexus", "isInactive", "taxDateFromFulfillment" }) public class Nexus extends Record { @XmlSchemaType(name = "string") protected Country country; protected RecordRef state; protected RecordRef taxAgency; protected RecordRef taxAgencyPst; protected RecordRef taxCode; protected String description; protected RecordRef parentNexus; protected Boolean isInactive; protected Boolean taxDateFromFulfillment; @XmlAttribute(name = "internalId") protected String internalId; @XmlAttribute(name = "externalId") protected String externalId; /** * Gets the value of the country property. * * @return * possible object is * {@link Country } * */ public Country getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link Country } * */ public void setCountry(Country value) { this.country = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link RecordRef } * */ public void setState(RecordRef value) { this.state = value; } /** * Gets the value of the taxAgency property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getTaxAgency() { return taxAgency; } /** * Sets the value of the taxAgency property. * * @param value * allowed object is * {@link RecordRef } * */ public void setTaxAgency(RecordRef value) { this.taxAgency = value; } /** * Gets the value of the taxAgencyPst property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getTaxAgencyPst() { return taxAgencyPst; } /** * Sets the value of the taxAgencyPst property. * * @param value * allowed object is * {@link RecordRef } * */ public void setTaxAgencyPst(RecordRef value) { this.taxAgencyPst = value; } /** * Gets the value of the taxCode property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getTaxCode() { return taxCode; } /** * Sets the value of the taxCode property. * * @param value * allowed object is * {@link RecordRef } * */ public void setTaxCode(RecordRef value) { this.taxCode = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the parentNexus property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getParentNexus() { return parentNexus; } /** * Sets the value of the parentNexus property. * * @param value * allowed object is * {@link RecordRef } * */ public void setParentNexus(RecordRef value) { this.parentNexus = value; } /** * Gets the value of the isInactive property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsInactive() { return isInactive; } /** * Sets the value of the isInactive property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsInactive(Boolean value) { this.isInactive = value; } /** * Gets the value of the taxDateFromFulfillment property. * * @return * possible object is * {@link Boolean } * */ public Boolean isTaxDateFromFulfillment() { return taxDateFromFulfillment; } /** * Sets the value of the taxDateFromFulfillment property. * * @param value * allowed object is * {@link Boolean } * */ public void setTaxDateFromFulfillment(Boolean value) { this.taxDateFromFulfillment = value; } /** * Gets the value of the internalId property. * * @return * possible object is * {@link String } * */ public String getInternalId() { return internalId; } /** * Sets the value of the internalId property. * * @param value * allowed object is * {@link String } * */ public void setInternalId(String value) { this.internalId = value; } /** * Gets the value of the externalId property. * * @return * possible object is * {@link String } * */ public String getExternalId() { return externalId; } /** * Sets the value of the externalId property. * * @param value * allowed object is * {@link String } * */ public void setExternalId(String value) { this.externalId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy