content !== null; } /** * Set the optional product content. * * @since 0.8 * @return null|Content */ public function get_content() { return $this->content; } /** * Set the optional product content. * * @since 0.8 * @param null|Content $content */ public function set_content(Content $content = null) { $this->content = $content; } }