<?php declare(strict_types=1);namespace Dmits\InfoFlag\Struct;use Shopware\Core\Framework\Struct\Struct;class InfoFlag extends Struct{ /** * @var string */ protected $position; /** * @var bool */ protected $mobile; /** * @var bool */ protected $mobileland; /** * @var bool */ protected $tablet; /** * @var bool */ protected $tabletland; /** * @var bool */ protected $desktop; /** * @var string */ protected $content; /** * @var string */ protected $width; /** * @var string */ protected $height; /** * @var string */ protected $textcolor; /** * @var string */ protected $bgcolor; /** * @var string */ protected $closeborderradius; /** * @var string */ protected $closetextcolor; /** * @var string */ protected $closebgcolor; /** * @var string */ protected $closetime; /** * @var string */ protected $contentpadding; /** * @var bool */ protected $close; /** * @var bool */ protected $active; /** * @var bool */ protected $border; public function getActive(): bool { return $this->active; } public function setActive(bool $active): void { $this->active = $active; } public function getPosition(): string { return $this->position; } public function setPosition(string $position): void { $this->position = $position; } public function getMobile(): bool { return $this->mobile; } public function setMobile(bool $mobile): void { $this->mobile = $mobile; } public function getMobileland(): bool { return $this->mobileland; } public function setMobileland(bool $mobileland): void { $this->mobileland = $mobileland; } public function getTablet(): bool { return $this->tablet; } public function setTablet(bool $tablet): void { $this->tablet = $tablet; } public function getTabletland(): bool { return $this->tabletland; } public function setTabletland(bool $tabletland): void { $this->tabletland = $tabletland; } public function getDesktop(): bool { return $this->desktop; } public function setDesktop(bool $desktop): void { $this->desktop = $desktop; } public function getClose(): bool { return $this->close; } public function setClose(bool $close): void { $this->close = $close; } public function getBorder(): bool { return $this->border; } public function setBorder(bool $border): void { $this->border = $border; } public function getContent(): string { return $this->content; } public function setContent(string $content): void { $this->content = $content; } public function getWidth(): string { return $this->width; } public function setWidth(string $width): void { $this->width = $width; } public function getHeight(): string { return $this->height; } public function setHeight(string $height): void { $this->height = $height; } public function getTextcolor(): string { return $this->textcolor; } public function setTextcolor(string $textcolor): void { $this->textcolor = $textcolor; } public function getBgcolor(): string { return $this->bgcolor; } public function setBgcolor(string $bgcolor): void { $this->bgcolor = $bgcolor; } public function getCloseborderradius(): string { return $this->closeborderradius; } public function setCloseborderradius(string $closeborderradius): void { $this->closeborderradius = $closeborderradius; } public function getClosetextcolor(): string { return $this->closetextcolor; } public function setClosetextcolor(string $closetextcolor): void { $this->closetextcolor = $closetextcolor; } public function getClosebgcolor(): string { return $this->closebgcolor; } public function setClosebgcolor(string $closebgcolor): void { $this->closebgcolor = $closebgcolor; } public function getClosetime(): string { return $this->closetime; } public function setClosetime(string $closetime): void { $this->closetime = $closetime; } public function getContentpadding(): string { return $this->contentpadding; } public function setContentpadding(string $contentpadding): void { $this->contentpadding = $contentpadding; } }