for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by Graham Owens ([email protected])
* Company: PartFire Ltd (www.partfire.co.uk)
* Console: Relativity
*
* User: gra
* Date: 16/01/2017
* Time: 21:38
* Project: PartFire MangoPay Bundle
* File: Hook.php
**/
namespace PartFire\MangoPayBundle\Models\DTOs;
class Hook
{
private $id;
private $tag;
private $creationDate;
private $url;
private $status;
private $validity;
private $eventType;
* @return mixed
*/
public function getId()
return $this->id;
}
* @param mixed $id
public function setId($id)
$this->id = $id;
public function getTag()
return $this->tag;
* @param mixed $tag
public function setTag($tag)
$this->tag = $tag;
public function getCreationDate()
return $this->creationDate;
* @param mixed $creationDate
public function setCreationDate($creationDate)
$this->creationDate = $creationDate;
public function getUrl()
return $this->url;
* @param mixed $url
public function setUrl($url)
$this->url = $url;
public function getStatus()
return $this->status;
* @param mixed $status
public function setStatus($status)
$this->status = $status;
public function getValidity()
return $this->validity;
* @param mixed $validity
public function setValidity($validity)
$this->validity = $validity;
public function getEventType()
return $this->eventType;
* @param mixed $eventType
public function setEventType($eventType)
$this->eventType = $eventType;