
com.prowidesoftware.swift.model.mx.dic.DateFormat56Choice 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 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;
/**
* Specifies the value of a date.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DateFormat56Choice", propOrder = {
"dt",
"notSpcfdDt",
"prtry"
})
public class DateFormat56Choice {
@XmlElement(name = "Dt")
protected DateAndDateTime1Choice dt;
@XmlElement(name = "NotSpcfdDt")
@XmlSchemaType(name = "string")
protected DateType6Code notSpcfdDt;
@XmlElement(name = "Prtry")
protected GenericIdentification13 prtry;
/**
* Gets the value of the dt property.
*
* @return
* possible object is
* {@link DateAndDateTime1Choice }
*
*/
public DateAndDateTime1Choice getDt() {
return dt;
}
/**
* Sets the value of the dt property.
*
* @param value
* allowed object is
* {@link DateAndDateTime1Choice }
*
*/
public DateFormat56Choice setDt(DateAndDateTime1Choice value) {
this.dt = value;
return this;
}
/**
* Gets the value of the notSpcfdDt property.
*
* @return
* possible object is
* {@link DateType6Code }
*
*/
public DateType6Code getNotSpcfdDt() {
return notSpcfdDt;
}
/**
* Sets the value of the notSpcfdDt property.
*
* @param value
* allowed object is
* {@link DateType6Code }
*
*/
public DateFormat56Choice setNotSpcfdDt(DateType6Code value) {
this.notSpcfdDt = value;
return this;
}
/**
* Gets the value of the prtry property.
*
* @return
* possible object is
* {@link GenericIdentification13 }
*
*/
public GenericIdentification13 getPrtry() {
return prtry;
}
/**
* Sets the value of the prtry property.
*
* @param value
* allowed object is
* {@link GenericIdentification13 }
*
*/
public DateFormat56Choice setPrtry(GenericIdentification13 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