Ajout de nouveaux champs dans UpsertMessage pour gérer les informations supplémentaires sur la personne

This commit is contained in:
Boris Waaub
2026-03-30 17:17:33 +02:00
parent e359c01df3
commit 4e250dd9eb

View File

@@ -14,6 +14,7 @@ namespace Chill\PersonBundle\Actions\Upsert;
class UpsertMessage
{
public string $externalId;
public string $moreExternalIds;
public int $personIdentifierDefinitionId;
public ?string $firstName = null;
public ?string $lastName = null;
@@ -21,9 +22,14 @@ class UpsertMessage
public ?string $birthdate = null;
public ?string $mobileNumber = null;
public ?string $phoneNumber = null;
public ?array $otherPhoneNumbers = [];
public ?array $spokenLanguages = [];
public ?string $countryOfBirth = null;
public ?string $placeOfBirth = null;
public ?string $deathdate = null;
public ?string $center = null;
public ?string $addressStreet = null;
/**
* The extra field of the address.
*/
@@ -31,7 +37,6 @@ class UpsertMessage
public ?string $addressStreetNumber = null;
public ?string $addressPostcode = null;
public ?string $addressCity = null;
public ?string $center = null;
public function hasAddressInfo(): bool
{