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

tsg.ns.wsdl.coop.CustomerSubsidiaryRelationship 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.XmlType;


/**
 * 

Java class for CustomerSubsidiaryRelationship complex type. * *

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

 * <complexType name="CustomerSubsidiaryRelationship">
 *   <complexContent>
 *     <extension base="{urn:core_2023_1.platform.webservices.netsuite.com}Record">
 *       <sequence>
 *         <element name="entity" 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="isPrimarySub" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="primaryCurrency" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="customFieldList" type="{urn:core_2023_1.platform.webservices.netsuite.com}CustomFieldList" 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 = "CustomerSubsidiaryRelationship", namespace = "urn:relationships_2023_1.lists.webservices.netsuite.com", propOrder = { "entity", "subsidiary", "isPrimarySub", "primaryCurrency", "customFieldList" }) public class CustomerSubsidiaryRelationship extends Record { protected RecordRef entity; protected RecordRef subsidiary; protected Boolean isPrimarySub; protected RecordRef primaryCurrency; protected CustomFieldList customFieldList; @XmlAttribute(name = "internalId") protected String internalId; @XmlAttribute(name = "externalId") protected String externalId; /** * Gets the value of the entity property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getEntity() { return entity; } /** * Sets the value of the entity property. * * @param value * allowed object is * {@link RecordRef } * */ public void setEntity(RecordRef value) { this.entity = 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 isPrimarySub property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsPrimarySub() { return isPrimarySub; } /** * Sets the value of the isPrimarySub property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsPrimarySub(Boolean value) { this.isPrimarySub = value; } /** * Gets the value of the primaryCurrency property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getPrimaryCurrency() { return primaryCurrency; } /** * Sets the value of the primaryCurrency property. * * @param value * allowed object is * {@link RecordRef } * */ public void setPrimaryCurrency(RecordRef value) { this.primaryCurrency = value; } /** * Gets the value of the customFieldList property. * * @return * possible object is * {@link CustomFieldList } * */ public CustomFieldList getCustomFieldList() { return customFieldList; } /** * Sets the value of the customFieldList property. * * @param value * allowed object is * {@link CustomFieldList } * */ public void setCustomFieldList(CustomFieldList value) { this.customFieldList = 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