RunStepsOperations interface
Interface representing a RunSteps operations.
Properties
get | Retrieves a single run step from a thread run. |
list | Gets a list of run steps from a thread run. |
Property Details
get
Retrieves a single run step from a thread run.
get: (threadId: string, runId: string, stepId: string, options?: RunStepsGetRunStepOptionalParams) => Promise<RunStep>
Property Value
(threadId: string, runId: string, stepId: string, options?: RunStepsGetRunStepOptionalParams) => Promise<RunStep>
list
Gets a list of run steps from a thread run.
list: (threadId: string, runId: string, options?: RunStepsListRunStepsOptionalParams) => PagedAsyncIterableIterator<RunStep, RunStep[], PageSettings>
Property Value
(threadId: string, runId: string, options?: RunStepsListRunStepsOptionalParams) => PagedAsyncIterableIterator<RunStep, RunStep[], PageSettings>