for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AlexCk\MailchimpBundle\Model\MailChimp;
class MailChimpWebHook
{
/**
* @var string
*/
private $id;
private $url;
* @var MailChimpWebHooksEvent
private $events;
* @var MailChimpWebHooksSources
private $sources;
public function getId(): string
return $this->id;
}
public function setId(string $id): MailChimpWebHook
$this->id = $id;
return $this;
public function getUrl(): string
return $this->url;
public function setUrl(string $url): MailChimpWebHook
$this->url = $url;
public function getEvents(): MailChimpWebHooksEvent
return $this->events;
public function setEvents(MailChimpWebHooksEvent $events): MailChimpWebHook
$this->events = $events;
public function getSources(): MailChimpWebHooksSources
return $this->sources;
public function setSources(MailChimpWebHooksSources $sources): MailChimpWebHook
$this->sources = $sources;