Package so.prelude.sdk.client
Interface PreludeClient.WithRawResponse
-
- All Implemented Interfaces:
public interface PreludeClient.WithRawResponse
A view of PreludeClient that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract PreludeClient.WithRawResponse
withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied. abstract LookupService.WithRawResponse
lookup()
abstract TransactionalService.WithRawResponse
transactional()
abstract VerificationService.WithRawResponse
verification()
abstract WatchService.WithRawResponse
watch()
-
-
Method Detail
-
withOptions
abstract PreludeClient.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
lookup
abstract LookupService.WithRawResponse lookup()
-
transactional
abstract TransactionalService.WithRawResponse transactional()
-
verification
abstract VerificationService.WithRawResponse verification()
-
watch
abstract WatchService.WithRawResponse watch()
-
-
-
-