package ocpp.v15.cs;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Defines the StartTransaction.conf PDU
*
* <p>Java class for StartTransactionResponse complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="StartTransactionResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="transactionId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="idTagInfo" type="{urn://Ocpp/Cs/2012/06/}IdTagInfo"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StartTransactionResponse", propOrder = {
"transactionId",
"idTagInfo"
})
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-06-12T04:15:01+12:00", comments = "JAXB RI v2.2.4-2")
public class StartTransactionResponse {
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-06-12T04:15:01+12:00", comments = "JAXB RI v2.2.4-2")
protected int transactionId;
@XmlElement(required = true)
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-06-12T04:15:01+12:00", comments = "JAXB RI v2.2.4-2")
protected IdTagInfo idTagInfo;
/**
* Gets the value of the transactionId property.
*
*/
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-06-12T04:15:01+12:00", comments = "JAXB RI v2.2.4-2")
public int getTransactionId() {
return transactionId;
}
/**
* Sets the value of the transactionId property.
*
*/
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-06-12T04:15:01+12:00", comments = "JAXB RI v2.2.4-2")
public void setTransactionId(int value) {
this.transactionId = value;
}
/**
* Gets the value of the idTagInfo property.
*
* @return
* possible object is
* {@link IdTagInfo }
*
*/
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-06-12T04:15:01+12:00", comments = "JAXB RI v2.2.4-2")
public IdTagInfo getIdTagInfo() {
return idTagInfo;
}
/**
* Sets the value of the idTagInfo property.
*
* @param value
* allowed object is
* {@link IdTagInfo }
*
*/
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2015-06-12T04:15:01+12:00", comments = "JAXB RI v2.2.4-2")
public void setIdTagInfo(IdTagInfo value) {
this.idTagInfo = value;
}
}