From a46244dc1456b53ea6977b48a1881ae60a627328 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..a90dffa32 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 ?string $mobileNumber = null; + public ?string $phoneNumber = null; + public ?string $address = null; + public ?string $extra = null; + public ?string $streetNumber = null; + public ?string $postcode = null; + public ?string $city = null; }