Functions

Link copied to clipboard
@MustBeClosed
open suspend fun list(requestOptions: RequestOptions): HttpResponseFor<EventListPageAsync>

open suspend override fun list(params: EventListParams, requestOptions: RequestOptions): HttpResponseFor<EventListPageAsync>

Returns a raw HTTP response for get /v1/events, but is otherwise the same as EventServiceAsync.list.

Link copied to clipboard
@MustBeClosed
open suspend fun listAttempts(eventToken: String, requestOptions: RequestOptions): HttpResponseFor<EventListAttemptsPageAsync>

@MustBeClosed
open suspend fun listAttempts(eventToken: String, params: EventListAttemptsParams = EventListAttemptsParams.none(), requestOptions: RequestOptions = RequestOptions.none()): HttpResponseFor<EventListAttemptsPageAsync>

Returns a raw HTTP response for get /v1/events/{event_token}/attempts, but is otherwise the same as EventServiceAsync.listAttempts.

Link copied to clipboard
@MustBeClosed
open suspend fun retrieve(eventToken: String, requestOptions: RequestOptions): HttpResponseFor<Event>
open suspend override fun retrieve(params: EventRetrieveParams, requestOptions: RequestOptions): HttpResponseFor<Event>

@MustBeClosed
open suspend fun retrieve(eventToken: String, params: EventRetrieveParams = EventRetrieveParams.none(), requestOptions: RequestOptions = RequestOptions.none()): HttpResponseFor<Event>

Returns a raw HTTP response for get /v1/events/{event_token}, but is otherwise the same as EventServiceAsync.retrieve.

Link copied to clipboard
Link copied to clipboard

Returns a view of this service with the given option modifications applied.