com.prowidesoftware.swift.model.mx.dic.Environment23 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;
/**
* Environment of the transaction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Environment23", propOrder = {
"acqrr",
"orgtr",
"sndr",
"rcvr",
"accptr",
"dstn",
"issr",
"card",
"tkn"
})
public class Environment23 {
@XmlElement(name = "Acqrr")
protected PartyIdentification263 acqrr;
@XmlElement(name = "Orgtr")
protected PartyIdentification263 orgtr;
@XmlElement(name = "Sndr")
protected PartyIdentification263 sndr;
@XmlElement(name = "Rcvr")
protected PartyIdentification263 rcvr;
@XmlElement(name = "Accptr")
protected PartyIdentification255 accptr;
@XmlElement(name = "Dstn")
protected PartyIdentification263 dstn;
@XmlElement(name = "Issr")
protected PartyIdentification263 issr;
@XmlElement(name = "Card")
protected CardData2 card;
@XmlElement(name = "Tkn")
protected Token2 tkn;
/**
* Gets the value of the acqrr property.
*
* @return
* possible object is
* {@link PartyIdentification263 }
*
*/
public PartyIdentification263 getAcqrr() {
return acqrr;
}
/**
* Sets the value of the acqrr property.
*
* @param value
* allowed object is
* {@link PartyIdentification263 }
*
*/
public Environment23 setAcqrr(PartyIdentification263 value) {
this.acqrr = value;
return this;
}
/**
* Gets the value of the orgtr property.
*
* @return
* possible object is
* {@link PartyIdentification263 }
*
*/
public PartyIdentification263 getOrgtr() {
return orgtr;
}
/**
* Sets the value of the orgtr property.
*
* @param value
* allowed object is
* {@link PartyIdentification263 }
*
*/
public Environment23 setOrgtr(PartyIdentification263 value) {
this.orgtr = value;
return this;
}
/**
* Gets the value of the sndr property.
*
* @return
* possible object is
* {@link PartyIdentification263 }
*
*/
public PartyIdentification263 getSndr() {
return sndr;
}
/**
* Sets the value of the sndr property.
*
* @param value
* allowed object is
* {@link PartyIdentification263 }
*
*/
public Environment23 setSndr(PartyIdentification263 value) {
this.sndr = value;
return this;
}
/**
* Gets the value of the rcvr property.
*
* @return
* possible object is
* {@link PartyIdentification263 }
*
*/
public PartyIdentification263 getRcvr() {
return rcvr;
}
/**
* Sets the value of the rcvr property.
*
* @param value
* allowed object is
* {@link PartyIdentification263 }
*
*/
public Environment23 setRcvr(PartyIdentification263 value) {
this.rcvr = value;
return this;
}
/**
* Gets the value of the accptr property.
*
* @return
* possible object is
* {@link PartyIdentification255 }
*
*/
public PartyIdentification255 getAccptr() {
return accptr;
}
/**
* Sets the value of the accptr property.
*
* @param value
* allowed object is
* {@link PartyIdentification255 }
*
*/
public Environment23 setAccptr(PartyIdentification255 value) {
this.accptr = value;
return this;
}
/**
* Gets the value of the dstn property.
*
* @return
* possible object is
* {@link PartyIdentification263 }
*
*/
public PartyIdentification263 getDstn() {
return dstn;
}
/**
* Sets the value of the dstn property.
*
* @param value
* allowed object is
* {@link PartyIdentification263 }
*
*/
public Environment23 setDstn(PartyIdentification263 value) {
this.dstn = value;
return this;
}
/**
* Gets the value of the issr property.
*
* @return
* possible object is
* {@link PartyIdentification263 }
*
*/
public PartyIdentification263 getIssr() {
return issr;
}
/**
* Sets the value of the issr property.
*
* @param value
* allowed object is
* {@link PartyIdentification263 }
*
*/
public Environment23 setIssr(PartyIdentification263 value) {
this.issr = value;
return this;
}
/**
* Gets the value of the card property.
*
* @return
* possible object is
* {@link CardData2 }
*
*/
public CardData2 getCard() {
return card;
}
/**
* Sets the value of the card property.
*
* @param value
* allowed object is
* {@link CardData2 }
*
*/
public Environment23 setCard(CardData2 value) {
this.card = value;
return this;
}
/**
* Gets the value of the tkn property.
*
* @return
* possible object is
* {@link Token2 }
*
*/
public Token2 getTkn() {
return tkn;
}
/**
* Sets the value of the tkn property.
*
* @param value
* allowed object is
* {@link Token2 }
*
*/
public Environment23 setTkn(Token2 value) {
this.tkn = 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