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

com.bytekast.netsuite.client.CustomerSalesTeam2 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.XmlType;


/**
 * 

Java class for CustomerSalesTeam complex type. * *

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

 * <complexType name="CustomerSalesTeam">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="employee" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="salesRole" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="isPrimary" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="contribution" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomerSalesTeam", namespace = "urn:relationships_2017_1.lists.webservices.netsuite.com", propOrder = { "employee", "salesRole", "isPrimary", "contribution" }) public class CustomerSalesTeam2 implements Serializable { protected RecordRef employee; protected RecordRef salesRole; protected Boolean isPrimary; protected Double contribution; /** * Gets the value of the employee property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getEmployee() { return employee; } /** * Sets the value of the employee property. * * @param value * allowed object is * {@link RecordRef } * */ public void setEmployee(RecordRef value) { this.employee = value; } /** * Gets the value of the salesRole property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getSalesRole() { return salesRole; } /** * Sets the value of the salesRole property. * * @param value * allowed object is * {@link RecordRef } * */ public void setSalesRole(RecordRef value) { this.salesRole = value; } /** * Gets the value of the isPrimary property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsPrimary() { return isPrimary; } /** * Sets the value of the isPrimary property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsPrimary(Boolean value) { this.isPrimary = value; } /** * Gets the value of the contribution property. * * @return * possible object is * {@link Double } * */ public Double getContribution() { return contribution; } /** * Sets the value of the contribution property. * * @param value * allowed object is * {@link Double } * */ public void setContribution(Double value) { this.contribution = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy