Package com.increase.api.services.async
Interface EventServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface EventServiceAsync.WithRawResponseA view of EventServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract EventServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
CompletableFuture<HttpResponseFor<Event>> retrieve(String eventId)
Returns a raw HTTP response for
get /events/{event_id}, but is otherwise the same as EventServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<Event>> retrieve(String eventId, EventRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Event>> retrieve(String eventId, EventRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<Event>> retrieve(EventRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Event>> retrieve(EventRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<Event>> retrieve(String eventId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<EventListPageAsync>> list()
Returns a raw HTTP response for
get /events, but is otherwise the same as EventServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<EventListPageAsync>> list(EventListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<EventListPageAsync>> list(EventListParams params)
-
list
CompletableFuture<HttpResponseFor<EventListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-