com.prowidesoftware.swift.model.mx.dic.CardEntry4 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 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;
/**
* Card transaction entry.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CardEntry4", propOrder = {
"card",
"poi",
"aggtdNtry",
"prePdAcct"
})
public class CardEntry4 {
@XmlElement(name = "Card")
protected PaymentCard4 card;
@XmlElement(name = "POI")
protected PointOfInteraction1 poi;
@XmlElement(name = "AggtdNtry")
protected CardAggregated2 aggtdNtry;
@XmlElement(name = "PrePdAcct")
protected CashAccount38 prePdAcct;
/**
* Gets the value of the card property.
*
* @return
* possible object is
* {@link PaymentCard4 }
*
*/
public PaymentCard4 getCard() {
return card;
}
/**
* Sets the value of the card property.
*
* @param value
* allowed object is
* {@link PaymentCard4 }
*
*/
public CardEntry4 setCard(PaymentCard4 value) {
this.card = value;
return this;
}
/**
* Gets the value of the poi property.
*
* @return
* possible object is
* {@link PointOfInteraction1 }
*
*/
public PointOfInteraction1 getPOI() {
return poi;
}
/**
* Sets the value of the poi property.
*
* @param value
* allowed object is
* {@link PointOfInteraction1 }
*
*/
public CardEntry4 setPOI(PointOfInteraction1 value) {
this.poi = value;
return this;
}
/**
* Gets the value of the aggtdNtry property.
*
* @return
* possible object is
* {@link CardAggregated2 }
*
*/
public CardAggregated2 getAggtdNtry() {
return aggtdNtry;
}
/**
* Sets the value of the aggtdNtry property.
*
* @param value
* allowed object is
* {@link CardAggregated2 }
*
*/
public CardEntry4 setAggtdNtry(CardAggregated2 value) {
this.aggtdNtry = value;
return this;
}
/**
* Gets the value of the prePdAcct property.
*
* @return
* possible object is
* {@link CashAccount38 }
*
*/
public CashAccount38 getPrePdAcct() {
return prePdAcct;
}
/**
* Sets the value of the prePdAcct property.
*
* @param value
* allowed object is
* {@link CashAccount38 }
*
*/
public CardEntry4 setPrePdAcct(CashAccount38 value) {
this.prePdAcct = 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