id = $id; return $this; } /** * Get id * * @return string */ public function getId() { return $this->id; } /** * Set slug * * @param string $slug * * @return Product */ public function setSlug($slug) { $this->slug = $slug; return $this; } /** * Get slug * * @return string */ public function getSlug() { return $this->slug; } /** * Set name * * @param string $name * * @return Product */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set description * * @param string $description * * @return Product */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return string */ public function getDescription() { return $this->description; } /** * Set categories * * @param array $categories * * @return Product */ public function setCategories(array $categories) { $this->categories = $categories; return $this; } /** * Get categories * * @return array */ public function getCategories() { return $this->categories; } /** * Set datetimeStart * * @param \DateTime $datetimeStart * * @return Product */ public function setDatetimeStart($datetimeStart) { $this->datetimeStart = $datetimeStart; return $this; } /** * Get datetimeStart * * @return \DateTime */ public function getDatetimeStart() { return $this->datetimeStart; } /** * Set datetimeEnd * * @param \DateTime $datetimeEnd * * @return Product */ public function setDatetimeEnd($datetimeEnd) { $this->datetimeEnd = $datetimeEnd; return $this; } /** * Get datetimeEnd * * @return \DateTime */ public function getDatetimeEnd() { return $this->datetimeEnd; } /** * Set meetingSchedule * * @param array $meetingSchedule * * @return Product */ public function setMeetingSchedule(array $meetingSchedule) { $this->meetingSchedule = $meetingSchedule; return $this; } /** * Get meetingSchedule * * @return array */ public function getMeetingSchedule() { return $this->meetingSchedule; } /** * Set placeCode * * @param string $placeCode * * @return Product */ public function setPlaceCode($placeCode) { $this->placeCode = $placeCode; return $this; } /** * Get placeCode * * @return string */ public function getPlaceCode() { return $this->placeCode; } /** * Set place * * @param string $place * * @return Product */ public function setPlace($place) { $this->place = $place; return $this; } /** * Get place * * @return string */ public function getPlace() { return $this->place; } /** * Set streetAddress * * @param string $streetAddress * * @return Product */ public function setStreetAddress($streetAddress) { $this->streetAddress = $streetAddress; return $this; } /** * Get streetAddress * * @return string */ public function getStreetAddress() { return $this->streetAddress; } /** * Set postalCode * * @param string $postalCode * * @return Product */ public function setPostalCode($postalCode) { $this->postalCode = $postalCode; return $this; } /** * Get postalCode * * @return string */ public function getPostalCode() { return $this->postalCode; } /** * Set city * * @param string $city * * @return Product */ public function setCity($city) { $this->city = $city; return $this; } /** * Get city * * @return string */ public function getCity() { return $this->city; } /** * Set country * * @param string $country * * @return Product */ public function setCountry($country) { $this->country = $country; return $this; } /** * Get country * * @return string */ public function getCountry() { return $this->country; } /** * Set latitude * * @param string $latitude * * @return Product */ public function setLatitude($latitude) { $this->latitude = $latitude; return $this; } /** * Get latitude * * @return string */ public function getLatitude() { return $this->latitude; } /** * Set longitude * * @param string $longitude * * @return Product */ public function setLongitude($longitude) { $this->longitude = $longitude; return $this; } /** * Get longitude * * @return string */ public function getLongitude() { return $this->longitude; } /** * Set mediumimage * * @param string $mediumimage * * @return Product */ public function setMediumimage($mediumimage) { $this->mediumimage = $mediumimage; return $this; } /** * Get mediumimage * * @return string */ public function getMediumimage() { return $this->mediumimage; } /** * Set largeimage * * @param string $largeimage * * @return Product */ public function setLargeimage($largeimage) { $this->largeimage = $largeimage; return $this; } /** * Get largeimage * * @return string */ public function getLargeimage() { return $this->largeimage; } /** * Set deepLink * * @param string $deepLink * * @return Product */ public function setDeepLink($deepLink) { $this->deepLink = $deepLink; return $this; } /** * Get deepLink * * @return string */ public function getDeepLink() { return $this->deepLink; } /** * Set priceMini * * @param float $priceMini * * @return Product */ public function setPriceMini($priceMini) { $this->priceMini = $priceMini; return $this; } /** * Get priceMini * * @return float */ public function getPriceMini() { return $this->priceMini; } /** * Set priceMaxi * * @param float $priceMaxi * * @return Product */ public function setPriceMaxi($priceMaxi) { $this->priceMaxi = $priceMaxi; return $this; } /** * Get priceMaxi * * @return float */ public function getPriceMaxi() { return $this->priceMaxi; } /** * Set artists * * @param string $artists * * @return Product */ public function setArtists($artists) { $this->artists = $artists; return $this; } /** * Get artists * * @return string */ public function getArtists() { return $this->artists; } }