Event Service Async
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
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 retrieve(params: EventRetrieveParams, requestOptions: RequestOptions = RequestOptions.none()): 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.