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