Files
actions-api/app/Services/Google/DTO/ImageGenerationRequest.php
T
Jurgis Sakalauskas 6df493fab3 initial commit
2025-01-08 12:45:00 +02:00

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,
)
{
}
}