Show / Hide Table of Contents

Class ToolCollection

Results of a Tool search. Contains both ToolSummary items and other information, such as metadata.

Inheritance
object
ToolCollection
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiagentService.Models
Assembly: OCI.DotNetSDK.Generativeaiagent.dll
Syntax
public class ToolCollection

Properties

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<ToolSummary> Items { get; set; }
Property Value
Type Description
List<ToolSummary>

List of Tools.

Remarks

Required

In this article
Back to top