for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Trello\Model;
/**
* @codeCoverageIgnore
*/
class Webhook extends AbstractObject implements WebhookInterface
{
protected $apiName = 'webhook';
* {@inheritdoc}
public function getDescription()
return $this->data['description'];
}
public function getModelId()
return $this->data['idModel'];
public function getCallbackURL()
return $this->data['callbackURL'];
public function isActive()
return $this->data['active'];