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

com.bytekast.netsuite.client.InitializeRecord Maven / Gradle / Ivy

The newest version!

package com.bytekast.netsuite.client;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for InitializeRecord complex type. * *

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

 * <complexType name="InitializeRecord">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="type" type="{urn:types.core_2017_1.platform.webservices.netsuite.com}InitializeType"/>
 *         <element name="reference" type="{urn:core_2017_1.platform.webservices.netsuite.com}InitializeRef" minOccurs="0"/>
 *         <element name="auxReference" type="{urn:core_2017_1.platform.webservices.netsuite.com}InitializeAuxRef" minOccurs="0"/>
 *         <element name="referenceList" type="{urn:core_2017_1.platform.webservices.netsuite.com}InitializeRefList" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InitializeRecord", namespace = "urn:core_2017_1.platform.webservices.netsuite.com", propOrder = { "type", "reference", "auxReference", "referenceList" }) public class InitializeRecord implements Serializable { @XmlElement(required = true) @XmlSchemaType(name = "string") protected InitializeType type; protected InitializeRef reference; protected InitializeAuxRef auxReference; protected InitializeRefList referenceList; /** * Gets the value of the type property. * * @return * possible object is * {@link InitializeType } * */ public InitializeType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link InitializeType } * */ public void setType(InitializeType value) { this.type = value; } /** * Gets the value of the reference property. * * @return * possible object is * {@link InitializeRef } * */ public InitializeRef getReference() { return reference; } /** * Sets the value of the reference property. * * @param value * allowed object is * {@link InitializeRef } * */ public void setReference(InitializeRef value) { this.reference = value; } /** * Gets the value of the auxReference property. * * @return * possible object is * {@link InitializeAuxRef } * */ public InitializeAuxRef getAuxReference() { return auxReference; } /** * Sets the value of the auxReference property. * * @param value * allowed object is * {@link InitializeAuxRef } * */ public void setAuxReference(InitializeAuxRef value) { this.auxReference = value; } /** * Gets the value of the referenceList property. * * @return * possible object is * {@link InitializeRefList } * */ public InitializeRefList getReferenceList() { return referenceList; } /** * Sets the value of the referenceList property. * * @param value * allowed object is * {@link InitializeRefList } * */ public void setReferenceList(InitializeRefList value) { this.referenceList = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy