com.prowidesoftware.swift.model.mx.dic.Action4 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 card acceptor.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Action4", propOrder = {
"actnTp",
"msgToPres"
})
public class Action4 {
@XmlElement(name = "ActnTp", required = true)
@XmlSchemaType(name = "string")
protected ActionType5Code actnTp;
@XmlElement(name = "MsgToPres")
protected ActionMessage2 msgToPres;
/**
* Gets the value of the actnTp property.
*
* @return
* possible object is
* {@link ActionType5Code }
*
*/
public ActionType5Code getActnTp() {
return actnTp;
}
/**
* Sets the value of the actnTp property.
*
* @param value
* allowed object is
* {@link ActionType5Code }
*
*/
public Action4 setActnTp(ActionType5Code value) {
this.actnTp = value;
return this;
}
/**
* Gets the value of the msgToPres property.
*
* @return
* possible object is
* {@link ActionMessage2 }
*
*/
public ActionMessage2 getMsgToPres() {
return msgToPres;
}
/**
* Sets the value of the msgToPres property.
*
* @param value
* allowed object is
* {@link ActionMessage2 }
*
*/
public Action4 setMsgToPres(ActionMessage2 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