PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
messagebird
/
php-rest-api
/
src
/
MessageBird
/
Objects
/
Voice
<?php namespace MessageBird\Objects\Voice; use MessageBird\Objects\Base; class Call extends Base { /** * The unique ID of the call * * @var string */ protected $id; /** * The caller ID of the call * * @var string */ public $source; /** * The number/address to be called. * * @var string */ public $destination; /** * The call flow object to be executed when the call is answered. * * @var CallFlow */ public $callFlow; /** * The unique ID of the number that is/was called * * @var string */ protected $numberId; /** * The status of the call. Possible values: starting, ongoing, ended. * * @var string */ protected $status; /** * The date and time the call was created * * @var string */ protected $createdAt; /** * The date and time the call was last updated * * @var string */ protected $updatedAt; /** * The date and time the call ended * * @var string */ protected $endedAt; /** * @inheritdoc */ public function loadFromArray($object) { parent::loadFromArray($object); if (!empty($this->callFlow)) { $callFlow = new CallFlow(); $this->callFlow = $callFlow->loadFromArray($this->callFlow); } return $this; } /** * @return string */ public function getId() { return $this->id; } /** * @return string */ public function getNumberId() { return $this->numberId; } /** * @return string */ public function getStatus() { return $this->status; } /** * @return string */ public function getCreatedAt() { return $this->createdAt; } /** * @return string */ public function getUpdatedAt() { return $this->updatedAt; } /** * @return string */ public function getEndedAt() { return $this->endedAt; } }
[-] Recording.php
[edit]
[-] BaseList.php
[edit]
[+]
..
[-] Call.php
[edit]
[-] CallFlow.php
[edit]
[-] Transcription.php
[edit]
[-] Leg.php
[edit]
[-] Webhook.php
[edit]
[-] Step.php
[edit]