io.magentys.rest.model.RestResponse Maven / Gradle / Ivy
package io.magentys.rest.model;
public interface RestResponse {
T data();
int statusCode();
Body body();
boolean failed();
boolean ok();
}
package io.magentys.rest.model;
public interface RestResponse {
T data();
int statusCode();
Body body();
boolean failed();
boolean ok();
}