com.prowidesoftware.swift.model.mx.dic.Document9 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.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;
/**
* Information about a document.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Document9", propOrder = {
"tp",
"id",
"frmt",
"nclsr",
"dgtlSgntr"
})
public class Document9 {
@XmlElement(name = "Tp", required = true)
protected UndertakingDocumentType1Choice tp;
@XmlElement(name = "Id", required = true)
protected String id;
@XmlElement(name = "Frmt")
protected DocumentFormat1Choice frmt;
@XmlElement(name = "Nclsr", required = true)
protected byte[] nclsr;
@XmlElement(name = "DgtlSgntr")
protected PartyAndSignature2 dgtlSgntr;
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link UndertakingDocumentType1Choice }
*
*/
public UndertakingDocumentType1Choice getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link UndertakingDocumentType1Choice }
*
*/
public Document9 setTp(UndertakingDocumentType1Choice value) {
this.tp = value;
return this;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Document9 setId(String value) {
this.id = value;
return this;
}
/**
* Gets the value of the frmt property.
*
* @return
* possible object is
* {@link DocumentFormat1Choice }
*
*/
public DocumentFormat1Choice getFrmt() {
return frmt;
}
/**
* Sets the value of the frmt property.
*
* @param value
* allowed object is
* {@link DocumentFormat1Choice }
*
*/
public Document9 setFrmt(DocumentFormat1Choice value) {
this.frmt = value;
return this;
}
/**
* Gets the value of the nclsr property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getNclsr() {
return nclsr;
}
/**
* Sets the value of the nclsr property.
*
* @param value
* allowed object is
* byte[]
*/
public Document9 setNclsr(byte[] value) {
this.nclsr = value;
return this;
}
/**
* Gets the value of the dgtlSgntr property.
*
* @return
* possible object is
* {@link PartyAndSignature2 }
*
*/
public PartyAndSignature2 getDgtlSgntr() {
return dgtlSgntr;
}
/**
* Sets the value of the dgtlSgntr property.
*
* @param value
* allowed object is
* {@link PartyAndSignature2 }
*
*/
public Document9 setDgtlSgntr(PartyAndSignature2 value) {
this.dgtlSgntr = 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