APIv4 - Add SavedSearch entity
authorColeman Watts <coleman@civicrm.org>
Thu, 13 Feb 2020 01:00:37 +0000 (20:00 -0500)
committereileen <emcnaughton@wikimedia.org>
Wed, 4 Mar 2020 23:57:16 +0000 (12:57 +1300)
Civi/Api4/SavedSearch.php [new file with mode: 0644]

diff --git a/Civi/Api4/SavedSearch.php b/Civi/Api4/SavedSearch.php
new file mode 100644 (file)
index 0000000..dd5e900
--- /dev/null
@@ -0,0 +1,34 @@
+<?php
+
+/*
+ +--------------------------------------------------------------------+
+ | Copyright CiviCRM LLC. All rights reserved.                        |
+ |                                                                    |
+ | This work is published under the GNU AGPLv3 license with some      |
+ | permitted exceptions and without any warranty. For full license    |
+ | and copyright information, see https://civicrm.org/licensing       |
+ +--------------------------------------------------------------------+
+ */
+
+/**
+ *
+ * @package CRM
+ * @copyright CiviCRM LLC https://civicrm.org/licensing
+ * $Id$
+ *
+ */
+
+
+namespace Civi\Api4;
+
+/**
+ * SavedSearch aka Smart Groups.
+ *
+ * Stores search parameters for populating smart groups with live results.
+ *
+ * @see https://docs.civicrm.org/user/en/latest/organising-your-data/smart-groups/
+ * @package Civi\Api4
+ */
+class SavedSearch extends Generic\DAOEntity {
+
+}