io.github.atkawa7.kannel.sms.xml.Statusrequest Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.04.21 at 05:47:02 AM UTC
//
package io.github.atkawa7.kannel.sms.xml;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for statusrequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="statusrequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="dlr-mask" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="dlr-url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "statusrequest", propOrder = {
})
public class Statusrequest {
@XmlElement(name = "dlr-mask")
protected Integer dlrMask;
@XmlElement(name = "dlr-url")
protected String dlrUrl;
/**
* Gets the value of the dlrMask property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getDlrMask() {
return dlrMask;
}
/**
* Sets the value of the dlrMask property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setDlrMask(Integer value) {
this.dlrMask = value;
}
/**
* Gets the value of the dlrUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDlrUrl() {
return dlrUrl;
}
/**
* Sets the value of the dlrUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDlrUrl(String value) {
this.dlrUrl = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy