Interface StepService.WithRawResponse
-
- All Implemented Interfaces:
public interface StepService.WithRawResponseA view of StepService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<RunStep>retrieve(StepRetrieveParams params)Returns a raw HTTP response for get /threads/{thread_id}/runs/{run_id}/steps/{step_id}, but is otherwise the same as StepService.retrieve.abstract HttpResponseFor<RunStep>retrieve(StepRetrieveParams params, RequestOptions requestOptions)HttpResponseFor<StepListPage>list(StepListParams params)Returns a raw HTTP response for get /threads/{thread_id}/runs/{run_id}/steps, but is otherwise the same as StepService.list.abstract HttpResponseFor<StepListPage>list(StepListParams params, RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() HttpResponseFor<RunStep> retrieve(StepRetrieveParams params)
Returns a raw HTTP response for
get /threads/{thread_id}/runs/{run_id}/steps/{step_id}, but is otherwise the same as StepService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<RunStep> retrieve(StepRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<StepListPage> list(StepListParams params)
Returns a raw HTTP response for
get /threads/{thread_id}/runs/{run_id}/steps, but is otherwise the same as StepService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<StepListPage> list(StepListParams params, RequestOptions requestOptions)
-
-
-
-