Interface AssistantService.WithRawResponse
-
- All Implemented Interfaces:
public interface AssistantService.WithRawResponse
A view of AssistantService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
create
@MustBeClosed() HttpResponseFor<Assistant> create(AssistantCreateParams params)
Returns a raw HTTP response for
post /assistants
, but is otherwise the same as AssistantService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<Assistant> create(AssistantCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Assistant> retrieve(AssistantRetrieveParams params)
Returns a raw HTTP response for
get /assistants/{assistant_id}
, but is otherwise the same as AssistantService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Assistant> retrieve(AssistantRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<Assistant> update(AssistantUpdateParams params)
Returns a raw HTTP response for
post /assistants/{assistant_id}
, but is otherwise the same as AssistantService.update.
-
update
@MustBeClosed() abstract HttpResponseFor<Assistant> update(AssistantUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<AssistantListPage> list()
Returns a raw HTTP response for
get /assistants
, but is otherwise the same as AssistantService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<AssistantListPage> list(AssistantListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<AssistantListPage> list(AssistantListParams params)
-
list
@MustBeClosed() HttpResponseFor<AssistantListPage> list(RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<AssistantDeleted> delete(AssistantDeleteParams params)
Returns a raw HTTP response for
delete /assistants/{assistant_id}
, but is otherwise the same as AssistantService.delete.
-
delete
@MustBeClosed() abstract HttpResponseFor<AssistantDeleted> delete(AssistantDeleteParams params, RequestOptions requestOptions)
-
-
-
-