username; } public function setUsername(string $username): self { $this->username = $username; return $this; } public function getGender(): GenderEnum { return $this->gender; } public function setGender(GenderEnum $gender): self { $this->gender = $gender; return $this; } public function getName(): string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getGivenName(): string { return $this->givenName; } public function setGivenName(string $givenName): self { $this->givenName = $givenName; return $this; } public function getStreetAddress1(): string { return $this->streetAddress1; } public function setStreetAddress1(string $streetAddress1): self { $this->streetAddress1 = $streetAddress1; return $this; } public function getStreetAddress2(): ?string { return $this->streetAddress2; } public function setStreetAddress2(?string $streetAddress2): self { $this->streetAddress2 = $streetAddress2; return $this; } public function getStreetAddress3(): ?string { return $this->streetAddress3; } public function setStreetAddress3(?string $streetAddress3): self { $this->streetAddress3 = $streetAddress3; return $this; } public function getPostalCode(): string { return $this->postalCode; } public function setPostalCode(string $postalCode): self { $this->postalCode = $postalCode; return $this; } public function getCity(): string { return $this->city; } public function setCity(string $city): self { $this->city = $city; return $this; } public function getCountryId(): int { return $this->countryId; } public function setCountryId(int $countryId): self { $this->countryId = $countryId; return $this; } public function getPhone(): string { return $this->phone; } public function setPhone(string $phone): self { $this->phone = $phone; return $this; } public function getMobile(): ?string { return $this->mobile; } public function setMobile(?string $mobile): self { $this->mobile = $mobile; return $this; } public function getEmail(): string { return $this->email; } public function setEmail(string $email): self { $this->email = $email; return $this; } public function getCreationDate(): ?\DateTimeInterface { return $this->creationDate; } public function setCreationDate(?\DateTimeInterface $creationDate): self { $this->creationDate = $creationDate; return $this; } public function getAuthorId(): ?int { return $this->authorId; } public function setAuthorId(?int $authorId): self { $this->authorId = $authorId; return $this; } }