final case class RunStepObject(id: String, object: Object, createdAt: Int, assistantId: String, threadId: String, runId: String, type: Type, status: Status, stepDetails: StepDetails, lastError: Optional[LastError], expiredAt: Optional[Int], cancelledAt: Optional[Int], failedAt: Optional[Int], completedAt: Optional[Int], metadata: Optional[Metadata], usage: RunStepCompletionUsage) extends Product with Serializable
RunStepObject model
Represents a step in execution of a run.
- id
The identifier of the run step, which can be referenced in API endpoints.
- object
The object type, which is always
thread.run.step.- createdAt
The Unix timestamp (in seconds) for when the run step was created.
- assistantId
The ID of the [assistant](/docs/api-reference/assistants) associated with the run step.
- threadId
The ID of the [thread](/docs/api-reference/threads) that was run.
- runId
The ID of the [run](/docs/api-reference/runs) that this run step is a part of.
- type
The type of run step, which can be either
message_creationortool_calls.- status
The status of the run step, which can be either
in_progress,cancelled,failed,completed, orexpired.- stepDetails
The details of the run step.
- lastError
The last error associated with this run step. Will be
nullif there are no errors.- expiredAt
The Unix timestamp (in seconds) for when the run step expired. A step is considered expired if the parent run is expired.
- cancelledAt
The Unix timestamp (in seconds) for when the run step was cancelled.
- failedAt
The Unix timestamp (in seconds) for when the run step failed.
- completedAt
The Unix timestamp (in seconds) for when the run step completed.
- metadata
Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long.
- Alphabetic
- By Inheritance
- RunStepObject
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new RunStepObject(id: String, object: Object, createdAt: Int, assistantId: String, threadId: String, runId: String, type: Type, status: Status, stepDetails: StepDetails, lastError: Optional[LastError], expiredAt: Optional[Int], cancelledAt: Optional[Int], failedAt: Optional[Int], completedAt: Optional[Int], metadata: Optional[Metadata], usage: RunStepCompletionUsage)
- id
The identifier of the run step, which can be referenced in API endpoints.
- object
The object type, which is always
thread.run.step.- createdAt
The Unix timestamp (in seconds) for when the run step was created.
- assistantId
The ID of the [assistant](/docs/api-reference/assistants) associated with the run step.
- threadId
The ID of the [thread](/docs/api-reference/threads) that was run.
- runId
The ID of the [run](/docs/api-reference/runs) that this run step is a part of.
- type
The type of run step, which can be either
message_creationortool_calls.- status
The status of the run step, which can be either
in_progress,cancelled,failed,completed, orexpired.- stepDetails
The details of the run step.
- lastError
The last error associated with this run step. Will be
nullif there are no errors.- expiredAt
The Unix timestamp (in seconds) for when the run step expired. A step is considered expired if the parent run is expired.
- cancelledAt
The Unix timestamp (in seconds) for when the run step was cancelled.
- failedAt
The Unix timestamp (in seconds) for when the run step failed.
- completedAt
The Unix timestamp (in seconds) for when the run step completed.
- metadata
Set of 16 key-value pairs that can be attached to an object. This can be useful for storing additional information about the object in a structured format. Keys can be a maximum of 64 characters long and values can be a maxium of 512 characters long.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val assistantId: String
- val cancelledAt: Optional[Int]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- val completedAt: Optional[Int]
- val createdAt: Int
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val expiredAt: Optional[Int]
- val failedAt: Optional[Int]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- val id: String
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val lastError: Optional[LastError]
- val metadata: Optional[Metadata]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- val object: Object
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val runId: String
- val status: Status
- val stepDetails: StepDetails
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val threadId: String
- val type: Type
- val usage: RunStepCompletionUsage
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])