WithRawResponse

interface WithRawResponse

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

Inheritors

Functions

Link copied to clipboard
@MustBeClosed
abstract suspend fun checkStatus(params: ResponderEndpointCheckStatusParams, requestOptions: RequestOptions = RequestOptions.none()): HttpResponseFor<ResponderEndpointStatus>

Returns a raw HTTP response for get /v1/responder_endpoints, but is otherwise the same as ResponderEndpointServiceAsync.checkStatus.

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

@MustBeClosed
abstract suspend fun create(params: ResponderEndpointCreateParams = ResponderEndpointCreateParams.none(), requestOptions: RequestOptions = RequestOptions.none()): HttpResponseFor<ResponderEndpointCreateResponse>

Returns a raw HTTP response for post /v1/responder_endpoints, but is otherwise the same as ResponderEndpointServiceAsync.create.

Link copied to clipboard
@MustBeClosed
abstract suspend fun delete(params: ResponderEndpointDeleteParams, requestOptions: RequestOptions = RequestOptions.none()): HttpResponse

Returns a raw HTTP response for delete /v1/responder_endpoints, but is otherwise the same as ResponderEndpointServiceAsync.delete.

Link copied to clipboard

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