com.prowidesoftware.swift.model.mx.dic.ATMEnvironment6 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;
/**
* Environment of the transaction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ATMEnvironment6", propOrder = {
"acqrr",
"atmMgrId",
"hstgNtty",
"atm"
})
public class ATMEnvironment6 {
@XmlElement(name = "Acqrr")
protected Acquirer7 acqrr;
@XmlElement(name = "ATMMgrId")
protected String atmMgrId;
@XmlElement(name = "HstgNtty")
protected TerminalHosting1 hstgNtty;
@XmlElement(name = "ATM", required = true)
protected AutomatedTellerMachine5 atm;
/**
* Gets the value of the acqrr property.
*
* @return
* possible object is
* {@link Acquirer7 }
*
*/
public Acquirer7 getAcqrr() {
return acqrr;
}
/**
* Sets the value of the acqrr property.
*
* @param value
* allowed object is
* {@link Acquirer7 }
*
*/
public ATMEnvironment6 setAcqrr(Acquirer7 value) {
this.acqrr = value;
return this;
}
/**
* Gets the value of the atmMgrId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getATMMgrId() {
return atmMgrId;
}
/**
* Sets the value of the atmMgrId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ATMEnvironment6 setATMMgrId(String value) {
this.atmMgrId = value;
return this;
}
/**
* Gets the value of the hstgNtty property.
*
* @return
* possible object is
* {@link TerminalHosting1 }
*
*/
public TerminalHosting1 getHstgNtty() {
return hstgNtty;
}
/**
* Sets the value of the hstgNtty property.
*
* @param value
* allowed object is
* {@link TerminalHosting1 }
*
*/
public ATMEnvironment6 setHstgNtty(TerminalHosting1 value) {
this.hstgNtty = value;
return this;
}
/**
* Gets the value of the atm property.
*
* @return
* possible object is
* {@link AutomatedTellerMachine5 }
*
*/
public AutomatedTellerMachine5 getATM() {
return atm;
}
/**
* Sets the value of the atm property.
*
* @param value
* allowed object is
* {@link AutomatedTellerMachine5 }
*
*/
public ATMEnvironment6 setATM(AutomatedTellerMachine5 value) {
this.atm = 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