com.prowidesoftware.swift.model.mx.dic.DeviceInputRequest4 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 = "DeviceInputRequest4", propOrder = {
"dispOutpt",
"inptData"
})
public class DeviceInputRequest4 {
@XmlElement(name = "DispOutpt")
protected ActionMessage9 dispOutpt;
@XmlElement(name = "InptData", required = true)
protected InputData4 inptData;
/**
* Gets the value of the dispOutpt property.
*
* @return
* possible object is
* {@link ActionMessage9 }
*
*/
public ActionMessage9 getDispOutpt() {
return dispOutpt;
}
/**
* Sets the value of the dispOutpt property.
*
* @param value
* allowed object is
* {@link ActionMessage9 }
*
*/
public DeviceInputRequest4 setDispOutpt(ActionMessage9 value) {
this.dispOutpt = value;
return this;
}
/**
* Gets the value of the inptData property.
*
* @return
* possible object is
* {@link InputData4 }
*
*/
public InputData4 getInptData() {
return inptData;
}
/**
* Sets the value of the inptData property.
*
* @param value
* allowed object is
* {@link InputData4 }
*
*/
public DeviceInputRequest4 setInptData(InputData4 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