
com.prowidesoftware.swift.model.mx.dic.PaymentInstructionExtract Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
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;
/**
* Details of a payment instruction. The information contained in this component is sufficient to retrieve a payment instruction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PaymentInstructionExtract", propOrder = {
"assgnrInstrId",
"assgneInstrId",
"ccyAmt",
"valDt"
})
public class PaymentInstructionExtract {
@XmlElement(name = "AssgnrInstrId")
protected String assgnrInstrId;
@XmlElement(name = "AssgneInstrId")
protected String assgneInstrId;
@XmlElement(name = "CcyAmt")
protected CurrencyAndAmount ccyAmt;
@XmlElement(name = "ValDt")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar valDt;
/**
* Gets the value of the assgnrInstrId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAssgnrInstrId() {
return assgnrInstrId;
}
/**
* Sets the value of the assgnrInstrId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentInstructionExtract setAssgnrInstrId(String value) {
this.assgnrInstrId = value;
return this;
}
/**
* Gets the value of the assgneInstrId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAssgneInstrId() {
return assgneInstrId;
}
/**
* Sets the value of the assgneInstrId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentInstructionExtract setAssgneInstrId(String value) {
this.assgneInstrId = value;
return this;
}
/**
* Gets the value of the ccyAmt property.
*
* @return
* possible object is
* {@link CurrencyAndAmount }
*
*/
public CurrencyAndAmount getCcyAmt() {
return ccyAmt;
}
/**
* Sets the value of the ccyAmt property.
*
* @param value
* allowed object is
* {@link CurrencyAndAmount }
*
*/
public PaymentInstructionExtract setCcyAmt(CurrencyAndAmount value) {
this.ccyAmt = value;
return this;
}
/**
* Gets the value of the valDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getValDt() {
return valDt;
}
/**
* Sets the value of the valDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public PaymentInstructionExtract setValDt(XMLGregorianCalendar value) {
this.valDt = 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