File: /home/bdedition/www/core/vendor/messagebird/php-rest-api/src/MessageBird/Objects/Voice/Webhook.php
<?php
namespace MessageBird\Objects\Voice;
use MessageBird\Objects\Base;
class Webhook extends Base
{
/**
* The callback URL that will be requested when the MessageBird platform sends a webhook.
*
* @var string
*/
public $url;
/**
* The secret used for signing webhook requests.
*
* @var string
* @see https://developers.messagebird.com/docs/voice-calling#handle-callbacks
*/
public $token;
/**
* The unique ID of the webhook
*
* @var string
*/
protected $id;
/**
* The date and time the webhook was created
*
* @var string
*/
protected $createdAt;
/**
* The date and time the webhook was last updated
*
* @var string
*/
protected $updatedAt;
public function getId(): string
{
return $this->id;
}
public function getCreatedAt(): string
{
return $this->createdAt;
}
public function getUpdatedAt(): string
{
return $this->updatedAt;
}
}