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

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

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

 * <complexType name="PhoneCallContact">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="company" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="contact" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="phone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PhoneCallContact", namespace = "urn:scheduling_2023_1.activities.webservices.netsuite.com", propOrder = { "company", "contact", "phone", "email" }) public class PhoneCallContact { protected RecordRef company; protected RecordRef contact; protected String phone; protected String email; /** * 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; } /** * Gets the value of the phone property. * * @return * possible object is * {@link String } * */ public String getPhone() { return phone; } /** * Sets the value of the phone property. * * @param value * allowed object is * {@link String } * */ public void setPhone(String value) { this.phone = value; } /** * Gets the value of the email property. * * @return * possible object is * {@link String } * */ public String getEmail() { return email; } /** * Sets the value of the email property. * * @param value * allowed object is * {@link String } * */ public void setEmail(String value) { this.email = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy