
com.prowidesoftware.swift.model.mx.dic.ATMEnvironment5 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.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 = "ATMEnvironment5", propOrder = {
"atm",
"cstmr",
"prtctdCardData",
"plainCardData"
})
public class ATMEnvironment5 {
@XmlElement(name = "ATM", required = true)
protected AutomatedTellerMachine2 atm;
@XmlElement(name = "Cstmr", required = true)
protected ATMCustomer2 cstmr;
@XmlElement(name = "PrtctdCardData")
protected ContentInformationType10 prtctdCardData;
@XmlElement(name = "PlainCardData")
protected PlainCardData14 plainCardData;
/**
* Gets the value of the atm property.
*
* @return
* possible object is
* {@link AutomatedTellerMachine2 }
*
*/
public AutomatedTellerMachine2 getATM() {
return atm;
}
/**
* Sets the value of the atm property.
*
* @param value
* allowed object is
* {@link AutomatedTellerMachine2 }
*
*/
public ATMEnvironment5 setATM(AutomatedTellerMachine2 value) {
this.atm = value;
return this;
}
/**
* Gets the value of the cstmr property.
*
* @return
* possible object is
* {@link ATMCustomer2 }
*
*/
public ATMCustomer2 getCstmr() {
return cstmr;
}
/**
* Sets the value of the cstmr property.
*
* @param value
* allowed object is
* {@link ATMCustomer2 }
*
*/
public ATMEnvironment5 setCstmr(ATMCustomer2 value) {
this.cstmr = value;
return this;
}
/**
* Gets the value of the prtctdCardData property.
*
* @return
* possible object is
* {@link ContentInformationType10 }
*
*/
public ContentInformationType10 getPrtctdCardData() {
return prtctdCardData;
}
/**
* Sets the value of the prtctdCardData property.
*
* @param value
* allowed object is
* {@link ContentInformationType10 }
*
*/
public ATMEnvironment5 setPrtctdCardData(ContentInformationType10 value) {
this.prtctdCardData = value;
return this;
}
/**
* Gets the value of the plainCardData property.
*
* @return
* possible object is
* {@link PlainCardData14 }
*
*/
public PlainCardData14 getPlainCardData() {
return plainCardData;
}
/**
* Sets the value of the plainCardData property.
*
* @param value
* allowed object is
* {@link PlainCardData14 }
*
*/
public ATMEnvironment5 setPlainCardData(PlainCardData14 value) {
this.plainCardData = 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