0])] private int $position = 0; public function getId(): ?int { return $this->id; } public function getProvider(): ?Provider { return $this->provider; } public function setProvider(?Provider $provider): static { $this->provider = $provider; return $this; } public function getLabel(): ?string { return $this->label; } public function setLabel(string $label): static { $this->label = $label; return $this; } public function getBic(): ?string { return $this->bic; } public function setBic(string $bic): static { $this->bic = $bic; return $this; } public function getIban(): ?string { return $this->iban; } public function setIban(string $iban): static { $this->iban = $iban; return $this; } public function getPosition(): int { return $this->position; } public function setPosition(int $position): static { $this->position = $position; return $this; } }