com.prowidesoftware.swift.model.mx.dic.AcquirerProtocolParameters8 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.XmlSchemaType;
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;
/**
* Acceptor parameters dedicated to the acquirer protocol.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AcquirerProtocolParameters8", propOrder = {
"finCaptr",
"btchTrf",
"cmpltnXchg",
"cxlXchg"
})
public class AcquirerProtocolParameters8 {
@XmlElement(name = "FinCaptr", required = true)
@XmlSchemaType(name = "string")
protected FinancialCapture1Code finCaptr;
@XmlElement(name = "BtchTrf")
protected ExchangeConfiguration6 btchTrf;
@XmlElement(name = "CmpltnXchg")
protected ExchangeConfiguration7 cmpltnXchg;
@XmlElement(name = "CxlXchg")
@XmlSchemaType(name = "string")
protected CancellationProcess1Code cxlXchg;
/**
* Gets the value of the finCaptr property.
*
* @return
* possible object is
* {@link FinancialCapture1Code }
*
*/
public FinancialCapture1Code getFinCaptr() {
return finCaptr;
}
/**
* Sets the value of the finCaptr property.
*
* @param value
* allowed object is
* {@link FinancialCapture1Code }
*
*/
public AcquirerProtocolParameters8 setFinCaptr(FinancialCapture1Code value) {
this.finCaptr = value;
return this;
}
/**
* Gets the value of the btchTrf property.
*
* @return
* possible object is
* {@link ExchangeConfiguration6 }
*
*/
public ExchangeConfiguration6 getBtchTrf() {
return btchTrf;
}
/**
* Sets the value of the btchTrf property.
*
* @param value
* allowed object is
* {@link ExchangeConfiguration6 }
*
*/
public AcquirerProtocolParameters8 setBtchTrf(ExchangeConfiguration6 value) {
this.btchTrf = value;
return this;
}
/**
* Gets the value of the cmpltnXchg property.
*
* @return
* possible object is
* {@link ExchangeConfiguration7 }
*
*/
public ExchangeConfiguration7 getCmpltnXchg() {
return cmpltnXchg;
}
/**
* Sets the value of the cmpltnXchg property.
*
* @param value
* allowed object is
* {@link ExchangeConfiguration7 }
*
*/
public AcquirerProtocolParameters8 setCmpltnXchg(ExchangeConfiguration7 value) {
this.cmpltnXchg = value;
return this;
}
/**
* Gets the value of the cxlXchg property.
*
* @return
* possible object is
* {@link CancellationProcess1Code }
*
*/
public CancellationProcess1Code getCxlXchg() {
return cxlXchg;
}
/**
* Sets the value of the cxlXchg property.
*
* @param value
* allowed object is
* {@link CancellationProcess1Code }
*
*/
public AcquirerProtocolParameters8 setCxlXchg(CancellationProcess1Code value) {
this.cxlXchg = 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