AgentParameterDetailArgs

data class AgentParameterDetailArgs(val description: Output<String>? = null, val required: Output<Boolean>? = null, val type: Output<AgentType>) : ConvertibleToJava<AgentParameterDetailArgs>

Parameter detail

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, required: Output<Boolean>? = null, type: Output<AgentType>)

Properties

Link copied to clipboard
val description: Output<String>? = null

Description of function parameter.

Link copied to clipboard
val required: Output<Boolean>? = null

Information about if a parameter is required for function call. Default to false.

Link copied to clipboard
val type: Output<AgentType>

The data type of the parameter.

Functions

Link copied to clipboard
open override fun toJava(): AgentParameterDetailArgs