Interface ClientSecretService.WithRawResponse
-
- All Implemented Interfaces:
public interface ClientSecretService.WithRawResponse
A view of ClientSecretService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract ClientSecretService.WithRawResponse
withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied. HttpResponseFor<ClientSecretCreateResponse>
create()
Returns a raw HTTP response for post /realtime/client_secrets
, but is otherwise the same as ClientSecretService.create.abstract HttpResponseFor<ClientSecretCreateResponse>
create(ClientSecretCreateParams params, RequestOptions requestOptions)
HttpResponseFor<ClientSecretCreateResponse>
create(ClientSecretCreateParams params)
HttpResponseFor<ClientSecretCreateResponse>
create(RequestOptions requestOptions)
-
-
Method Detail
-
withOptions
abstract ClientSecretService.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
@MustBeClosed() HttpResponseFor<ClientSecretCreateResponse> create()
Returns a raw HTTP response for
post /realtime/client_secrets
, but is otherwise the same as ClientSecretService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<ClientSecretCreateResponse> create(ClientSecretCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<ClientSecretCreateResponse> create(ClientSecretCreateParams params)
-
create
@MustBeClosed() HttpResponseFor<ClientSecretCreateResponse> create(RequestOptions requestOptions)
-
-
-
-