Package com.lithic.api.services.blocking
Interface EventService.WithRawResponse
-
- All Implemented Interfaces:
public interface EventService.WithRawResponseA view of EventService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract EventService.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 SubscriptionService.WithRawResponse subscriptions()
-
eventSubscriptions
abstract EventSubscriptionService.WithRawResponse eventSubscriptions()
-
retrieve
@MustBeClosed() HttpResponseFor<Event> retrieve(String eventToken)
Returns a raw HTTP response for
get /v1/events/{event_token}, but is otherwise the same as EventService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<Event> retrieve(String eventToken, EventRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Event> retrieve(String eventToken, EventRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Event> retrieve(EventRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Event> retrieve(EventRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<Event> retrieve(String eventToken, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<EventListPage> list()
Returns a raw HTTP response for
get /v1/events, but is otherwise the same as EventService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<EventListPage> list(EventListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<EventListPage> list(EventListParams params)
-
list
@MustBeClosed() HttpResponseFor<EventListPage> list(RequestOptions requestOptions)
-
listAttempts
@MustBeClosed() HttpResponseFor<EventListAttemptsPage> listAttempts(String eventToken)
Returns a raw HTTP response for
get /v1/events/{event_token}/attempts, but is otherwise the same as EventService.listAttempts.
-
listAttempts
@MustBeClosed() HttpResponseFor<EventListAttemptsPage> listAttempts(String eventToken, EventListAttemptsParams params, RequestOptions requestOptions)
-
listAttempts
@MustBeClosed() HttpResponseFor<EventListAttemptsPage> listAttempts(String eventToken, EventListAttemptsParams params)
-
listAttempts
@MustBeClosed() abstract HttpResponseFor<EventListAttemptsPage> listAttempts(EventListAttemptsParams params, RequestOptions requestOptions)
-
listAttempts
@MustBeClosed() HttpResponseFor<EventListAttemptsPage> listAttempts(EventListAttemptsParams params)
-
listAttempts
@MustBeClosed() HttpResponseFor<EventListAttemptsPage> listAttempts(String eventToken, RequestOptions requestOptions)
-
-
-
-