fix the since version
[civicrm-core.git] / Civi / Api4 / ActivityContact.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11 namespace Civi\Api4;
12
13 /**
14 * ActivityContact BridgeEntity.
15 *
16 * This connects a contact to an activity.
17 *
18 * The record_type_id field determines the contact's role in the activity (source, target, or assignee).
19 * @ui_join_filters record_type_id
20 *
21 * @searchable bridge
22 * @see \Civi\Api4\Activity
23 * @since 5.19
24 * @package Civi\Api4
25 */
26 class ActivityContact extends Generic\DAOEntity {
27 use Generic\Traits\EntityBridge;
28
29 }