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

com.bytekast.netsuite.client.UpdateInviteeStatusReference 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.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for UpdateInviteeStatusReference complex type. * *

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

 * <complexType name="UpdateInviteeStatusReference">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="eventId" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef"/>
 *         <element name="responseCode" type="{urn:types.core_2017_1.platform.webservices.netsuite.com}CalendarEventAttendeeResponse"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UpdateInviteeStatusReference", namespace = "urn:core_2017_1.platform.webservices.netsuite.com", propOrder = { "eventId", "responseCode" }) public class UpdateInviteeStatusReference implements Serializable { @XmlElement(required = true) protected RecordRef eventId; @XmlElement(required = true) @XmlSchemaType(name = "string") protected CalendarEventAttendeeResponse responseCode; /** * Gets the value of the eventId property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getEventId() { return eventId; } /** * Sets the value of the eventId property. * * @param value * allowed object is * {@link RecordRef } * */ public void setEventId(RecordRef value) { this.eventId = value; } /** * Gets the value of the responseCode property. * * @return * possible object is * {@link CalendarEventAttendeeResponse } * */ public CalendarEventAttendeeResponse getResponseCode() { return responseCode; } /** * Sets the value of the responseCode property. * * @param value * allowed object is * {@link CalendarEventAttendeeResponse } * */ public void setResponseCode(CalendarEventAttendeeResponse value) { this.responseCode = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy