com.prowidesoftware.swift.model.mx.dic.Action3 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.XmlSchemaType;
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;
/**
* Set of actions to be performed by the POI (Point Of Interaction) system.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Action3", propOrder = {
"actnTp",
"msgToPres"
})
public class Action3 {
@XmlElement(name = "ActnTp", required = true)
@XmlSchemaType(name = "string")
protected ActionType3Code actnTp;
@XmlElement(name = "MsgToPres")
protected ActionMessage1 msgToPres;
/**
* Gets the value of the actnTp property.
*
* @return
* possible object is
* {@link ActionType3Code }
*
*/
public ActionType3Code getActnTp() {
return actnTp;
}
/**
* Sets the value of the actnTp property.
*
* @param value
* allowed object is
* {@link ActionType3Code }
*
*/
public Action3 setActnTp(ActionType3Code value) {
this.actnTp = value;
return this;
}
/**
* Gets the value of the msgToPres property.
*
* @return
* possible object is
* {@link ActionMessage1 }
*
*/
public ActionMessage1 getMsgToPres() {
return msgToPres;
}
/**
* Sets the value of the msgToPres property.
*
* @param value
* allowed object is
* {@link ActionMessage1 }
*
*/
public Action3 setMsgToPres(ActionMessage1 value) {
this.msgToPres = 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