All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fincatto.documentofiscal.cte200.classes.cte.CTProtocolo Maven / Gradle / Ivy

There is a newer version: 4.0.75
Show newest version
package com.fincatto.documentofiscal.cte200.classes.cte;

import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;

import com.fincatto.documentofiscal.DFBase;

public class CTProtocolo extends DFBase {
    private static final long serialVersionUID = -8180971313952866825L;

    @Attribute(name = "versao")
    private String versao;

    @Element(name = "infProt")
    private CTProtocoloInfo infProt;

    @Element(name = "Signature", required = false)
    private String signature;

    public String getVersao() {
        return this.versao;
    }

    public void setVersao(final String versao) {
        this.versao = versao;
    }

    public CTProtocoloInfo getInfProt() {
        return this.infProt;
    }

    public void setInfProt(final CTProtocoloInfo infProt) {
        this.infProt = infProt;
    }

    public String getSignature() {
        return this.signature;
    }

    public void setSignature(final String signature) {
        this.signature = signature;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy