com.prowidesoftware.swift.model.mx.dic.Vote9 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.XmlSchemaType;
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;
/**
* Decision of the voting party for one resolution.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Vote9", propOrder = {
"issrLabl",
"voteOptn"
})
public class Vote9 {
@XmlElement(name = "IssrLabl", required = true)
protected String issrLabl;
@XmlElement(name = "VoteOptn", required = true)
@XmlSchemaType(name = "string")
protected VoteInstruction3Code voteOptn;
/**
* Gets the value of the issrLabl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIssrLabl() {
return issrLabl;
}
/**
* Sets the value of the issrLabl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Vote9 setIssrLabl(String value) {
this.issrLabl = value;
return this;
}
/**
* Gets the value of the voteOptn property.
*
* @return
* possible object is
* {@link VoteInstruction3Code }
*
*/
public VoteInstruction3Code getVoteOptn() {
return voteOptn;
}
/**
* Sets the value of the voteOptn property.
*
* @param value
* allowed object is
* {@link VoteInstruction3Code }
*
*/
public Vote9 setVoteOptn(VoteInstruction3Code value) {
this.voteOptn = 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