com.prowidesoftware.swift.model.mx.dic.Guarantee1 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;
/**
* Form of protection where a third party guarantees the performance of a financial obligation.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Guarantee1", propOrder = {
"prvdr",
"amt"
})
public class Guarantee1 {
@XmlElement(name = "Prvdr", required = true)
protected PartyIdentification118Choice prvdr;
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAndAmount amt;
/**
* Gets the value of the prvdr property.
*
* @return
* possible object is
* {@link PartyIdentification118Choice }
*
*/
public PartyIdentification118Choice getPrvdr() {
return prvdr;
}
/**
* Sets the value of the prvdr property.
*
* @param value
* allowed object is
* {@link PartyIdentification118Choice }
*
*/
public Guarantee1 setPrvdr(PartyIdentification118Choice value) {
this.prvdr = value;
return this;
}
/**
* Gets the value of the amt property.
*
* @return
* possible object is
* {@link ActiveCurrencyAndAmount }
*
*/
public ActiveCurrencyAndAmount getAmt() {
return amt;
}
/**
* Sets the value of the amt property.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAndAmount }
*
*/
public Guarantee1 setAmt(ActiveCurrencyAndAmount value) {
this.amt = 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