modern-events-calendar-lite/app/api/Twilio/Rest/Insights/V1/Call/CallSummaryInstance.php

163 lines
5.6 KiB
PHP
Raw Normal View History

2024-10-15 12:04:03 +02:00
<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Insights
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace Twilio\Rest\Insights\V1\Call;
use Twilio\Exceptions\TwilioException;
use Twilio\InstanceResource;
use Twilio\Options;
use Twilio\Values;
use Twilio\Version;
use Twilio\Deserialize;
/**
* @property string|null $accountSid
* @property string|null $callSid
* @property string $callType
* @property string $callState
* @property string $answeredBy
* @property string $processingState
* @property \DateTime|null $createdTime
* @property \DateTime|null $startTime
* @property \DateTime|null $endTime
* @property int|null $duration
* @property int|null $connectDuration
* @property array|null $from
* @property array|null $to
* @property array|null $carrierEdge
* @property array|null $clientEdge
* @property array|null $sdkEdge
* @property array|null $sipEdge
* @property string[]|null $tags
* @property string|null $url
* @property array|null $attributes
* @property array|null $properties
* @property array|null $trust
* @property array|null $annotation
*/
class CallSummaryInstance extends InstanceResource
{
/**
* Initialize the CallSummaryInstance
*
* @param Version $version Version that contains the resource
* @param mixed[] $payload The response payload
* @param string $callSid
*/
public function __construct(Version $version, array $payload, string $callSid)
{
parent::__construct($version);
// Marshaled Properties
$this->properties = [
'accountSid' => Values::array_get($payload, 'account_sid'),
'callSid' => Values::array_get($payload, 'call_sid'),
'callType' => Values::array_get($payload, 'call_type'),
'callState' => Values::array_get($payload, 'call_state'),
'answeredBy' => Values::array_get($payload, 'answered_by'),
'processingState' => Values::array_get($payload, 'processing_state'),
'createdTime' => Deserialize::dateTime(Values::array_get($payload, 'created_time')),
'startTime' => Deserialize::dateTime(Values::array_get($payload, 'start_time')),
'endTime' => Deserialize::dateTime(Values::array_get($payload, 'end_time')),
'duration' => Values::array_get($payload, 'duration'),
'connectDuration' => Values::array_get($payload, 'connect_duration'),
'from' => Values::array_get($payload, 'from'),
'to' => Values::array_get($payload, 'to'),
'carrierEdge' => Values::array_get($payload, 'carrier_edge'),
'clientEdge' => Values::array_get($payload, 'client_edge'),
'sdkEdge' => Values::array_get($payload, 'sdk_edge'),
'sipEdge' => Values::array_get($payload, 'sip_edge'),
'tags' => Values::array_get($payload, 'tags'),
'url' => Values::array_get($payload, 'url'),
'attributes' => Values::array_get($payload, 'attributes'),
'properties' => Values::array_get($payload, 'properties'),
'trust' => Values::array_get($payload, 'trust'),
'annotation' => Values::array_get($payload, 'annotation'),
];
$this->solution = ['callSid' => $callSid, ];
}
/**
* Generate an instance context for the instance, the context is capable of
* performing various actions. All instance actions are proxied to the context
*
* @return CallSummaryContext Context for this CallSummaryInstance
*/
protected function proxy(): CallSummaryContext
{
if (!$this->context) {
$this->context = new CallSummaryContext(
$this->version,
$this->solution['callSid']
);
}
return $this->context;
}
/**
* Fetch the CallSummaryInstance
*
* @param array|Options $options Optional Arguments
* @return CallSummaryInstance Fetched CallSummaryInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(array $options = []): CallSummaryInstance
{
return $this->proxy()->fetch($options);
}
/**
* Magic getter to access properties
*
* @param string $name Property to access
* @return mixed The requested property
* @throws TwilioException For unknown properties
*/
public function __get(string $name)
{
if (\array_key_exists($name, $this->properties)) {
return $this->properties[$name];
}
if (\property_exists($this, '_' . $name)) {
$method = 'get' . \ucfirst($name);
return $this->$method();
}
throw new TwilioException('Unknown property: ' . $name);
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString(): string
{
$context = [];
foreach ($this->solution as $key => $value) {
$context[] = "$key=$value";
}
return '[Twilio.Insights.V1.CallSummaryInstance ' . \implode(' ', $context) . ']';
}
}