com.prowidesoftware.swift.model.mx.dic.SaleToPOIProtocolParameter1 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
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.XmlSchemaType;
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;
/**
* Configuration parameters to communicate with a sale system.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SaleToPOIProtocolParameter1", propOrder = {
"actnTp",
"mrchntId",
"vrsn",
"hstId",
"mrchntPOIId",
"saleId"
})
public class SaleToPOIProtocolParameter1 {
@XmlElement(name = "ActnTp", required = true)
@XmlSchemaType(name = "string")
protected TerminalManagementAction3Code actnTp;
@XmlElement(name = "MrchntId")
protected Organisation26 mrchntId;
@XmlElement(name = "Vrsn", required = true)
protected String vrsn;
@XmlElement(name = "HstId", required = true)
protected String hstId;
@XmlElement(name = "MrchntPOIId")
protected String mrchntPOIId;
@XmlElement(name = "SaleId")
protected String saleId;
/**
* Gets the value of the actnTp property.
*
* @return
* possible object is
* {@link TerminalManagementAction3Code }
*
*/
public TerminalManagementAction3Code getActnTp() {
return actnTp;
}
/**
* Sets the value of the actnTp property.
*
* @param value
* allowed object is
* {@link TerminalManagementAction3Code }
*
*/
public SaleToPOIProtocolParameter1 setActnTp(TerminalManagementAction3Code value) {
this.actnTp = value;
return this;
}
/**
* Gets the value of the mrchntId property.
*
* @return
* possible object is
* {@link Organisation26 }
*
*/
public Organisation26 getMrchntId() {
return mrchntId;
}
/**
* Sets the value of the mrchntId property.
*
* @param value
* allowed object is
* {@link Organisation26 }
*
*/
public SaleToPOIProtocolParameter1 setMrchntId(Organisation26 value) {
this.mrchntId = value;
return this;
}
/**
* Gets the value of the vrsn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVrsn() {
return vrsn;
}
/**
* Sets the value of the vrsn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SaleToPOIProtocolParameter1 setVrsn(String value) {
this.vrsn = value;
return this;
}
/**
* Gets the value of the hstId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHstId() {
return hstId;
}
/**
* Sets the value of the hstId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SaleToPOIProtocolParameter1 setHstId(String value) {
this.hstId = value;
return this;
}
/**
* Gets the value of the mrchntPOIId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMrchntPOIId() {
return mrchntPOIId;
}
/**
* Sets the value of the mrchntPOIId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SaleToPOIProtocolParameter1 setMrchntPOIId(String value) {
this.mrchntPOIId = value;
return this;
}
/**
* Gets the value of the saleId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSaleId() {
return saleId;
}
/**
* Sets the value of the saleId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SaleToPOIProtocolParameter1 setSaleId(String value) {
this.saleId = 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