mirror of
https://github.com/sakaljurgis/actions-api.git
synced 2026-07-08 22:07:40 +00:00
initial commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?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,
|
||||
)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user