averageMonthlyEarnings; } /** * @param mixed $averageMonthlyEarnings */ public function setAverageMonthlyEarnings($averageMonthlyEarnings) { $this->averageMonthlyEarnings = $averageMonthlyEarnings; } /** * @return mixed */ public function getDisponibility() { return $this->disponibility; } /** * @param mixed $disponibility */ public function setDisponibility($disponibility) { $this->disponibility = $disponibility; } /** * @return mixed */ public function getSeriesFestivals() { return $this->seriesFestivals; } /** * @param mixed $seriesFestivals */ public function setSeriesFestivals($seriesFestivals) { $this->seriesFestivals = $seriesFestivals; } /** * @return mixed */ public function getExpenses() { return $this->expenses; } /** * @param mixed $expenses */ public function setExpenses($expenses) { $this->expenses = $expenses; } /** * @return mixed */ public function getProductsSold() { return $this->productsSold; } /** * @return mixed */ public function addProductsSold( $product ) { return $this->productsSold[] = $product; } /** * @param mixed $productsSold */ public function setProductsSold( $productsSold ) { $this->productsSold = $productsSold; } /** * @ORM\OneToMany(targetEntity="App\Entity\SellRecord", mappedBy="user") */ private $sellRecords; /** * @return mixed */ public function getSellRecords() { return $this->sellRecords; } /** * @param mixed $sellRecords */ public function setSellRecords( $sellRecords ) { $this->sellRecords = $sellRecords; } /** * @param mixed $sellRecords */ public function addSellRecords( $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 getDisqusAccessToken() { return $this->disqusAccessToken; } /** * @param mixed $disqusAccessToken */ public function setDisqusAccessToken( $disqusAccessToken ) { $this->disqusAccessToken = $disqusAccessToken; } /** * @return mixed */ public function getTwitterAccessToken() { return $this->twitterAccessToken; } /** * @param mixed $twitterAccessToken */ public function setTwitterAccessToken( $TwitterAccessToken ) { $this->twitterAccessToken = $TwitterAccessToken; } /** * @return mixed */ public function getProducts() { return $this->products; } /** * @param mixed $products */ public function setProducts( $products ) { $this->products = $products; } /** * @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; } /** * Add product * * @param \App\Entity\Product $product * * @return User */ public function addProduct( \App\Entity\Product $product ) { $this->products[] = $product; return $this; } /** * Remove product * * @param \App\Entity\Product $product */ public function removeProduct( \App\Entity\Product $product ) { $this->products->removeElement( $product ); } /** * Remove productsSold * * @param \App\Entity\ProductSold $productsSold */ public function removeProductsSold( \App\Entity\ProductSold $productsSold ) { $this->productsSold->removeElement( $productsSold ); } /** * Add category * * @param \App\Entity\ProductCategory $category * * @return User */ public function addCategory( \App\Entity\ProductCategory $category ) { $this->categories[] = $category; return $this; } /** * Remove category * * @param \App\Entity\ProductCategory $category */ public function removeCategory( \App\Entity\ProductCategory $category ) { $this->categories->removeElement( $category ); } /** * Add sellRecord * * @param \App\Entity\SellRecord $sellRecord * * @return User */ public function addSellRecord( \App\Entity\SellRecord $sellRecord ) { $this->sellRecords[] = $sellRecord; return $this; } /** * Remove sellRecord * * @param \App\Entity\SellRecord $sellRecord */ public function removeSellRecord( \App\Entity\SellRecord $sellRecord ) { $this->sellRecords->removeElement( $sellRecord ); } /** * Add festival. * * @param \App\Entity\Festival $festival * * @return User */ public function addFestival( \App\Entity\Festival $festival ) { $this->festivals[] = $festival; return $this; } /** * Remove festival. * * @param \App\Entity\Festival $festival * * @return boolean TRUE if this collection contained the specified element, FALSE otherwise. */ public function removeFestival( \App\Entity\Festival $festival ) { return $this->festivals->removeElement( $festival ); } /** * Get festivals. * * @return \Doctrine\Common\Collections\Collection */ public function getFestivals() { return $this->festivals; } /** * Set activeFestival. * * @param \App\Entity\Festival|null $activeFestival * * @return User */ public function setActiveFestival( \App\Entity\Festival $activeFestival = null ) { $this->activeFestival = $activeFestival; return $this; } /** * Get activeFestival. * * @return \App\Entity\Festival|null */ public function getActiveFestival() { return $this->activeFestival; } /** * Set twitterId. * * @param string|null $twitterId * * @return User */ public function setTwitterId( $twitterId = null ) { $this->twitterId = $twitterId; return $this; } /** * Get twitterId. * * @return string|null */ public function getTwitterId() { return $this->twitterId; } /** * Set disqusId. * * @param string|null $disqusId * * @return User */ public function setDisqusId( $disqusId = null ) { $this->disqusId = $disqusId; return $this; } /** * Get disqusId. * * @return string|null */ public function getDisqusId() { return $this->disqusId; } /** * Set mastodonId. * * @param string|null $mastodonId * * @return User */ public function setMastodonId($mastodonId = null) { $this->mastodonId = $mastodonId; return $this; } /** * Get mastodonId. * * @return string|null */ public function getMastodonId() { return $this->mastodonId; } /** * Add seriesFestival. * * @param \App\Entity\SerieFestival $seriesFestival * * @return User */ public function addSeriesFestival(\App\Entity\SerieFestival $seriesFestival) { $this->seriesFestivals[] = $seriesFestival; return $this; } /** * Remove seriesFestival. * * @param \App\Entity\SerieFestival $seriesFestival * * @return boolean TRUE if this collection contained the specified element, FALSE otherwise. */ public function removeSeriesFestival(\App\Entity\SerieFestival $seriesFestival) { return $this->seriesFestivals->removeElement($seriesFestival); } /** * Add expense. * * @param \App\Entity\ExpenseKind $expense * * @return User */ public function addExpense(\App\Entity\ExpenseKind $expense) { $this->expenses[] = $expense; return $this; } /** * Remove expense. * * @param \App\Entity\ExpenseKind $expense * * @return boolean TRUE if this collection contained the specified element, FALSE otherwise. */ public function removeExpense(\App\Entity\ExpenseKind $expense) { return $this->expenses->removeElement($expense); } }