com.fincatto.documentofiscal.cte300.classes.nota.assinatura.CTeCanonicalizationMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nfe Show documentation
Show all versions of nfe Show documentation
Biblioteca de comunicacao de nota fiscal eletronica brasileira
package com.fincatto.documentofiscal.cte300.classes.nota.assinatura;
import org.simpleframework.xml.Attribute;
public class CTeCanonicalizationMethod {
@Attribute(name = "Algorithm", required = false)
private String algorithm;
public String getAlgorithm() {
return algorithm;
}
public void setAlgorithm(String algorithm) {
this.algorithm = algorithm;
}
}