checked = $checked; } /** * @return bool */ public function getChecked() { return $this->checked; } /** * @param ListItem[] */ public function setChildListItems($childListItems) { $this->childListItems = $childListItems; } /** * @return ListItem[] */ public function getChildListItems() { return $this->childListItems; } /** * @param TextContent */ public function setText(TextContent $text) { $this->text = $text; } /** * @return TextContent */ public function getText() { return $this->text; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ListItem::class, 'Google_Service_Keep_ListItem');