Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudAiplatformV1PartialArg

import type { GoogleCloudAiplatformV1PartialArg } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Partial argument value of the function call.

interface GoogleCloudAiplatformV1PartialArg {
boolValue?: boolean;
jsonPath?: string;
nullValue?: "NULL_VALUE";
numberValue?: number;
stringValue?: string;
willContinue?: boolean;
}

§Properties

§
boolValue?: boolean
[src]

Optional. Represents a boolean value.

§
jsonPath?: string
[src]

Required. A JSON Path (RFC 9535) to the argument being streamed. https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data".

§
nullValue?: "NULL_VALUE"
[src]

Optional. Represents a null value.

§
numberValue?: number
[src]

Optional. Represents a double value.

§
stringValue?: string
[src]

Optional. Represents a string value.

§
willContinue?: boolean
[src]

Optional. Whether this is not the last part of the same json_path. If true, another PartialArg message for the current json_path is expected to follow.