Package so.prelude.sdk.services.async
Interface VerificationServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface VerificationServiceAsync.WithRawResponse
A view of VerificationServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract VerificationServiceAsync.WithRawResponse
withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied. CompletableFuture<HttpResponseFor<VerificationCreateResponse>>
create(VerificationCreateParams params)
Returns a raw HTTP response for post /v2/verification
, but is otherwise the same as VerificationServiceAsync.create.abstract CompletableFuture<HttpResponseFor<VerificationCreateResponse>>
create(VerificationCreateParams params, RequestOptions requestOptions)
CompletableFuture<HttpResponseFor<VerificationCheckResponse>>
check(VerificationCheckParams params)
Returns a raw HTTP response for post /v2/verification/check
, but is otherwise the same as VerificationServiceAsync.check.abstract CompletableFuture<HttpResponseFor<VerificationCheckResponse>>
check(VerificationCheckParams params, RequestOptions requestOptions)
-
-
Method Detail
-
withOptions
abstract VerificationServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<HttpResponseFor<VerificationCreateResponse>> create(VerificationCreateParams params)
Returns a raw HTTP response for
post /v2/verification
, but is otherwise the same as VerificationServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<VerificationCreateResponse>> create(VerificationCreateParams params, RequestOptions requestOptions)
-
check
CompletableFuture<HttpResponseFor<VerificationCheckResponse>> check(VerificationCheckParams params)
Returns a raw HTTP response for
post /v2/verification/check
, but is otherwise the same as VerificationServiceAsync.check.
-
check
abstract CompletableFuture<HttpResponseFor<VerificationCheckResponse>> check(VerificationCheckParams params, RequestOptions requestOptions)
-
-
-
-