created = $created; return $this; } /** * @return \DateTime */ public function getCreated() { return $this->created; } /** * @return integer */ public function getId() { return $this->id; } /** * @param array $data * * @return WebhookEvent */ public function setData(array $data) { $this->data = $data; return $this; } /** * @return array */ public function getData() { return $this->data; } /** * @param string $name * * @return $this */ public function setName($name) { $this->name = $name; return $this; } /** * @return string */ public function getName() { return $this->name; } /** * @param boolean $processed * * @return $this */ public function setProcessed($processed) { $this->processed = (Boolean) $processed; return $this; } /** * @return boolean */ public function isProcessed() { return $this->processed; } /** * @return string */ public function getType() { return $this->type; } /** * @param string $type * * @return $this */ public function setType($type) { $this->type = $type; return $this; } /** * @param array $collectionBaseIds * * @return $this */ public function setCollectionBaseIds(array $collectionBaseIds) { $this->collectionBaseIds = $collectionBaseIds; return $this; } /** * @return array */ public function getCollectionBaseIds() { return $this->collectionBaseIds; } }