io.github.atkawa7.kannel.sms.xml.Submit 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.XmlType;
/**
* Java class for submit complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="submit">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="da" type="{}address" minOccurs="0"/>
* <element name="oa" type="{}address" minOccurs="0"/>
* <element name="ud" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="udh" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="dcs" type="{}dcs" minOccurs="0"/>
* <element name="pid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="rpi" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="vp" type="{}time" minOccurs="0"/>
* <element name="timing" type="{}time" minOccurs="0"/>
* <element name="statusrequest" type="{}statusrequest" minOccurs="0"/>
* <element name="from" type="{}from" minOccurs="0"/>
* <element name="to" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "submit", propOrder = {
})
public class Submit {
protected Address da;
protected Address oa;
protected String ud;
protected String udh;
protected Dcs dcs;
protected Integer pid;
protected Integer rpi;
protected Time vp;
protected Time timing;
protected Statusrequest statusrequest;
protected From from;
protected String to;
/**
* Gets the value of the da property.
*
* @return
* possible object is
* {@link Address }
*
*/
public Address getDa() {
return da;
}
/**
* Sets the value of the da property.
*
* @param value
* allowed object is
* {@link Address }
*
*/
public void setDa(Address value) {
this.da = value;
}
/**
* Gets the value of the oa property.
*
* @return
* possible object is
* {@link Address }
*
*/
public Address getOa() {
return oa;
}
/**
* Sets the value of the oa property.
*
* @param value
* allowed object is
* {@link Address }
*
*/
public void setOa(Address value) {
this.oa = value;
}
/**
* Gets the value of the ud property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUd() {
return ud;
}
/**
* Sets the value of the ud property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUd(String value) {
this.ud = value;
}
/**
* Gets the value of the udh property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUdh() {
return udh;
}
/**
* Sets the value of the udh property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUdh(String value) {
this.udh = value;
}
/**
* Gets the value of the dcs property.
*
* @return
* possible object is
* {@link Dcs }
*
*/
public Dcs getDcs() {
return dcs;
}
/**
* Sets the value of the dcs property.
*
* @param value
* allowed object is
* {@link Dcs }
*
*/
public void setDcs(Dcs value) {
this.dcs = value;
}
/**
* Gets the value of the pid property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPid() {
return pid;
}
/**
* Sets the value of the pid property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPid(Integer value) {
this.pid = value;
}
/**
* Gets the value of the rpi property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getRpi() {
return rpi;
}
/**
* Sets the value of the rpi property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setRpi(Integer value) {
this.rpi = value;
}
/**
* Gets the value of the vp property.
*
* @return
* possible object is
* {@link Time }
*
*/
public Time getVp() {
return vp;
}
/**
* Sets the value of the vp property.
*
* @param value
* allowed object is
* {@link Time }
*
*/
public void setVp(Time value) {
this.vp = value;
}
/**
* Gets the value of the timing property.
*
* @return
* possible object is
* {@link Time }
*
*/
public Time getTiming() {
return timing;
}
/**
* Sets the value of the timing property.
*
* @param value
* allowed object is
* {@link Time }
*
*/
public void setTiming(Time value) {
this.timing = value;
}
/**
* Gets the value of the statusrequest property.
*
* @return
* possible object is
* {@link Statusrequest }
*
*/
public Statusrequest getStatusrequest() {
return statusrequest;
}
/**
* Sets the value of the statusrequest property.
*
* @param value
* allowed object is
* {@link Statusrequest }
*
*/
public void setStatusrequest(Statusrequest value) {
this.statusrequest = value;
}
/**
* Gets the value of the from property.
*
* @return
* possible object is
* {@link From }
*
*/
public From getFrom() {
return from;
}
/**
* Sets the value of the from property.
*
* @param value
* allowed object is
* {@link From }
*
*/
public void setFrom(From value) {
this.from = value;
}
/**
* Gets the value of the to property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTo() {
return to;
}
/**
* Sets the value of the to property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTo(String value) {
this.to = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy