com.prowidesoftware.swift.model.mx.dic.ReservationIdentificationDetails1 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;
/**
* Liquidity set aside by the account owner for specific purposes.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReservationIdentificationDetails1", propOrder = {
"sysId",
"tp",
"acctOwnr",
"acctId"
})
public class ReservationIdentificationDetails1 {
@XmlElement(name = "SysId")
protected SystemIdentificationChoice sysId;
@XmlElement(name = "Tp", required = true)
@XmlSchemaType(name = "string")
protected ReservationType1Code tp;
@XmlElement(name = "AcctOwnr")
protected String acctOwnr;
@XmlElement(name = "AcctId")
protected AccountIdentification1Choice acctId;
/**
* Gets the value of the sysId property.
*
* @return
* possible object is
* {@link SystemIdentificationChoice }
*
*/
public SystemIdentificationChoice getSysId() {
return sysId;
}
/**
* Sets the value of the sysId property.
*
* @param value
* allowed object is
* {@link SystemIdentificationChoice }
*
*/
public ReservationIdentificationDetails1 setSysId(SystemIdentificationChoice value) {
this.sysId = value;
return this;
}
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link ReservationType1Code }
*
*/
public ReservationType1Code getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link ReservationType1Code }
*
*/
public ReservationIdentificationDetails1 setTp(ReservationType1Code value) {
this.tp = value;
return this;
}
/**
* Gets the value of the acctOwnr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctOwnr() {
return acctOwnr;
}
/**
* Sets the value of the acctOwnr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReservationIdentificationDetails1 setAcctOwnr(String value) {
this.acctOwnr = value;
return this;
}
/**
* Gets the value of the acctId property.
*
* @return
* possible object is
* {@link AccountIdentification1Choice }
*
*/
public AccountIdentification1Choice getAcctId() {
return acctId;
}
/**
* Sets the value of the acctId property.
*
* @param value
* allowed object is
* {@link AccountIdentification1Choice }
*
*/
public ReservationIdentificationDetails1 setAcctId(AccountIdentification1Choice value) {
this.acctId = 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