'France'])] #[Groups(['carrier:item:read'])] private string $country = 'France'; #[ORM\Column(name: 'postal_code', length: 20, nullable: true)] #[Groups(['carrier:item:read'])] private ?string $postalCode = null; #[ORM\Column(length: 120, nullable: true)] #[Groups(['carrier:item:read'])] private ?string $city = null; #[ORM\Column(length: 255, nullable: true)] #[Groups(['carrier:item:read'])] private ?string $street = null; #[ORM\Column(name: 'street_complement', length: 255, nullable: true)] #[Groups(['carrier:item:read'])] private ?string $streetComplement = null; #[ORM\Column(options: ['default' => 0])] private int $position = 0; public function getId(): ?int { return $this->id; } public function getCarrier(): ?Carrier { return $this->carrier; } public function setCarrier(?Carrier $carrier): static { $this->carrier = $carrier; return $this; } public function getCountry(): string { return $this->country; } public function setCountry(string $country): static { $this->country = $country; return $this; } public function getPostalCode(): ?string { return $this->postalCode; } public function setPostalCode(?string $postalCode): static { $this->postalCode = $postalCode; return $this; } public function getCity(): ?string { return $this->city; } public function setCity(?string $city): static { $this->city = $city; return $this; } public function getStreet(): ?string { return $this->street; } public function setStreet(?string $street): static { $this->street = $street; return $this; } public function getStreetComplement(): ?string { return $this->streetComplement; } public function setStreetComplement(?string $streetComplement): static { $this->streetComplement = $streetComplement; return $this; } public function getPosition(): int { return $this->position; } public function setPosition(int $position): static { $this->position = $position; return $this; } }