APIv4 - Add CaseActivity entity
authorColeman Watts <coleman@civicrm.org>
Thu, 8 Apr 2021 23:08:11 +0000 (19:08 -0400)
committerColeman Watts <coleman@civicrm.org>
Thu, 8 Apr 2021 23:08:11 +0000 (19:08 -0400)
Civi/Api4/CaseActivity.php [new file with mode: 0644]

diff --git a/Civi/Api4/CaseActivity.php b/Civi/Api4/CaseActivity.php
new file mode 100644 (file)
index 0000000..95be921
--- /dev/null
@@ -0,0 +1,33 @@
+<?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
+ */
+
+
+namespace Civi\Api4;
+
+/**
+ * CaseActivity BridgeEntity.
+ *
+ * This connects an activity to one or more cases.
+ *
+ * @see \Civi\Api4\Case
+ * @package Civi\Api4
+ */
+class CaseActivity extends Generic\DAOEntity {
+  use Generic\Traits\EntityBridge;
+
+}