
com.prowidesoftware.swift.model.mx.dic.Vehicle2 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Additional information related to a vehicle.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Vehicle2", propOrder = {
"tp",
"ntryMd",
"data"
})
public class Vehicle2 {
@XmlElement(name = "Tp")
protected String tp;
@XmlElement(name = "NtryMd")
@XmlSchemaType(name = "string")
protected CardDataReading5Code ntryMd;
@XmlElement(name = "Data", required = true)
protected String data;
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Vehicle2 setTp(String value) {
this.tp = value;
return this;
}
/**
* Gets the value of the ntryMd property.
*
* @return
* possible object is
* {@link CardDataReading5Code }
*
*/
public CardDataReading5Code getNtryMd() {
return ntryMd;
}
/**
* Sets the value of the ntryMd property.
*
* @param value
* allowed object is
* {@link CardDataReading5Code }
*
*/
public Vehicle2 setNtryMd(CardDataReading5Code value) {
this.ntryMd = value;
return this;
}
/**
* Gets the value of the data property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getData() {
return data;
}
/**
* Sets the value of the data property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Vehicle2 setData(String value) {
this.data = value;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy