APIv4 - Add ParticipantStatusType entity
authorColeman Watts <coleman@civicrm.org>
Tue, 7 Mar 2023 18:46:31 +0000 (13:46 -0500)
committerColeman Watts <coleman@civicrm.org>
Tue, 7 Mar 2023 18:49:05 +0000 (13:49 -0500)
Civi/Api4/ParticipantStatusType.php [new file with mode: 0644]

diff --git a/Civi/Api4/ParticipantStatusType.php b/Civi/Api4/ParticipantStatusType.php
new file mode 100644 (file)
index 0000000..25b14d9
--- /dev/null
@@ -0,0 +1,26 @@
+<?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       |
+ +--------------------------------------------------------------------+
+ */
+namespace Civi\Api4;
+
+/**
+ * Configurable event participant statuses.
+ *
+ * @see \Civi\Api4\Participant
+ *
+ * @orderBy weight
+ * @since 5.61
+ * @package Civi\Api4
+ */
+class ParticipantStatusType extends Generic\DAOEntity {
+  use Generic\Traits\ManagedEntity;
+  use Generic\Traits\SortableEntity;
+
+}