File "RecordingContext.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/twilio/sdk/src/Twilio/Rest/Trunking/V1/Trunk/RecordingContext.php
File size: 2.77 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Trunking
* 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\Trunking\V1\Trunk;
use Twilio\Exceptions\TwilioException;
use Twilio\Options;
use Twilio\Values;
use Twilio\Version;
use Twilio\InstanceContext;
class RecordingContext extends InstanceContext
{
/**
* Initialize the RecordingContext
*
* @param Version $version Version that contains the resource
* @param string $trunkSid The SID of the Trunk from which to fetch the recording settings.
*/
public function __construct(
Version $version,
$trunkSid
) {
parent::__construct($version);
// Path Solution
$this->solution = [
'trunkSid' =>
$trunkSid,
];
$this->uri = '/Trunks/' . \rawurlencode($trunkSid)
.'/Recording';
}
/**
* Fetch the RecordingInstance
*
* @return RecordingInstance Fetched RecordingInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(): RecordingInstance
{
$payload = $this->version->fetch('GET', $this->uri, [], []);
return new RecordingInstance(
$this->version,
$payload,
$this->solution['trunkSid']
);
}
/**
* Update the RecordingInstance
*
* @param array|Options $options Optional Arguments
* @return RecordingInstance Updated RecordingInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function update(array $options = []): RecordingInstance
{
$options = new Values($options);
$data = Values::of([
'Mode' =>
$options['mode'],
'Trim' =>
$options['trim'],
]);
$payload = $this->version->update('POST', $this->uri, [], $data);
return new RecordingInstance(
$this->version,
$payload,
$this->solution['trunkSid']
);
}
/**
* 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.Trunking.V1.RecordingContext ' . \implode(' ', $context) . ']';
}
}