
com.prowidesoftware.swift.model.mx.dic.CardPaymentEnvironment28 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 given in a response to a request in a batch.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CardPaymentEnvironment28", propOrder = {
"acqrrId",
"mrchntId",
"poiId",
"prtctdCardData",
"plainCardData"
})
public class CardPaymentEnvironment28 {
@XmlElement(name = "AcqrrId")
protected GenericIdentification32 acqrrId;
@XmlElement(name = "MrchntId")
protected GenericIdentification32 mrchntId;
@XmlElement(name = "POIId")
protected GenericIdentification32 poiId;
@XmlElement(name = "PrtctdCardData")
protected ContentInformationType7 prtctdCardData;
@XmlElement(name = "PlainCardData")
protected PlainCardData3 plainCardData;
/**
* Gets the value of the acqrrId property.
*
* @return
* possible object is
* {@link GenericIdentification32 }
*
*/
public GenericIdentification32 getAcqrrId() {
return acqrrId;
}
/**
* Sets the value of the acqrrId property.
*
* @param value
* allowed object is
* {@link GenericIdentification32 }
*
*/
public CardPaymentEnvironment28 setAcqrrId(GenericIdentification32 value) {
this.acqrrId = value;
return this;
}
/**
* Gets the value of the mrchntId property.
*
* @return
* possible object is
* {@link GenericIdentification32 }
*
*/
public GenericIdentification32 getMrchntId() {
return mrchntId;
}
/**
* Sets the value of the mrchntId property.
*
* @param value
* allowed object is
* {@link GenericIdentification32 }
*
*/
public CardPaymentEnvironment28 setMrchntId(GenericIdentification32 value) {
this.mrchntId = value;
return this;
}
/**
* Gets the value of the poiId property.
*
* @return
* possible object is
* {@link GenericIdentification32 }
*
*/
public GenericIdentification32 getPOIId() {
return poiId;
}
/**
* Sets the value of the poiId property.
*
* @param value
* allowed object is
* {@link GenericIdentification32 }
*
*/
public CardPaymentEnvironment28 setPOIId(GenericIdentification32 value) {
this.poiId = value;
return this;
}
/**
* Gets the value of the prtctdCardData property.
*
* @return
* possible object is
* {@link ContentInformationType7 }
*
*/
public ContentInformationType7 getPrtctdCardData() {
return prtctdCardData;
}
/**
* Sets the value of the prtctdCardData property.
*
* @param value
* allowed object is
* {@link ContentInformationType7 }
*
*/
public CardPaymentEnvironment28 setPrtctdCardData(ContentInformationType7 value) {
this.prtctdCardData = value;
return this;
}
/**
* Gets the value of the plainCardData property.
*
* @return
* possible object is
* {@link PlainCardData3 }
*
*/
public PlainCardData3 getPlainCardData() {
return plainCardData;
}
/**
* Sets the value of the plainCardData property.
*
* @param value
* allowed object is
* {@link PlainCardData3 }
*
*/
public CardPaymentEnvironment28 setPlainCardData(PlainCardData3 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