TenantAtlas/apps/platform/app/Services/Pdf/PdfRenderRequest.php
ahmido d43ebcb4ee feat(report): implement management report pdf v1 (#449)
Added PDF generation service for management reports as per Spec 378, including Gotenberg integration in docker-compose and configuration updates.

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #449
2026-06-14 18:36:07 +00:00

21 lines
499 B
PHP

<?php
declare(strict_types=1);
namespace App\Services\Pdf;
final class PdfRenderRequest
{
/**
* @param array<string, string> $assets
* @param array<string, bool|float|int|string> $options
*/
public function __construct(
public readonly string $html,
public readonly array $assets = [],
public readonly array $options = [],
public readonly ?string $correlationId = null,
public readonly ?string $outputFilename = null,
) {}
}