Package so.prelude.sdk.services.blocking
Interface VerificationService.WithRawResponse
-
- All Implemented Interfaces:
public interface VerificationService.WithRawResponse
A view of VerificationService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<VerificationCreateResponse>
create(VerificationCreateParams params)
Returns a raw HTTP response for post /v2/verification
, but is otherwise the same as VerificationService.create.abstract HttpResponseFor<VerificationCreateResponse>
create(VerificationCreateParams params, RequestOptions requestOptions)
HttpResponseFor<VerificationCheckResponse>
check(VerificationCheckParams params)
Returns a raw HTTP response for post /v2/verification/check
, but is otherwise the same as VerificationService.check.abstract HttpResponseFor<VerificationCheckResponse>
check(VerificationCheckParams params, RequestOptions requestOptions)
-
-
Method Detail
-
create
@MustBeClosed() HttpResponseFor<VerificationCreateResponse> create(VerificationCreateParams params)
Returns a raw HTTP response for
post /v2/verification
, but is otherwise the same as VerificationService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<VerificationCreateResponse> create(VerificationCreateParams params, RequestOptions requestOptions)
-
check
@MustBeClosed() HttpResponseFor<VerificationCheckResponse> check(VerificationCheckParams params)
Returns a raw HTTP response for
post /v2/verification/check
, but is otherwise the same as VerificationService.check.
-
check
@MustBeClosed() abstract HttpResponseFor<VerificationCheckResponse> check(VerificationCheckParams params, RequestOptions requestOptions)
-
-
-
-