Merge pull request #22475 from eileenmcnaughton/ipn
[civicrm-core.git] / Civi / Api4 / ActionSchedule.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 * ActionSchedule Entity.
15 *
16 * This entity exposes CiviCRM schedule reminders, which allows us to send messages (through email or SMS)
17 * to contacts when certain criteria are met. Using this API you can create schedule reminder for
18 * supported entities like Contact, Activity, Event, Membership or Contribution.
19 *
20 * Creating a new ActionSchedule requires at minimum a title, mapping_id and entity_value.
21 *
22 * @searchable none
23 * @see https://docs.civicrm.org/user/en/latest/email/scheduled-reminders/
24 * @since 5.19
25 * @package Civi\Api4
26 */
27 class ActionSchedule extends Generic\DAOEntity {
28
29 }