<?phpdeclare(strict_types=1);namespace App\Domain\Site\Model;class BillingInformation{ public function __construct( private string $name, private string $country, private string $city, private string $street, private string $streetNumber, private string $postalCode, private string $iban, private bool $isBankWebhook ) { } public function getName(): string { return $this->name; } public function setName(string $name): void { $this->name = $name; } public function getCountry(): string { return $this->country; } public function setCountry(string $country): void { $this->country = $country; } public function getCity(): string { return $this->city; } public function setCity(string $city): void { $this->city = $city; } public function getStreet(): string { return $this->street; } public function setStreet(string $street): void { $this->street = $street; } public function getStreetNumber(): string { return $this->streetNumber; } public function setStreetNumber(string $streetNumber): void { $this->streetNumber = $streetNumber; } public function getPostalCode(): string { return $this->postalCode; } public function setPostalCode(string $postalCode): void { $this->postalCode = $postalCode; } public function getIban(): string { return $this->iban; } public function setIban(string $iban): void { $this->iban = $iban; } public function getIsBankWebhook(): bool { return $this->isBankWebhook; } public function setIsBankWebhook(bool $flag): self { $this->isBankWebhook = $flag; return $this; }}