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

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


/**
 * 

Java class for IssueRelatedIssues complex type. * *

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

 * <complexType name="IssueRelatedIssues">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="relationship" type="{urn:types.support_2023_1.lists.webservices.netsuite.com}IssueRelationship" minOccurs="0"/>
 *         <element name="issueNumber" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="relationshipComment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IssueRelatedIssues", namespace = "urn:support_2023_1.lists.webservices.netsuite.com", propOrder = { "relationship", "issueNumber", "relationshipComment" }) public class IssueRelatedIssues { @XmlSchemaType(name = "string") protected IssueRelationship relationship; protected RecordRef issueNumber; protected String relationshipComment; /** * Gets the value of the relationship property. * * @return * possible object is * {@link IssueRelationship } * */ public IssueRelationship getRelationship() { return relationship; } /** * Sets the value of the relationship property. * * @param value * allowed object is * {@link IssueRelationship } * */ public void setRelationship(IssueRelationship value) { this.relationship = value; } /** * Gets the value of the issueNumber property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getIssueNumber() { return issueNumber; } /** * Sets the value of the issueNumber property. * * @param value * allowed object is * {@link RecordRef } * */ public void setIssueNumber(RecordRef value) { this.issueNumber = value; } /** * Gets the value of the relationshipComment property. * * @return * possible object is * {@link String } * */ public String getRelationshipComment() { return relationshipComment; } /** * Sets the value of the relationshipComment property. * * @param value * allowed object is * {@link String } * */ public void setRelationshipComment(String value) { this.relationshipComment = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy