Merge pull request #23995 from colemanw/custom_custom
[civicrm-core.git] / Civi / Api4 / Activity.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 * Activity entity.
15 *
16 * This entity adds record of any scheduled or completed interaction with one or more contacts.
17 * Each activity record is tightly linked to other CiviCRM constituents. With this API you can manually
18 * create an activity of desired type for your organisation or any other contact.
19 *
20 * Creating a new Activity requires at minimum a activity_type_id, entity ID and object_table
21 *
22 * An activity is a record of some type of interaction with one or more contacts.
23 *
24 * @see https://docs.civicrm.org/user/en/latest/organising-your-data/activities/
25 * @searchable primary
26 * @since 5.19
27 * @package Civi\Api4
28 */
29 class Activity extends Generic\DAOEntity {
30
31 }