* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Domain\CustomerService\QueryResult; /** * Carries data for customer thread timeline */ class CustomerThreadTimeline { /** * @var CustomerThreadTimelineItem[] */ private $timelineItems; /** * @param CustomerThreadTimelineItem[] $timelineItems */ public function __construct(array $timelineItems) { $this->timelineItems = $timelineItems; } /** * @return CustomerThreadTimelineItem[] */ public function getTimelineItems() { return $this->timelineItems; } }