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

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


/**
 * 

Java class for DeletedRecord complex type. * *

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

 * <complexType name="DeletedRecord">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="deletedDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="record" type="{urn:core_2017_1.platform.webservices.netsuite.com}BaseRef" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DeletedRecord", namespace = "urn:core_2017_1.platform.webservices.netsuite.com", propOrder = { "deletedDate", "record" }) public class DeletedRecord implements Serializable { @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar deletedDate; protected BaseRef record; /** * Gets the value of the deletedDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDeletedDate() { return deletedDate; } /** * Sets the value of the deletedDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDeletedDate(XMLGregorianCalendar value) { this.deletedDate = value; } /** * Gets the value of the record property. * * @return * possible object is * {@link BaseRef } * */ public BaseRef getRecord() { return record; } /** * Sets the value of the record property. * * @param value * allowed object is * {@link BaseRef } * */ public void setRecord(BaseRef value) { this.record = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy