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

com.bytekast.netsuite.client.TaskContact 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 TaskContact complex type. * *

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

 * <complexType name="TaskContact">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="company" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="contact" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TaskContact", namespace = "urn:scheduling_2017_1.activities.webservices.netsuite.com", propOrder = { "company", "contact" }) public class TaskContact implements Serializable { protected RecordRef company; protected RecordRef contact; /** * Gets the value of the company property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getCompany() { return company; } /** * Sets the value of the company property. * * @param value * allowed object is * {@link RecordRef } * */ public void setCompany(RecordRef value) { this.company = value; } /** * Gets the value of the contact property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getContact() { return contact; } /** * Sets the value of the contact property. * * @param value * allowed object is * {@link RecordRef } * */ public void setContact(RecordRef value) { this.contact = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy