de.gematik.ws.conn.eventservice.v7.SubscriptionRenewal Maven / Gradle / Ivy
The newest version!
package de.gematik.ws.conn.eventservice.v7;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://ws.gematik.de/conn/EventService/v7.2}SubscriptionID"/>
* <element ref="{http://ws.gematik.de/conn/EventService/v7.2}TerminationTime"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"subscriptionID",
"terminationTime"
})
@XmlRootElement(name = "SubscriptionRenewal")
public class SubscriptionRenewal {
@XmlElement(name = "SubscriptionID", required = true)
protected String subscriptionID;
@XmlElement(name = "TerminationTime", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar terminationTime;
/**
* Gets the value of the subscriptionID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSubscriptionID() {
return subscriptionID;
}
/**
* Sets the value of the subscriptionID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubscriptionID(String value) {
this.subscriptionID = value;
}
/**
* Gets the value of the terminationTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTerminationTime() {
return terminationTime;
}
/**
* Sets the value of the terminationTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTerminationTime(XMLGregorianCalendar value) {
this.terminationTime = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy