src/Entity/RecordTwitter.php line 9
<?phpnamespace App\Entity;use App\Repository\RecordTwitterRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: RecordTwitterRepository::class)]class RecordTwitter extends RecordSocialMedia{const REACH_METRIC_NAME = 'page_posts_impressions';#[ORM\Column(length: 255, nullable: true)]private ?string $tweetsRetweets = null;#[ORM\Column(length: 255, nullable: true)]private ?string $tweetsLikes = null;#[ORM\Column(length: 255, nullable: true)]private ?string $tweetsReplies = null;#[ORM\Column(length: 255, nullable: true)]private ?string $tweetsQuotes = null;#[ORM\Column(length: 255, nullable: true)]private ?string $tweetsUrlLinkClicks = null;#[ORM\Column(length: 255, nullable: true)]private ?string $profileOverallTweets = null;public function getTweetsRetweets(): ?string{return $this->tweetsRetweets;}public function setTweetsRetweets(?string $tweetsRetweets): static{$this->tweetsRetweets = $tweetsRetweets;return $this;}public function getTweetsLikes(): ?string{return $this->tweetsLikes;}public function setTweetsLikes(?string $tweetsLikes): static{$this->tweetsLikes = $tweetsLikes;return $this;}public function getTweetsReplies(): ?string{return $this->tweetsReplies;}public function setTweetsReplies(?string $tweetsReplies): static{$this->tweetsReplies = $tweetsReplies;return $this;}public function getTweetsQuotes(): ?string{return $this->tweetsQuotes;}public function setTweetsQuotes(?string $tweetsQuotes): static{$this->tweetsQuotes = $tweetsQuotes;return $this;}public function getTweetsUrlLinkClicks(): ?string{return $this->tweetsUrlLinkClicks;}public function setTweetsUrlLinkClicks(?string $tweetsUrlLinkClicks): static{$this->tweetsUrlLinkClicks = $tweetsUrlLinkClicks;return $this;}public function getReachMetricName(): ?string{return self::REACH_METRIC_NAME;}public function isTwitter(): bool{return true;}public function getProfileOverallTweets(): ?string{return $this->profileOverallTweets;}public function setProfileOverallTweets(?string $profileOverallTweets): static{$this->profileOverallTweets = $profileOverallTweets;return $this;}}