import type * as ElevenLabs from "../index"; /** * Request body for the Google Gemini 3.1 Flash image model. */ export interface Gemini31FlashImageRequest { /** Include to send the generation's result to the workspace's configured flows webhooks once it completes or fails. The webhook payload matches the terminal response of the corresponding GET endpoint. */ webhook?: ElevenLabs.WebhookTarget; /** A text description of the image to generate. */ prompt: string; /** Up to 14 reference images to edit or draw from. */ images?: ElevenLabs.ImageReference[]; /** The aspect ratio of the output image. With `auto`, the model picks an aspect ratio based on the inputs. */ aspectRatio?: ElevenLabs.Gemini31FlashImageRequestAspectRatio; /** The resolution of the output image. */ resolution?: ElevenLabs.Gemini31FlashImageRequestResolution; }