Interface AssistantServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface AssistantServiceAsync.WithRawResponse
A view of AssistantServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract CompletableFuture<HttpResponseFor<Assistant>>
create(BetaAssistantCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /assistants
, but is otherwise the same as AssistantServiceAsync.create.abstract CompletableFuture<HttpResponseFor<Assistant>>
create(BetaAssistantCreateParams params)
Returns a raw HTTP response for post /assistants
, but is otherwise the same as AssistantServiceAsync.create.abstract CompletableFuture<HttpResponseFor<Assistant>>
retrieve(BetaAssistantRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<Assistant>>
retrieve(BetaAssistantRetrieveParams params)
Returns a raw HTTP response for get /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<Assistant>>
update(BetaAssistantUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.update.abstract CompletableFuture<HttpResponseFor<Assistant>>
update(BetaAssistantUpdateParams params)
Returns a raw HTTP response for post /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.update.abstract CompletableFuture<HttpResponseFor<BetaAssistantListPageAsync>>
list(BetaAssistantListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /assistants
, but is otherwise the same as AssistantServiceAsync.list.abstract CompletableFuture<HttpResponseFor<BetaAssistantListPageAsync>>
list(BetaAssistantListParams params)
Returns a raw HTTP response for get /assistants
, but is otherwise the same as AssistantServiceAsync.list.abstract CompletableFuture<HttpResponseFor<BetaAssistantListPageAsync>>
list()
Returns a raw HTTP response for get /assistants
, but is otherwise the same as AssistantServiceAsync.list.CompletableFuture<HttpResponseFor<BetaAssistantListPageAsync>>
list(RequestOptions requestOptions)
Returns a raw HTTP response for get /assistants
, but is otherwise the same as AssistantServiceAsync.list.abstract CompletableFuture<HttpResponseFor<AssistantDeleted>>
delete(BetaAssistantDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for delete /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.delete.abstract CompletableFuture<HttpResponseFor<AssistantDeleted>>
delete(BetaAssistantDeleteParams params)
Returns a raw HTTP response for delete /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.delete.-
-
Method Detail
-
create
abstract CompletableFuture<HttpResponseFor<Assistant>> create(BetaAssistantCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /assistants
, but is otherwise the same as AssistantServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<Assistant>> create(BetaAssistantCreateParams params)
Returns a raw HTTP response for
post /assistants
, but is otherwise the same as AssistantServiceAsync.create.
-
retrieve
abstract CompletableFuture<HttpResponseFor<Assistant>> retrieve(BetaAssistantRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.retrieve.
-
retrieve
abstract CompletableFuture<HttpResponseFor<Assistant>> retrieve(BetaAssistantRetrieveParams params)
Returns a raw HTTP response for
get /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.retrieve.
-
update
abstract CompletableFuture<HttpResponseFor<Assistant>> update(BetaAssistantUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.update.
-
update
abstract CompletableFuture<HttpResponseFor<Assistant>> update(BetaAssistantUpdateParams params)
Returns a raw HTTP response for
post /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.update.
-
list
abstract CompletableFuture<HttpResponseFor<BetaAssistantListPageAsync>> list(BetaAssistantListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /assistants
, but is otherwise the same as AssistantServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<BetaAssistantListPageAsync>> list(BetaAssistantListParams params)
Returns a raw HTTP response for
get /assistants
, but is otherwise the same as AssistantServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<BetaAssistantListPageAsync>> list()
Returns a raw HTTP response for
get /assistants
, but is otherwise the same as AssistantServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<BetaAssistantListPageAsync>> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /assistants
, but is otherwise the same as AssistantServiceAsync.list.
-
delete
abstract CompletableFuture<HttpResponseFor<AssistantDeleted>> delete(BetaAssistantDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
delete /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.delete.
-
delete
abstract CompletableFuture<HttpResponseFor<AssistantDeleted>> delete(BetaAssistantDeleteParams params)
Returns a raw HTTP response for
delete /assistants/{assistant_id}
, but is otherwise the same as AssistantServiceAsync.delete.
-
-
-
-