/home/techb158/ileadtechnology.com/SSM/vendor/nexmo/client-core/src/Voice/Message
NameSizeModeActions
Callback.php18050644editdlrm
Message.php17190644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/nexmo/client-core/src/Voice/Message/Callback.php (1805B)
data['call-id']; } public function getTo() { return $this->data['to']; } public function getStatus() { return $this->data['status']; } public function getPrice() { return $this->data['call-price']; } public function getRate() { return $this->data['call-rate']; } public function getDuration() { return $this->data['call-duration']; } public function getCreated() { return \DateTime::createFromFormat(self::TIME_FORMAT, $this->data['call-request']); } public function getStart() { if (!isset($this->data['call-start'])) { return null; } return \DateTime::createFromFormat(self::TIME_FORMAT, $this->data['call-start']); } public function getEnd() { if (!isset($this->data['call-end'])) { return null; } return \DateTime::createFromFormat(self::TIME_FORMAT, $this->data['call-end']); } public function getNetwork() { return $this->data['network-code']; } }