'file') in lowercase. * @var string * @since 7.0.0 * @deprecated 20.0.0 */ public $type = 'generic'; /** * Create a new search result * @param string $id unique identifier from application: '[app_name]/[item_identifier_in_app]' * @param string $name displayed text of result * @param string $link URL to the result within its app * @since 7.0.0 * @deprecated 20.0.0 */ public function __construct($id = null, $name = null, $link = null) { $this->id = $id; $this->name = $name; $this->link = $link; } }