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="errorCode" type="{http://www.w3.org/2001/XMLSchema}int"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "errorCode" }) @XmlRootElement(name = "SetManualStatus_output") public class SetManualStatusOutput { @XmlElement(required = true, type = Integer.class, nillable = true) protected Integer errorCode; /** * Gets the value of the errorCode property. * * @return * possible object is * {@link Integer } * */ public Integer getErrorCode() { return errorCode; } /** * Sets the value of the errorCode property. * * @param value * allowed object is * {@link Integer } * */ public void setErrorCode(Integer value) { this.errorCode = value; } }