85 lines
2.6 KiB
PHP
Executable file
85 lines
2.6 KiB
PHP
Executable file
<?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\Call;
|
|
|
|
use Twilio\Exceptions\TwilioException;
|
|
use Twilio\Version;
|
|
use Twilio\InstanceContext;
|
|
|
|
|
|
class UserDefinedMessageSubscriptionContext extends InstanceContext
|
|
{
|
|
/**
|
|
* Initialize the UserDefinedMessageSubscriptionContext
|
|
*
|
|
* @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 subscribed to the User Defined Messages.
|
|
* @param string $callSid The SID of the [Call](https://www.twilio.com/docs/voice/api/call-resource) the User Defined Messages subscription is associated with. This refers to the Call SID that is producing the user defined messages.
|
|
* @param string $sid The SID that uniquely identifies this User Defined Message Subscription.
|
|
*/
|
|
public function __construct(
|
|
Version $version,
|
|
$accountSid,
|
|
$callSid,
|
|
$sid
|
|
) {
|
|
parent::__construct($version);
|
|
|
|
// Path Solution
|
|
$this->solution = [
|
|
'accountSid' =>
|
|
$accountSid,
|
|
'callSid' =>
|
|
$callSid,
|
|
'sid' =>
|
|
$sid,
|
|
];
|
|
|
|
$this->uri = '/Accounts/' . \rawurlencode($accountSid)
|
|
.'/Calls/' . \rawurlencode($callSid)
|
|
.'/UserDefinedMessageSubscriptions/' . \rawurlencode($sid)
|
|
.'.json';
|
|
}
|
|
|
|
/**
|
|
* Delete the UserDefinedMessageSubscriptionInstance
|
|
*
|
|
* @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);
|
|
}
|
|
|
|
|
|
/**
|
|
* 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.UserDefinedMessageSubscriptionContext ' . \implode(' ', $context) . ']';
|
|
}
|
|
}
|