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

br.com.anteros.ejabberd.api.results.Generic Maven / Gradle / Ivy

The newest version!
package br.com.anteros.ejabberd.api.results;

import com.google.gson.annotations.SerializedName;

public class Generic {
    private Status status;
    private int code;
    private String message;

    public Status getStatus() {
        return status;
    }

    public int getCode() {
        return code;
    }

    public String getMessage() {
        return message;
    }

    public enum Status {
        @SerializedName("error") ERROR
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy