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

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

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

 * <complexType name="OpportunityCompetitors">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="competitor" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="notes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="strategy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="winner" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OpportunityCompetitors", namespace = "urn:sales_2023_1.transactions.webservices.netsuite.com", propOrder = { "competitor", "url", "notes", "strategy", "winner" }) public class OpportunityCompetitors { protected RecordRef competitor; protected String url; protected String notes; protected String strategy; protected Boolean winner; /** * Gets the value of the competitor property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getCompetitor() { return competitor; } /** * Sets the value of the competitor property. * * @param value * allowed object is * {@link RecordRef } * */ public void setCompetitor(RecordRef value) { this.competitor = value; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } /** * Gets the value of the notes property. * * @return * possible object is * {@link String } * */ public String getNotes() { return notes; } /** * Sets the value of the notes property. * * @param value * allowed object is * {@link String } * */ public void setNotes(String value) { this.notes = value; } /** * Gets the value of the strategy property. * * @return * possible object is * {@link String } * */ public String getStrategy() { return strategy; } /** * Sets the value of the strategy property. * * @param value * allowed object is * {@link String } * */ public void setStrategy(String value) { this.strategy = value; } /** * Gets the value of the winner property. * * @return * possible object is * {@link Boolean } * */ public Boolean isWinner() { return winner; } /** * Sets the value of the winner property. * * @param value * allowed object is * {@link Boolean } * */ public void setWinner(Boolean value) { this.winner = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy