mirror of
https://github.com/sakaljurgis/actions-api.git
synced 2026-07-08 22:07:40 +00:00
17 lines
381 B
PHP
17 lines
381 B
PHP
<?php
|
|
|
|
namespace App\Services\Google\DTO;
|
|
|
|
class ImageGenerationRequest
|
|
{
|
|
public function __construct(
|
|
public readonly string $prompt,
|
|
public readonly ?string $negativePrompt = null,
|
|
public readonly ?int $sampleCount = null,
|
|
public readonly ?string $aspectRatio = null,
|
|
public readonly ?string $safetySetting = null,
|
|
)
|
|
{
|
|
}
|
|
}
|