<?php
namespace App\Entity;
use App\Repository\RecyclinkInformationsRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=RecyclinkInformationsRepository::class)
*/
class RecyclinkInformations
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $la_firstname;
/**
* @ORM\Column(type="string", length=255)
*/
private $la_lastname;
/**
* @ORM\Column(type="string", length=255)
*/
private $adresse;
/**
* @ORM\Column(type="string", length=255)
*/
private $codePostal;
/**
* @ORM\Column(type="string", length=255)
*/
private $ville;
/**
* @ORM\Column(type="string", length=255)
*/
private $siret;
/**
* @ORM\Column(type="string", length=255)
*/
private $phone;
/**
* @ORM\Column(type="string", length=255)
*/
private $email;
/**
* @ORM\Column(type="string", length=255)
*/
private $pk_stripe;
/**
* @ORM\Column(type="string", length=255)
*/
private $sk_stripe;
public function getId(): ?int
{
return $this->id;
}
public function getLaFirstname(): ?string
{
return $this->la_firstname;
}
public function setLaFirstname(string $la_firstname): self
{
$this->la_firstname = $la_firstname;
return $this;
}
public function getLaLastname(): ?string
{
return $this->la_lastname;
}
public function setLaLastname(string $la_lastname): self
{
$this->la_lastname = $la_lastname;
return $this;
}
public function getAdresse(): ?string
{
return $this->adresse;
}
public function setAdresse(string $adresse): self
{
$this->adresse = $adresse;
return $this;
}
public function getCodePostal(): ?string
{
return $this->codePostal;
}
public function setCodePostal(string $codePostal): self
{
$this->codePostal = $codePostal;
return $this;
}
public function getVille(): ?string
{
return $this->ville;
}
public function setVille(string $ville): self
{
$this->ville = $ville;
return $this;
}
public function getSiret(): ?string
{
return $this->siret;
}
public function setSiret(string $siret): self
{
$this->siret = $siret;
return $this;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setPhone(string $phone): self
{
$this->phone = $phone;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(string $email): self
{
$this->email = $email;
return $this;
}
public function getPkStripe(): ?string
{
return $this->pk_stripe;
}
public function setPkStripe(string $pk_stripe): self
{
$this->pk_stripe = $pk_stripe;
return $this;
}
public function getSkStripe(): ?string
{
return $this->sk_stripe;
}
public function setSkStripe(string $sk_stripe): self
{
$this->sk_stripe = $sk_stripe;
return $this;
}
}