interface ImageDelta {
    data?: string;
    mime_type?: GeminiNextGenAPIClient.Interactions.ImageMimeType;
    resolution?: "high" | "low" | "medium";
    type: "image";
    uri?: string;
}

Properties

data?: string

The mime type of the image.

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

The resolution of the media.

type: "image"

Used as the OpenAPI type discriminator for the content oneof.

uri?: string