
br.com.anteros.ejabberd.api.results.Generic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Ejabberd-Api Show documentation
Show all versions of Anteros-Ejabberd-Api Show documentation
Anteros Ejabberd API for Java.
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