FunctionResponse

data class FunctionResponse(val name: String, val response: Map<String, Any?> = emptyMap(), val id: String? = null)

Represents a function response.

Constructors

Link copied to clipboard
constructor(name: String, response: Map<String, Any?> = emptyMap(), id: String? = null)

Properties

Link copied to clipboard
val id: String? = null

The unique identifier for this function response.

Link copied to clipboard

The name of the function.

Link copied to clipboard

The response from the function.