sellRecords; } /** * @param mixed $sellRecords */ public function setSellRecords( $sellRecords ) { $this->sellRecords = $sellRecords; } /** * @return mixed */ public function getGoogleAccessToken() { return $this->googleAccessToken; } /** * @param mixed $googleAccessToken */ public function setGoogleAccessToken( $googleAccessToken ) { $this->googleAccessToken = $googleAccessToken; } /** * @return mixed */ public function getProducts() { return $this->products; } /** * @param mixed $products */ public function setProducts( $products ) { $this->products = $products; } /** * @ORM\ManyToMany(targetEntity="AppBundle\Entity\ProductCategory", mappedBy="user") */ private $categories; /** * @return mixed */ public function getCategories() { return $this->categories; } /** * @param mixed $categories */ public function setCategories( $categories ) { $this->categories = $categories; } /** * Get id * * @return int */ public function getId() { return $this->id; } /** * Set googleId * * @param string $googleId * * @return User */ public function setGoogleId( $googleId ) { $this->googleId = $googleId; return $this; } /** * Get googleId * * @return string */ public function getGoogleId() { return $this->googleId; } }