io.github.carlosthe19916.webservices.models.BillServiceResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sunat-web-services Show documentation
Show all versions of sunat-web-services Show documentation
Sunat Web Services Endpoints
package io.github.carlosthe19916.webservices.models;
public class BillServiceResult {
private final Status status;
private final byte[] cdr;
private final String description;
public BillServiceResult(Status status, byte[] cdr, String description) {
this.status = status;
this.cdr = cdr;
this.description = description;
}
public Status getStatus() {
return status;
}
public byte[] getCdr() {
return cdr;
}
public String getDescription() {
return description;
}
public enum Status {
ACEPTADO,
RECHAZADO,
BAJA
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy