mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2026-04-04 12:03:44 +00:00
Ajout de nouveaux champs dans UpsertMessage pour gérer les informations supplémentaires sur la personne
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user