Merge pull request #24203 from colemanw/fixTagFilter553
[civicrm-core.git] / Civi / Api4 / ActivityContact.php
CommitLineData
19b53e5b 1<?php
380f3545
TO
2/*
3 +--------------------------------------------------------------------+
41498ac5 4 | Copyright CiviCRM LLC. All rights reserved. |
380f3545 5 | |
41498ac5
TO
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 |
380f3545
TO
9 +--------------------------------------------------------------------+
10 */
19b53e5b
C
11namespace Civi\Api4;
12
13/**
2f616560 14 * ActivityContact BridgeEntity.
19b53e5b 15 *
2f616560 16 * This connects a contact to an activity.
19b53e5b 17 *
2f616560
CW
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
19b53e5b 20 *
c5076889 21 * @searchable bridge
0493ec47 22 * @see \Civi\Api4\Activity
d44cc3cb 23 * @since 5.19
19b53e5b
C
24 * @package Civi\Api4
25 */
465bc32a
CW
26class ActivityContact extends Generic\DAOEntity {
27 use Generic\Traits\EntityBridge;
19b53e5b
C
28
29}