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="imname" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="componentId" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="slotsList" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="trueCause" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "imname", "componentId", "slotsList", "trueCause" }) @XmlRootElement(name = "QueryModelPossibleRootCauses") public class QueryModelPossibleRootCauses { @XmlElement(required = true, nillable = true) protected String imname; @XmlElement(required = true, nillable = true) protected String componentId; @XmlElement(required = true, nillable = true) protected String slotsList; protected boolean trueCause; /** * 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 componentId property. * * @return * possible object is * {@link String } * */ public String getComponentId() { return componentId; } /** * Sets the value of the componentId property. * * @param value * allowed object is * {@link String } * */ public void setComponentId(String value) { this.componentId = 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; } /** * Gets the value of the trueCause property. * */ public boolean isTrueCause() { return trueCause; } /** * Sets the value of the trueCause property. * */ public void setTrueCause(boolean value) { this.trueCause = value; } }