com.prowidesoftware.swift.model.mx.dic.ATMCommand5 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import java.time.OffsetDateTime;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
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 jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;
/**
* Command result for reinitialization of the transaction counters.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ATMCommand5", propOrder = {
"tp",
"reqrdDtTm",
"prcdDtTm",
"cmdId",
"rslt",
"addtlErrInf"
})
public class ATMCommand5 {
@XmlElement(name = "Tp", required = true)
@XmlSchemaType(name = "string")
protected ATMCommand3Code tp;
@XmlElement(name = "ReqrdDtTm", type = String.class)
@XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected OffsetDateTime reqrdDtTm;
@XmlElement(name = "PrcdDtTm", required = true, type = String.class)
@XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected OffsetDateTime prcdDtTm;
@XmlElement(name = "CmdId")
protected ATMCommandIdentification1 cmdId;
@XmlElement(name = "Rslt", required = true)
@XmlSchemaType(name = "string")
protected TerminalManagementActionResult2Code rslt;
@XmlElement(name = "AddtlErrInf")
protected String addtlErrInf;
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link ATMCommand3Code }
*
*/
public ATMCommand3Code getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link ATMCommand3Code }
*
*/
public ATMCommand5 setTp(ATMCommand3Code value) {
this.tp = value;
return this;
}
/**
* Gets the value of the reqrdDtTm property.
*
* @return
* possible object is
* {@link String }
*
*/
public OffsetDateTime getReqrdDtTm() {
return reqrdDtTm;
}
/**
* Sets the value of the reqrdDtTm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ATMCommand5 setReqrdDtTm(OffsetDateTime value) {
this.reqrdDtTm = value;
return this;
}
/**
* Gets the value of the prcdDtTm property.
*
* @return
* possible object is
* {@link String }
*
*/
public OffsetDateTime getPrcdDtTm() {
return prcdDtTm;
}
/**
* Sets the value of the prcdDtTm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ATMCommand5 setPrcdDtTm(OffsetDateTime value) {
this.prcdDtTm = value;
return this;
}
/**
* Gets the value of the cmdId property.
*
* @return
* possible object is
* {@link ATMCommandIdentification1 }
*
*/
public ATMCommandIdentification1 getCmdId() {
return cmdId;
}
/**
* Sets the value of the cmdId property.
*
* @param value
* allowed object is
* {@link ATMCommandIdentification1 }
*
*/
public ATMCommand5 setCmdId(ATMCommandIdentification1 value) {
this.cmdId = value;
return this;
}
/**
* Gets the value of the rslt property.
*
* @return
* possible object is
* {@link TerminalManagementActionResult2Code }
*
*/
public TerminalManagementActionResult2Code getRslt() {
return rslt;
}
/**
* Sets the value of the rslt property.
*
* @param value
* allowed object is
* {@link TerminalManagementActionResult2Code }
*
*/
public ATMCommand5 setRslt(TerminalManagementActionResult2Code value) {
this.rslt = value;
return this;
}
/**
* Gets the value of the addtlErrInf property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddtlErrInf() {
return addtlErrInf;
}
/**
* Sets the value of the addtlErrInf property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ATMCommand5 setAddtlErrInf(String value) {
this.addtlErrInf = 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