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
Modifier and Type Method Description CompletableFuture<HttpResponseFor<Event>>retrieve(EventRetrieveParams params)Returns a raw HTTP response for get /events/{event_id}, but is otherwise the same as EventServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<Event>>retrieve(EventRetrieveParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<EventListPageAsync>>list()Returns a raw HTTP response for get /events, but is otherwise the same as EventServiceAsync.list.abstract CompletableFuture<HttpResponseFor<EventListPageAsync>>list(EventListParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<EventListPageAsync>>list(EventListParams params)CompletableFuture<HttpResponseFor<EventListPageAsync>>list(RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<Event>> retrieve(EventRetrieveParams params)
Returns a raw HTTP response for
get /events/{event_id}, but is otherwise the same as EventServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Event>> retrieve(EventRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<EventListPageAsync>> list()
Returns a raw HTTP response for
get /events, but is otherwise the same as EventServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<EventListPageAsync>> list(EventListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<EventListPageAsync>> list(EventListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<EventListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-