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

io.github.carlosthe19916.webservices.models.BillServiceResult Maven / Gradle / Ivy

There is a newer version: 1.3.4.Final
Show newest version
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