com.prowidesoftware.swift.model.mx.dic.DeviceInputRequest2 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.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;
/**
* Content of the Input Request message.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DeviceInputRequest2", propOrder = {
"dispOutpt",
"inptData"
})
public class DeviceInputRequest2 {
@XmlElement(name = "DispOutpt")
protected ActionMessage7 dispOutpt;
@XmlElement(name = "InptData", required = true)
protected InputData2 inptData;
/**
* Gets the value of the dispOutpt property.
*
* @return
* possible object is
* {@link ActionMessage7 }
*
*/
public ActionMessage7 getDispOutpt() {
return dispOutpt;
}
/**
* Sets the value of the dispOutpt property.
*
* @param value
* allowed object is
* {@link ActionMessage7 }
*
*/
public DeviceInputRequest2 setDispOutpt(ActionMessage7 value) {
this.dispOutpt = value;
return this;
}
/**
* Gets the value of the inptData property.
*
* @return
* possible object is
* {@link InputData2 }
*
*/
public InputData2 getInptData() {
return inptData;
}
/**
* Sets the value of the inptData property.
*
* @param value
* allowed object is
* {@link InputData2 }
*
*/
public DeviceInputRequest2 setInptData(InputData2 value) {
this.inptData = 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