Interface TopLevelServiceAsync
-
- All Implemented Interfaces:
public interface TopLevelServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceTopLevelServiceAsync.WithRawResponseA view of TopLevelServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract TopLevelServiceAsync.WithRawResponsewithRawResponse()Returns a view of this service that provides access to raw HTTP responses for each method. CompletableFuture<String>helloWorld()Default endpoint. abstract CompletableFuture<String>helloWorld(TopLevelHelloWorldParams params, RequestOptions requestOptions)CompletableFuture<String>helloWorld(TopLevelHelloWorldParams params)CompletableFuture<String>helloWorld(RequestOptions requestOptions)-
-
Method Detail
-
withRawResponse
abstract TopLevelServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
helloWorld
CompletableFuture<String> helloWorld()
Default endpoint. Simply replies with 'Hello, World!'. Authorization is not required
-
helloWorld
abstract CompletableFuture<String> helloWorld(TopLevelHelloWorldParams params, RequestOptions requestOptions)
-
helloWorld
CompletableFuture<String> helloWorld(TopLevelHelloWorldParams params)
-
helloWorld
CompletableFuture<String> helloWorld(RequestOptions requestOptions)
-
-
-
-