com.prowidesoftware.swift.model.mx.dic.PositionSetDimensions15 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.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;
/**
* Variables related to derivatives that are used to group derivatives together into positions for position sets.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PositionSetDimensions15", propOrder = {
"rptgCtrPty",
"othrCtrPty",
"collPrtflId",
"otlrsIncl"
})
public class PositionSetDimensions15 {
@XmlElement(name = "RptgCtrPty")
protected OrganisationIdentification15Choice rptgCtrPty;
@XmlElement(name = "OthrCtrPty")
protected OrganisationIdentification15Choice othrCtrPty;
@XmlElement(name = "CollPrtflId")
protected String collPrtflId;
@XmlElement(name = "OtlrsIncl")
protected Boolean otlrsIncl;
/**
* Gets the value of the rptgCtrPty property.
*
* @return
* possible object is
* {@link OrganisationIdentification15Choice }
*
*/
public OrganisationIdentification15Choice getRptgCtrPty() {
return rptgCtrPty;
}
/**
* Sets the value of the rptgCtrPty property.
*
* @param value
* allowed object is
* {@link OrganisationIdentification15Choice }
*
*/
public PositionSetDimensions15 setRptgCtrPty(OrganisationIdentification15Choice value) {
this.rptgCtrPty = value;
return this;
}
/**
* Gets the value of the othrCtrPty property.
*
* @return
* possible object is
* {@link OrganisationIdentification15Choice }
*
*/
public OrganisationIdentification15Choice getOthrCtrPty() {
return othrCtrPty;
}
/**
* Sets the value of the othrCtrPty property.
*
* @param value
* allowed object is
* {@link OrganisationIdentification15Choice }
*
*/
public PositionSetDimensions15 setOthrCtrPty(OrganisationIdentification15Choice value) {
this.othrCtrPty = value;
return this;
}
/**
* Gets the value of the collPrtflId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCollPrtflId() {
return collPrtflId;
}
/**
* Sets the value of the collPrtflId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PositionSetDimensions15 setCollPrtflId(String value) {
this.collPrtflId = value;
return this;
}
/**
* Gets the value of the otlrsIncl property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isOtlrsIncl() {
return otlrsIncl;
}
/**
* Sets the value of the otlrsIncl property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public PositionSetDimensions15 setOtlrsIncl(Boolean value) {
this.otlrsIncl = 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