position = $position; $this->title = $title; $this->subtitle = $subtitle; } public function getTitle(): string { return $this->title; } public function getSubtitle(): string { return $this->subtitle; } public function getPosition(): int { return $this->position; } public function getSlideCommands(): array { $slideCommands = []; $slideCommands[] = [ 'EditTextObject.0' => [ 'SelectParagraph' => 0, 'InsertText' => $this->getTitle(), ] ]; $slideCommands[] = [ 'EditTextObject.1' => [ 'SelectParagraph' => 0, 'InsertText' => $this->getSubtitle(), ] ]; return $slideCommands; } }