ResponseInputItem

@Serializable
data class ResponseInputItem(val id: String? = null, val type: String? = null, val status: String? = null, val role: String? = null, val content: JsonElement? = null)

Structured response input item.

Constructors

Link copied to clipboard
constructor(id: String? = null, type: String? = null, status: String? = null, role: String? = null, content: JsonElement? = null)

Properties

Link copied to clipboard
@SerialName(value = "content")
val content: JsonElement? = null
Link copied to clipboard
@SerialName(value = "id")
val id: String? = null
Link copied to clipboard
@SerialName(value = "role")
val role: String? = null
Link copied to clipboard
@SerialName(value = "status")
val status: String? = null
Link copied to clipboard
@SerialName(value = "type")
val type: String? = null