summaryrefslogtreecommitdiff
path: root/www/crm/wp-content/plugins/civicrm/civicrm/ext/api4/Civi/Api4/ActionSchedule.php
blob: a8235f64074775124ff5ef2db268f4161632ec53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace Civi\Api4;

/**
 * ActionSchedule Entity.
 *
 * This entity exposes CiviCRM schedule reminders, which allows us to send messages (through email or SMS)
 * to contacts when certain criteria are met. Using this API you can create schedule reminder for
 * supported entities like Contact, Activity, Event, Membership or Contribution.
 *
 * Creating a new ActionSchedule requires at minimum a title, mapping_id and entity_value.
 *
 * @package Civi\Api4
 */
class ActionSchedule extends Generic\DAOEntity {

}