id; } /** * @return string|null [description] */ public function getTitle(): ?string { return $this->title; } /** * @param string $title [description] * * @return self [description] */ public function setTitle(string $title): self { $this->title = $title; return $this; } /** * @return array|null [description] */ public function getSocialNetwork(): ?array { return $this->socialNetwork; } /** * @param array $socialNetwork [description] * * @return self [description] */ public function setSocialNetwork(array $socialNetwork): self { $this->socialNetwork = $socialNetwork; return $this; } /** * @return string|null [description] */ public function getHashtag(): ?string { return $this->hashtag; } /** * @param string $hashtag [description] * * @return self [description] */ public function setHashtag(string $hashtag): self { $this->hashtag = $hashtag; return $this; } /** * @return \DateTimeInterface|null [description] */ public function getDateEndPost(): ?\DateTimeInterface { return $this->dateEndPost; } /** * @param \DateTimeInterface|null $dateEndPost [description] * * @return self [description] */ public function setDateEndPost(?\DateTimeInterface $dateEndPost): self { $this->dateEndPost = $dateEndPost; return $this; } /** * @return \DateTimeInterface|null [description] */ public function getDateBeginPost(): ?\DateTimeInterface { return $this->dateBeginPost; } /** * @param \DateTimeInterface $dateBeginPost [description] * * @return self [description] */ public function setDateBeginPost(?\DateTimeInterface $dateBeginPost): self { $this->dateBeginPost = $dateBeginPost; return $this; } /** * @return string|null [description] */ public function getMessage(): ?string { return $this->message; } /** * @param string $message [description] * * @return self [description] */ public function setMessage(string $message): self { $this->message = $message; return $this; } /** * @return array|null [description] */ public function getMediasId(): ?array { return $this->mediasId; } /** * @param array|null $medias_id [description] * * @return self [description] */ public function setMediasId(?array $mediasId): self { $this->mediasId = $mediasId; return $this; } /** * @return bool|null [description] */ public function getCanLike(): ?bool { return $this->canLike; } /** * @param bool $canLike [description] * * @return self [description] */ public function setCanLike(?bool $canLike): self { $this->canLike = $canLike; return $this; } /** * @return bool|null [description] */ public function getCanComment(): ?bool { return $this->canComment; } /** * @param bool $canComment [description] * * @return self [description] */ public function setCanComment(?bool $canComment): self { $this->canComment = $canComment; return $this; } /** * @return bool|null [description] */ public function getCanShare(): ?bool { return $this->canShare; } /** * @param bool $canShare [description] * * @return self [description] */ public function setCanShare(?bool $canShare): self { $this->canShare = $canShare; return $this; } /** * @return string|null [description] */ public function getPostDiffusion(): ?string { return $this->postDiffusion; } /** * @param string $postDiffusion [description] * * @return self [description] */ public function setPostDiffusion(string $postDiffusion): self { $this->postDiffusion = $postDiffusion; return $this; } /** * @return string|null [description] */ public function getPostResponse(): ?string { return $this->postResponse; } /** * @param string $postResponse [description] * * @return self [description] */ public function setPostResponse(string $postResponse): self { $this->postResponse = $postResponse; return $this; } /** * @return Exports|null [description] */ public function getExport(): ?Exports { return $this->export; } /** * @param Exports $export [description] * * @return self [description] */ public function setExport(Exports $export): self { $this->export = $export; return $this; } }