wip: insurance booking in edit flow

This commit is contained in:
Björn Fromme
2025-10-07 18:09:16 +02:00
parent 7304fb50c6
commit c3008d7f7a
10 changed files with 1215 additions and 0 deletions
+10
View File
@@ -95,6 +95,16 @@ class Insurance
#[Groups(['api:single', 'api:list'])]
public array $containedInsuranceIds = [];
/**
* @var array<int> Participant indices assigned to this insurance (booking data only)
*/
public array $mapping = [];
/**
* @var array<int, float> Individual prices per participant index (booking data only)
*/
public array $individualPrice = [];
public function __toString(): string
{
return (string) $this->id;