Spaces:
No application file
No application file
namespace MauticPlugin\MauticCrmBundle\Integration\Salesforce\Object; | |
class Lead | |
{ | |
public const OBJECT = 'Lead'; | |
public function __construct( | |
private $id, | |
private $campaignId, | |
private $isDeleted | |
) { | |
} | |
/** | |
* @return mixed | |
*/ | |
public function getId() | |
{ | |
return $this->id; | |
} | |
/** | |
* @return mixed | |
*/ | |
public function getCampaignId() | |
{ | |
return $this->campaignId; | |
} | |
/** | |
* @return mixed | |
*/ | |
public function getisDeleted() | |
{ | |
return $this->isDeleted; | |
} | |
} | |