io.github.atkawa7.kannel.sms.xml.Message 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 message complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="message">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="submit" type="{}submit"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "message", propOrder = {
})
public class Message {
@XmlElement(required = true)
protected Submit submit;
/**
* Gets the value of the submit property.
*
* @return
* possible object is
* {@link Submit }
*
*/
public Submit getSubmit() {
return submit;
}
/**
* Sets the value of the submit property.
*
* @param value
* allowed object is
* {@link Submit }
*
*/
public void setSubmit(Submit value) {
this.submit = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy