Show / Hide Table of Contents

Class ToolInput

Base object for tool input parameters. The 'toolInputType' discriminator determines the specific input structure to be used.

Inheritance
object
ToolInput
GenericToolInput
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiagentruntimeService.Models
Assembly: OCI.DotNetSDK.Generativeaiagentruntime.dll
Syntax
[JsonConverter(typeof(ToolInputModelConverter))]
public class ToolInput

Properties

ToolId

Declaration
[Required(ErrorMessage = "ToolId is required.")]
[JsonProperty(PropertyName = "toolId")]
public string ToolId { get; set; }
Property Value
Type Description
string

Unique OCID of the tool.

Remarks

Required

In this article
Back to top