com.blackbirdai.client.model.FeedbackResponse Maven / Gradle / Ivy
package com.blackbirdai.client.model;
import org.jboss.netty.handler.codec.http.HttpResponse;
public class FeedbackResponse extends Response {
public FeedbackResponse(boolean success, int statusCode, String message) {
super(success, statusCode, message);
}
public FeedbackResponse(boolean success, String message) {
this(success, -1, message);
}
public FeedbackResponse(boolean success, int statusCode) {
this(success, statusCode, "");
}
public FeedbackResponse(HttpResponse httpResponse) {
super(httpResponse);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy