芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/vonage/client-core/src/Voice/OutboundCall.php
<?php /** * Vonage Client Library for PHP * * @copyright Copyright (c) 2016-2020 Vonage, Inc. (http://vonage.com) * @license https://github.com/Vonage/vonage-php-sdk-core/blob/master/LICENSE.txt Apache License 2.0 */ declare(strict_types=1); namespace Vonage\Voice; use InvalidArgumentException; use Vonage\Voice\Endpoint\EndpointInterface; use Vonage\Voice\Endpoint\Phone; use Vonage\Voice\NCCO\NCCO; class OutboundCall { public const MACHINE_CONTINUE = 'continue'; public const MACHINE_HANGUP = 'hangup'; /** * @var Webhook */ protected $answerWebhook; /** * @var Webhook */ protected $eventWebhook; /** * @var Phone */ protected $from; /** * Length of seconds before Vonage hangs up after going into `in_progress` status * * @var int */ protected $lengthTimer; /** * What to do when Vonage detects an answering machine. * * @var ?string */ protected $machineDetection; /** * @var NCCO */ protected $ncco; /** * Whether or not to use random numbers linked on the application * * @var bool */ protected $randomFrom = false; /** * Length of time Vonage will allow a phone number to ring before hanging up * * @var int */ protected $ringingTimer; /** * @var EndpointInterface */ protected $to; /** * Creates a new Outbound Call object * If no `$from` parameter is passed, the system will use a random number * that is linked to the application instead. * * @param EndpointInterface $to * @param Phone|null $from * @return void */ public function __construct(EndpointInterface $to, Phone $from = null) { $this->to = $to; $this->from = $from; if (!$from) { $this->randomFrom = true; } } public function getAnswerWebhook(): ?Webhook { return $this->answerWebhook; } public function getEventWebhook(): ?Webhook { return $this->eventWebhook; } public function getFrom(): ?Phone { return $this->from; } public function getLengthTimer(): ?int { return $this->lengthTimer; } public function getMachineDetection(): ?string { return $this->machineDetection; } public function getNCCO(): ?NCCO { return $this->ncco; } public function getRingingTimer(): ?int { return $this->ringingTimer; } public function getTo(): EndpointInterface { return $this->to; } /** * @return $this */ public function setAnswerWebhook(Webhook $webhook): self { $this->answerWebhook = $webhook; return $this; } /** * @return $this */ public function setEventWebhook(Webhook $webhook): self { $this->eventWebhook = $webhook; return $this; } /** * @return $this */ public function setLengthTimer(int $timer): self { $this->lengthTimer = $timer; return $this; } /** * @return $this */ public function setMachineDetection(string $action): self { if ($action === self::MACHINE_CONTINUE || $action === self::MACHINE_HANGUP) { $this->machineDetection = $action; return $this; } throw new InvalidArgumentException('Unknown machine detection action'); } /** * @return $this */ public function setNCCO(NCCO $ncco): self { $this->ncco = $ncco; return $this; } /** * @return $this */ public function setRingingTimer(int $timer): self { $this->ringingTimer = $timer; return $this; } public function getRandomFrom(): bool { return $this->randomFrom; } }
Error 404 (Not Found)
404
Page not found.
Back To Home