123 lines
4.3 KiB
PHP
Executable file
123 lines
4.3 KiB
PHP
Executable file
<?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;
|
|
|
|
use Twilio\Exceptions\TwilioException;
|
|
use Twilio\InstanceResource;
|
|
use Twilio\Values;
|
|
use Twilio\Version;
|
|
use Twilio\Deserialize;
|
|
|
|
|
|
/**
|
|
* @property string|null $accountSid
|
|
* @property string|null $callSid
|
|
* @property string $answeredBy
|
|
* @property string $callType
|
|
* @property string $callState
|
|
* @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
|
|
*/
|
|
class CallSummariesInstance extends InstanceResource
|
|
{
|
|
/**
|
|
* Initialize the CallSummariesInstance
|
|
*
|
|
* @param Version $version Version that contains the resource
|
|
* @param mixed[] $payload The response payload
|
|
*/
|
|
public function __construct(Version $version, array $payload)
|
|
{
|
|
parent::__construct($version);
|
|
|
|
// Marshaled Properties
|
|
$this->properties = [
|
|
'accountSid' => Values::array_get($payload, 'account_sid'),
|
|
'callSid' => Values::array_get($payload, 'call_sid'),
|
|
'answeredBy' => Values::array_get($payload, 'answered_by'),
|
|
'callType' => Values::array_get($payload, 'call_type'),
|
|
'callState' => Values::array_get($payload, 'call_state'),
|
|
'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'),
|
|
];
|
|
|
|
$this->solution = [];
|
|
}
|
|
|
|
/**
|
|
* 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
|
|
{
|
|
return '[Twilio.Insights.V1.CallSummariesInstance]';
|
|
}
|
|
}
|
|
|