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