-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PipedriveEvents.php
42 lines (37 loc) · 1.25 KB
/
PipedriveEvents.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/*
* @copyright 2019 Mautic Contributors. All rights reserved
* @author Mautic
*
* @link http://mautic.org
*
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
namespace MauticPlugin\PipedriveBundle;
final class PipedriveEvents
{
/**
* The pipedrive.on_campaign_action_push_data event is dispatched when the campaign action push data to integration is executed.
*
* The event listener receives a Mautic\CampaignBundle\Event\PendingEvent
*
* @var string
*/
const ON_CAMPAIGN_ACTION_PUSH_CONTACT = 'pipedrive.on_campaign_action_push_data';
/**
* The pipedrive.on_form_action_push_data event is dispatched when the form action push data to integration is executed.
*
* The event listener receives a Mautic\FormBundle\Event\SubmissionEvent
*
* @var string
*/
const ON_FORM_ACTION_PUSH_CONTACT = 'pipedrive.on_form_action_push_data';
/**
* The pipedrive.pipedrive.on_point_trigger_push_data event is dispatched when the point trigger is executed.
*
* The event listener receives a Mautic\PointBundle\Event\TriggerEvent
*
* @var string
*/
const ON_POINT_TRIGGER_PUSH_CONTACT = 'pipedrive.on_point_trigger_push_data';
}