com.prowidesoftware.swift.model.mx.dic.SafekeepingPlaceFormat26Choice 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;
/**
* Choice of formats for the place of safekeeping.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SafekeepingPlaceFormat26Choice", propOrder = {
"id",
"ctry",
"tpAndId",
"prtry"
})
public class SafekeepingPlaceFormat26Choice {
@XmlElement(name = "Id")
protected SafekeepingPlaceTypeAndText25 id;
@XmlElement(name = "Ctry")
protected String ctry;
@XmlElement(name = "TpAndId")
protected SafekeepingPlaceTypeAndAnyBICIdentifier1 tpAndId;
@XmlElement(name = "Prtry")
protected GenericIdentification89 prtry;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link SafekeepingPlaceTypeAndText25 }
*
*/
public SafekeepingPlaceTypeAndText25 getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link SafekeepingPlaceTypeAndText25 }
*
*/
public SafekeepingPlaceFormat26Choice setId(SafekeepingPlaceTypeAndText25 value) {
this.id = value;
return this;
}
/**
* Gets the value of the ctry property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCtry() {
return ctry;
}
/**
* Sets the value of the ctry property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SafekeepingPlaceFormat26Choice setCtry(String value) {
this.ctry = value;
return this;
}
/**
* Gets the value of the tpAndId property.
*
* @return
* possible object is
* {@link SafekeepingPlaceTypeAndAnyBICIdentifier1 }
*
*/
public SafekeepingPlaceTypeAndAnyBICIdentifier1 getTpAndId() {
return tpAndId;
}
/**
* Sets the value of the tpAndId property.
*
* @param value
* allowed object is
* {@link SafekeepingPlaceTypeAndAnyBICIdentifier1 }
*
*/
public SafekeepingPlaceFormat26Choice setTpAndId(SafekeepingPlaceTypeAndAnyBICIdentifier1 value) {
this.tpAndId = value;
return this;
}
/**
* Gets the value of the prtry property.
*
* @return
* possible object is
* {@link GenericIdentification89 }
*
*/
public GenericIdentification89 getPrtry() {
return prtry;
}
/**
* Sets the value of the prtry property.
*
* @param value
* allowed object is
* {@link GenericIdentification89 }
*
*/
public SafekeepingPlaceFormat26Choice setPrtry(GenericIdentification89 value) {
this.prtry = 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