com.tapstream.sdk.EventApiResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tapstream-core Show documentation
Show all versions of tapstream-core Show documentation
This library contains the building blocks for a Tapstream Java SDK
package com.tapstream.sdk;
import com.tapstream.sdk.http.HttpResponse;
public class EventApiResponse implements ApiResponse{
private final HttpResponse response;
public EventApiResponse(HttpResponse response){
this.response = response;
}
@Override
public HttpResponse getHttpResponse() {
return response;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy