new Link( fromProperty: 'jobId', toProperty: 'id', fromClass: ScrapingStatusResponse::class, toClass: ScrapingJob::class ) ] ), ], )] readonly class ScrapingStatusResponse { public function __construct( #[ApiProperty(identifier: true)] public string $jobId, #[ApiProperty] public string $status, #[ApiProperty] public ?float $progress = null, #[ApiProperty] public ?string $error = null ) { } }