package com.newrelic.apm.enterprise.bmc; import javax.xml.bind.annotation.*; /** * <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="eventId" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="imname" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "eventId", "imname" }) @XmlRootElement(name = "QueryEventByID") public class QueryEventByID { @XmlElement(required = true, nillable = true) protected String eventId; @XmlElement(required = true, nillable = true) protected String imname; /** * Gets the value of the eventId property. * * @return * possible object is * {@link String } * */ public String getEventId() { return eventId; } /** * Sets the value of the eventId property. * * @param value * allowed object is * {@link String } * */ public void setEventId(String value) { this.eventId = 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; } }