Merge pull request #23537 from eileenmcnaughton/greet_cust
[civicrm-core.git] / Civi / Api4 / ActionSchedule.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/**
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 *
aa998597 22 * @searchable none
0493ec47 23 * @see https://docs.civicrm.org/user/en/latest/email/scheduled-reminders/
d44cc3cb 24 * @since 5.19
19b53e5b
C
25 * @package Civi\Api4
26 */
27class ActionSchedule extends Generic\DAOEntity {
28
29}