com.prowidesoftware.swift.model.mx.dic.TransactionContext6 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;
/**
* Context of the card payment transaction
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TransactionContext6", propOrder = {
"cardPrgrmmApld",
"sttlmSvc"
})
public class TransactionContext6 {
@XmlElement(name = "CardPrgrmmApld")
protected CardProgrammeMode1 cardPrgrmmApld;
@XmlElement(name = "SttlmSvc")
protected SettlementService2 sttlmSvc;
/**
* Gets the value of the cardPrgrmmApld property.
*
* @return
* possible object is
* {@link CardProgrammeMode1 }
*
*/
public CardProgrammeMode1 getCardPrgrmmApld() {
return cardPrgrmmApld;
}
/**
* Sets the value of the cardPrgrmmApld property.
*
* @param value
* allowed object is
* {@link CardProgrammeMode1 }
*
*/
public TransactionContext6 setCardPrgrmmApld(CardProgrammeMode1 value) {
this.cardPrgrmmApld = value;
return this;
}
/**
* Gets the value of the sttlmSvc property.
*
* @return
* possible object is
* {@link SettlementService2 }
*
*/
public SettlementService2 getSttlmSvc() {
return sttlmSvc;
}
/**
* Sets the value of the sttlmSvc property.
*
* @param value
* allowed object is
* {@link SettlementService2 }
*
*/
public TransactionContext6 setSttlmSvc(SettlementService2 value) {
this.sttlmSvc = 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