Show / Hide Table of Contents

Class FunctionCall

Represent a function call the client need to execute in order to fulfill the required action.

Inheritance
object
FunctionCall
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
public class FunctionCall

Properties

Arguments

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

Arguments for the function call as a JSON string.

Remarks

Required

Name

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

Name of the function to be executed.

Remarks

Required

In this article
Back to top