<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\Rest\Api\V2010\Account;
use Twilio\Deserialize;
use Twilio\Exceptions\TwilioException;
use Twilio\InstanceResource;
use Twilio\Options;
use Twilio\Rest\Api\V2010\Account\Recording\AddOnResultList;
use Twilio\Rest\Api\V2010\Account\Recording\TranscriptionList;
use Twilio\Values;
use Twilio\Version;
/**
* @property string $accountSid
* @property string $apiVersion
* @property string $callSid
* @property string $conferenceSid
* @property \DateTime $dateCreated
* @property \DateTime $dateUpdated
* @property \DateTime $startTime
* @property string $duration
* @property string $sid
* @property string $price
* @property string $priceUnit
* @property string $status
* @property int $channels
* @property string $source
* @property int $errorCode
* @property string $uri
* @property array $encryptionDetails
* @property array $subresourceUris
* @property string $mediaUrl
*/
class RecordingInstance extends InstanceResource {
protected $_transcriptions;
protected $_addOnResults;
/**
* Initialize the RecordingInstance
*
* @param Version $version Version that contains the resource
* @param mixed[] $payload The response payload
* @param string $accountSid The SID of the Account that created the resource
* @param string $sid The unique string that identifies the resource
*/
public function __construct(Version $version, array $payload, string $accountSid, string $sid = null) {
parent::__construct($version);
// Marshaled Properties
$this->properties = [
'accountSid' => Values::array_get($payload, 'account_sid'),
'apiVersion' => Values::array_get($payload, 'api_version'),
'callSid' => Values::array_get($payload, 'call_sid'),
'conferenceSid' => Values::array_get($payload, 'conference_sid'),
'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')),
'dateUpdated' => Deserialize::dateTime(Values::array_get($payload, 'date_updated')),
'startTime' => Deserialize::dateTime(Values::array_get($payload, 'start_time')),
'duration' => Values::array_get($payload, 'duration'),
'sid' => Values::array_get($payload, 'sid'),
'price' => Values::array_get($payload, 'price'),
'priceUnit' => Values::array_get($payload, 'price_unit'),
'status' => Values::array_get($payload, 'status'),
'channels' => Values::array_get($payload, 'channels'),
'source' => Values::array_get($payload, 'source'),
'errorCode' => Values::array_get($payload, 'error_code'),
'uri' => Values::array_get($payload, 'uri'),
'encryptionDetails' => Values::array_get($payload, 'encryption_details'),
'subresourceUris' => Values::array_get($payload, 'subresource_uris'),
'mediaUrl' => Values::array_get($payload, 'media_url'),
];
$this->solution = ['accountSid' => $accountSid, 'sid' => $sid ?: $this->properties['sid'], ];
}
/**
* Generate an instance context for the instance, the context is capable of
* performing various actions. All instance actions are proxied to the context
*
* @return RecordingContext Context for this RecordingInstance
*/
protected function proxy(): RecordingContext {
if (!$this->context) {
$this->context = new RecordingContext(
$this->version,
$this->solution['accountSid'],
$this->solution['sid']
);
}
return $this->context;
}
/**
* Fetch the RecordingInstance
*
* @param array|Options $options Optional Arguments
* @return RecordingInstance Fetched RecordingInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(array $options = []): RecordingInstance {
return $this->proxy()->fetch($options);
}
/**
* Delete the RecordingInstance
*
* @return bool True if delete succeeds, false otherwise
* @throws TwilioException When an HTTP error occurs.
*/
public function delete(): bool {
return $this->proxy()->delete();
}
/**
* Access the transcriptions
*/
protected function getTranscriptions(): TranscriptionList {
return $this->proxy()->transcriptions;
}
/**
* Access the addOnResults
*/
protected function getAddOnResults(): AddOnResultList {
return $this->proxy()->addOnResults;
}
/**
* 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.Api.V2010.RecordingInstance ' . \implode(' ', $context) . ']';
}
} |