io.github.atkawa7.kannel.sms.xml.Dcs 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 dcs complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="dcs">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="mclass" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="coding" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="mwi" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="compress" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="alt-dcs" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "dcs", propOrder = {
})
public class Dcs {
protected Integer mclass;
protected Integer coding;
protected Integer mwi;
protected Integer compress;
@XmlElement(name = "alt-dcs")
protected Integer altDcs;
/**
* Gets the value of the mclass property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMclass() {
return mclass;
}
/**
* Sets the value of the mclass property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMclass(Integer value) {
this.mclass = value;
}
/**
* Gets the value of the coding property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCoding() {
return coding;
}
/**
* Sets the value of the coding property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCoding(Integer value) {
this.coding = value;
}
/**
* Gets the value of the mwi property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMwi() {
return mwi;
}
/**
* Sets the value of the mwi property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMwi(Integer value) {
this.mwi = value;
}
/**
* Gets the value of the compress property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getCompress() {
return compress;
}
/**
* Sets the value of the compress property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setCompress(Integer value) {
this.compress = value;
}
/**
* Gets the value of the altDcs property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getAltDcs() {
return altDcs;
}
/**
* Sets the value of the altDcs property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setAltDcs(Integer value) {
this.altDcs = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy