com.prowidesoftware.swift.model.mx.dic.MandateOccurrences2 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 java.time.LocalDate;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
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 jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;
/**
* Provides further details related to the duration of the mandate and the occurrence of the underlying transactions.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MandateOccurrences2", propOrder = {
"seqTp",
"frqcy",
"drtn",
"frstColltnDt",
"fnlColltnDt"
})
public class MandateOccurrences2 {
@XmlElement(name = "SeqTp", required = true)
@XmlSchemaType(name = "string")
protected SequenceType2Code seqTp;
@XmlElement(name = "Frqcy")
@XmlSchemaType(name = "string")
protected Frequency6Code frqcy;
@XmlElement(name = "Drtn")
protected DatePeriodDetails1 drtn;
@XmlElement(name = "FrstColltnDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate frstColltnDt;
@XmlElement(name = "FnlColltnDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate fnlColltnDt;
/**
* Gets the value of the seqTp property.
*
* @return
* possible object is
* {@link SequenceType2Code }
*
*/
public SequenceType2Code getSeqTp() {
return seqTp;
}
/**
* Sets the value of the seqTp property.
*
* @param value
* allowed object is
* {@link SequenceType2Code }
*
*/
public MandateOccurrences2 setSeqTp(SequenceType2Code value) {
this.seqTp = value;
return this;
}
/**
* Gets the value of the frqcy property.
*
* @return
* possible object is
* {@link Frequency6Code }
*
*/
public Frequency6Code getFrqcy() {
return frqcy;
}
/**
* Sets the value of the frqcy property.
*
* @param value
* allowed object is
* {@link Frequency6Code }
*
*/
public MandateOccurrences2 setFrqcy(Frequency6Code value) {
this.frqcy = value;
return this;
}
/**
* Gets the value of the drtn property.
*
* @return
* possible object is
* {@link DatePeriodDetails1 }
*
*/
public DatePeriodDetails1 getDrtn() {
return drtn;
}
/**
* Sets the value of the drtn property.
*
* @param value
* allowed object is
* {@link DatePeriodDetails1 }
*
*/
public MandateOccurrences2 setDrtn(DatePeriodDetails1 value) {
this.drtn = value;
return this;
}
/**
* Gets the value of the frstColltnDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getFrstColltnDt() {
return frstColltnDt;
}
/**
* Sets the value of the frstColltnDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MandateOccurrences2 setFrstColltnDt(LocalDate value) {
this.frstColltnDt = value;
return this;
}
/**
* Gets the value of the fnlColltnDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getFnlColltnDt() {
return fnlColltnDt;
}
/**
* Sets the value of the fnlColltnDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MandateOccurrences2 setFnlColltnDt(LocalDate value) {
this.fnlColltnDt = 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