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

tsg.ns.wsdl.coop.IssueVersion 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 IssueVersion complex type. * *

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

 * <complexType name="IssueVersion">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="primary" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="version" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="build" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IssueVersion", namespace = "urn:support_2023_1.lists.webservices.netsuite.com", propOrder = { "primary", "version", "build" }) public class IssueVersion { protected Boolean primary; protected RecordRef version; protected RecordRef build; /** * Gets the value of the primary property. * * @return * possible object is * {@link Boolean } * */ public Boolean isPrimary() { return primary; } /** * Sets the value of the primary property. * * @param value * allowed object is * {@link Boolean } * */ public void setPrimary(Boolean value) { this.primary = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link RecordRef } * */ public void setVersion(RecordRef value) { this.version = value; } /** * Gets the value of the build property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getBuild() { return build; } /** * Sets the value of the build property. * * @param value * allowed object is * {@link RecordRef } * */ public void setBuild(RecordRef value) { this.build = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy