Show / Hide Table of Contents

Class GoogleCloudAiplatformV1beta1FunctionCall

A predicted [FunctionCall] returned from the model that contains a string representing the [FunctionDeclaration.name] and a structured JSON object containing the parameters and their values.

Inheritance
object
GoogleCloudAiplatformV1beta1FunctionCall
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.FirebaseML.v2beta.Data
Assembly: Google.Apis.FirebaseML.v2beta.dll
Syntax
public class GoogleCloudAiplatformV1beta1FunctionCall : IDirectResponseSchema

Properties

Args

Optional. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details.

Declaration
[JsonProperty("args")]
public virtual IDictionary<string, object> Args { get; set; }
Property Value
Type Description
IDictionary<string, object>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Id

Optional. The unique id of the function call. If populated, the client to execute the function_call and return the response with the matching id.

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
string

Name

Required. The name of the function to call. Matches [FunctionDeclaration.name].

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX