File size: 2.19Kb
<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\Rest\Api\V2010\Account;
use Twilio\InstanceContext;
use Twilio\Values;
use Twilio\Version;
class NotificationContext extends InstanceContext {
/**
* Initialize the NotificationContext
*
* @param \Twilio\Version $version Version that contains the resource
* @param string $accountSid The SID of the Account that created the resource
* to fetch
* @param string $sid The unique string that identifies the resource
* @return \Twilio\Rest\Api\V2010\Account\NotificationContext
*/
public function __construct(Version $version, $accountSid, $sid) {
parent::__construct($version);
// Path Solution
$this->solution = array('accountSid' => $accountSid, 'sid' => $sid, );
$this->uri = '/Accounts/' . rawurlencode($accountSid) . '/Notifications/' . rawurlencode($sid) . '.json';
}
/**
* Fetch a NotificationInstance
*
* @return NotificationInstance Fetched NotificationInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch() {
$params = Values::of(array());
$payload = $this->version->fetch(
'GET',
$this->uri,
$params
);
return new NotificationInstance(
$this->version,
$payload,
$this->solution['accountSid'],
$this->solution['sid']
);
}
/**
* Deletes the NotificationInstance
*
* @return boolean True if delete succeeds, false otherwise
* @throws TwilioException When an HTTP error occurs.
*/
public function delete() {
return $this->version->delete('delete', $this->uri);
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString() {
$context = array();
foreach ($this->solution as $key => $value) {
$context[] = "$key=$value";
}
return '[Twilio.Api.V2010.NotificationContext ' . implode(' ', $context) . ']';
}
}