From def2ce99da8fc1cf9903b8f9feec40fc6a339948 Mon Sep 17 00:00:00 2001 From: Boris Waaub Date: Thu, 26 Feb 2026 15:01:38 +0100 Subject: [PATCH] Add missing fields --- .../ChillPersonBundle/Actions/Upsert/UpsertMessage.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php b/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php index 998abe1aa..ad0d4fdde 100644 --- a/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php +++ b/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php @@ -17,4 +17,13 @@ class UpsertMessage public int $personIdentifierDefinitionId; public ?string $firstName = null; public ?string $lastName = null; + public ?string $gender = null; + public ?string $birthdate = null; + public ?int $mobileNumber = null; + public ?int $phoneNumber = null; + public ?string $address = null; + public ?string $extra = null; + public ?string $streetNumber = null; + public ?int $postcode = null; + public ?string $city = null; }