diff --git a/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php b/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php index 99ac19920..09f95fd44 100644 --- a/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php +++ b/src/Bundle/ChillPersonBundle/Actions/Upsert/UpsertMessage.php @@ -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 {