
com.prowidesoftware.swift.model.mx.dic.CustodianOptionDateDetailsSD1 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;
/**
* Corporate action option information for the custodian record.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustodianOptionDateDetailsSD1", propOrder = {
"plcAndNm",
"agtDdlnDt",
"agtDdlnTm"
})
public class CustodianOptionDateDetailsSD1 {
@XmlElement(name = "PlcAndNm", required = true)
protected String plcAndNm;
@XmlElement(name = "AgtDdlnDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar agtDdlnDt;
@XmlElement(name = "AgtDdlnTm")
@XmlSchemaType(name = "time")
protected XMLGregorianCalendar agtDdlnTm;
/**
* Gets the value of the plcAndNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPlcAndNm() {
return plcAndNm;
}
/**
* Sets the value of the plcAndNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CustodianOptionDateDetailsSD1 setPlcAndNm(String value) {
this.plcAndNm = value;
return this;
}
/**
* Gets the value of the agtDdlnDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getAgtDdlnDt() {
return agtDdlnDt;
}
/**
* Sets the value of the agtDdlnDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public CustodianOptionDateDetailsSD1 setAgtDdlnDt(XMLGregorianCalendar value) {
this.agtDdlnDt = value;
return this;
}
/**
* Gets the value of the agtDdlnTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getAgtDdlnTm() {
return agtDdlnTm;
}
/**
* Sets the value of the agtDdlnTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public CustodianOptionDateDetailsSD1 setAgtDdlnTm(XMLGregorianCalendar value) {
this.agtDdlnTm = 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