package com.newrelic.apm.enterprise.bmc; import javax.xml.bind.annotation.*; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="startDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="endDate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="classNames" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="imname" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="slotsList" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "startDate", "endDate", "classNames", "imname", "slotsList" }) @XmlRootElement(name = "QueryEventsByDate") public class QueryEventsByDate { @XmlElement(required = true, nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar startDate; @XmlElement(required = true, nillable = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar endDate; @XmlElement(required = true, nillable = true) protected String classNames; @XmlElement(required = true, nillable = true) protected String imname; @XmlElement(required = true, nillable = true) protected String slotsList; /** * Gets the value of the startDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartDate(XMLGregorianCalendar value) { this.startDate = value; } /** * Gets the value of the endDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEndDate() { return endDate; } /** * Sets the value of the endDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setEndDate(XMLGregorianCalendar value) { this.endDate = value; } /** * Gets the value of the classNames property. * * @return * possible object is * {@link String } * */ public String getClassNames() { return classNames; } /** * Sets the value of the classNames property. * * @param value * allowed object is * {@link String } * */ public void setClassNames(String value) { this.classNames = value; } /** * Gets the value of the imname property. * * @return * possible object is * {@link String } * */ public String getImname() { return imname; } /** * Sets the value of the imname property. * * @param value * allowed object is * {@link String } * */ public void setImname(String value) { this.imname = value; } /** * Gets the value of the slotsList property. * * @return * possible object is * {@link String } * */ public String getSlotsList() { return slotsList; } /** * Sets the value of the slotsList property. * * @param value * allowed object is * {@link String } * */ public void setSlotsList(String value) { this.slotsList = value; } }