File "PayloadContext.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/twilio/sdk/src/Twilio/Rest/Api/V2010/Account/Recording/AddOnResult/PayloadContext.php
File size: 3.23 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Api
* 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\Api\V2010\Account\Recording\AddOnResult;
use Twilio\Exceptions\TwilioException;
use Twilio\Version;
use Twilio\InstanceContext;
class PayloadContext extends InstanceContext
{
/**
* Initialize the PayloadContext
*
* @param Version $version Version that contains the resource
* @param string $accountSid The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Recording AddOnResult Payload resources to delete.
* @param string $referenceSid The SID of the recording to which the AddOnResult resource that contains the payloads to delete belongs.
* @param string $addOnResultSid The SID of the AddOnResult to which the payloads to delete belongs.
* @param string $sid The Twilio-provided string that uniquely identifies the Recording AddOnResult Payload resource to delete.
*/
public function __construct(
Version $version,
$accountSid,
$referenceSid,
$addOnResultSid,
$sid
) {
parent::__construct($version);
// Path Solution
$this->solution = [
'accountSid' =>
$accountSid,
'referenceSid' =>
$referenceSid,
'addOnResultSid' =>
$addOnResultSid,
'sid' =>
$sid,
];
$this->uri = '/Accounts/' . \rawurlencode($accountSid)
.'/Recordings/' . \rawurlencode($referenceSid)
.'/AddOnResults/' . \rawurlencode($addOnResultSid)
.'/Payloads/' . \rawurlencode($sid)
.'.json';
}
/**
* Delete the PayloadInstance
*
* @return bool True if delete succeeds, false otherwise
* @throws TwilioException When an HTTP error occurs.
*/
public function delete(): bool
{
return $this->version->delete('DELETE', $this->uri);
}
/**
* Fetch the PayloadInstance
*
* @return PayloadInstance Fetched PayloadInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(): PayloadInstance
{
$payload = $this->version->fetch('GET', $this->uri, [], []);
return new PayloadInstance(
$this->version,
$payload,
$this->solution['accountSid'],
$this->solution['referenceSid'],
$this->solution['addOnResultSid'],
$this->solution['sid']
);
}
/**
* 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.PayloadContext ' . \implode(' ', $context) . ']';
}
}