EventServiceAsync

Types

Link copied to clipboard
interface WithRawResponse

A view of EventServiceAsync that provides access to raw HTTP responses for each method.

Functions

Link copied to clipboard
Link copied to clipboard
open suspend fun list(requestOptions: RequestOptions): EventListPageAsync

abstract suspend fun list(params: EventListParams = EventListParams.none(), requestOptions: RequestOptions = RequestOptions.none()): EventListPageAsync

List all events.

Link copied to clipboard
abstract suspend fun listAttempts(params: EventListAttemptsParams, requestOptions: RequestOptions = RequestOptions.none()): EventListAttemptsPageAsync
open suspend fun listAttempts(eventToken: String, requestOptions: RequestOptions): EventListAttemptsPageAsync

open suspend fun listAttempts(eventToken: String, params: EventListAttemptsParams = EventListAttemptsParams.none(), requestOptions: RequestOptions = RequestOptions.none()): EventListAttemptsPageAsync

List all the message attempts for a given event.

Link copied to clipboard
abstract suspend fun resend(eventToken: String, eventSubscriptionToken: String, body: JsonValue)
Link copied to clipboard
abstract suspend fun retrieve(params: EventRetrieveParams, requestOptions: RequestOptions = RequestOptions.none()): Event
open suspend fun retrieve(eventToken: String, requestOptions: RequestOptions): Event

open suspend fun retrieve(eventToken: String, params: EventRetrieveParams = EventRetrieveParams.none(), requestOptions: RequestOptions = RequestOptions.none()): Event

Get an event.

Link copied to clipboard
Link copied to clipboard

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

Link copied to clipboard

Returns a view of this service that provides access to raw HTTP responses for each method.