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

GoogleCloudAiplatformV1FileData

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

URI-based data. A FileData message contains a URI pointing to data of a specific media type. It is used to represent images, audio, and video stored in Google Cloud Storage.

interface GoogleCloudAiplatformV1FileData {
displayName?: string;
fileUri?: string;
mimeType?: string;
}

§Properties

§
displayName?: string
[src]

Optional. The display name of the file. Used to provide a label or filename to distinguish files. This field is only returned in PromptMessage for prompt management. It is used in the Gemini calls only when server side tools (code_execution, google_search, and url_context) are enabled.

§
fileUri?: string
[src]

Required. The URI of the file in Google Cloud Storage.

§
mimeType?: string
[src]

Required. The IANA standard MIME type of the source data.