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