interface VideoDelta {
    data?: string;
    mime_type?: GeminiNextGenAPIClient.Interactions.VideoMimeType;
    resolution?: "high" | "low" | "medium";
    type: "video";
    uri?: string;
}

Properties

data?: string

The mime type of the video.

resolution?: "high" | "low" | "medium"

The resolution of the media.

type: "video"

Used as the OpenAPI type discriminator for the content oneof.

uri?: string