Package com.lithic.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.
-
subscriptions
abstract SubscriptionServiceAsync.WithRawResponse subscriptions()
-
eventSubscriptions
abstract EventSubscriptionServiceAsync.WithRawResponse eventSubscriptions()
-
retrieve
CompletableFuture<HttpResponseFor<Event>> retrieve(String eventToken)
Returns a raw HTTP response for
get /v1/events/{event_token}, but is otherwise the same as EventServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<Event>> retrieve(String eventToken, EventRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Event>> retrieve(String eventToken, 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 eventToken, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<EventListPageAsync>> list()
Returns a raw HTTP response for
get /v1/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)
-
listAttempts
CompletableFuture<HttpResponseFor<EventListAttemptsPageAsync>> listAttempts(String eventToken)
Returns a raw HTTP response for
get /v1/events/{event_token}/attempts, but is otherwise the same as EventServiceAsync.listAttempts.
-
listAttempts
CompletableFuture<HttpResponseFor<EventListAttemptsPageAsync>> listAttempts(String eventToken, EventListAttemptsParams params, RequestOptions requestOptions)
-
listAttempts
CompletableFuture<HttpResponseFor<EventListAttemptsPageAsync>> listAttempts(String eventToken, EventListAttemptsParams params)
-
listAttempts
abstract CompletableFuture<HttpResponseFor<EventListAttemptsPageAsync>> listAttempts(EventListAttemptsParams params, RequestOptions requestOptions)
-
listAttempts
CompletableFuture<HttpResponseFor<EventListAttemptsPageAsync>> listAttempts(EventListAttemptsParams params)
-
listAttempts
CompletableFuture<HttpResponseFor<EventListAttemptsPageAsync>> listAttempts(String eventToken, RequestOptions requestOptions)
-
-
-
-