> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# OutputItemImageGenerationCall

## Example Usage

```typescript theme={null}
import { OutputItemImageGenerationCall } from "@openrouter/sdk/models";

let value: OutputItemImageGenerationCall = {
  id: "imagegen-abc123",
  result:
    "iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==",
  status: "completed",
  type: "image_generation_call",
};
```

## Fields

| Field    | Type                                                                                        | Required             | Description | Example   |
| -------- | ------------------------------------------------------------------------------------------- | -------------------- | ----------- | --------- |
| `id`     | *string*                                                                                    | :heavy\_check\_mark: | N/A         |           |
| `result` | *string*                                                                                    | :heavy\_minus\_sign: | N/A         |           |
| `status` | [models.ImageGenerationStatus](../models/imagegenerationstatus.mdx)                         | :heavy\_check\_mark: | N/A         | completed |
| `type`   | [models.OutputItemImageGenerationCallType](../models/outputitemimagegenerationcalltype.mdx) | :heavy\_check\_mark: | N/A         |           |
