79 lines
2.1 KiB
PHP
79 lines
2.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This code was generated by
|
|
* \ / _ _ _| _ _
|
|
* | (_)\/(_)(_|\/| |(/_ v1.0.0
|
|
* / /
|
|
*/
|
|
|
|
namespace Twilio\Rest\Trunking\V1\Trunk;
|
|
|
|
use Twilio\InstanceContext;
|
|
use Twilio\Values;
|
|
use Twilio\Version;
|
|
|
|
class PhoneNumberContext extends InstanceContext {
|
|
/**
|
|
* Initialize the PhoneNumberContext
|
|
*
|
|
* @param \Twilio\Version $version Version that contains the resource
|
|
* @param string $trunkSid The trunk_sid
|
|
* @param string $sid The sid
|
|
* @return \Twilio\Rest\Trunking\V1\Trunk\PhoneNumberContext
|
|
*/
|
|
public function __construct(Version $version, $trunkSid, $sid) {
|
|
parent::__construct($version);
|
|
|
|
// Path Solution
|
|
$this->solution = array('trunkSid' => $trunkSid, 'sid' => $sid, );
|
|
|
|
$this->uri = '/Trunks/' . rawurlencode($trunkSid) . '/PhoneNumbers/' . rawurlencode($sid) . '';
|
|
}
|
|
|
|
/**
|
|
* Fetch a PhoneNumberInstance
|
|
*
|
|
* @return PhoneNumberInstance Fetched PhoneNumberInstance
|
|
* @throws TwilioException When an HTTP error occurs.
|
|
*/
|
|
public function fetch() {
|
|
$params = Values::of(array());
|
|
|
|
$payload = $this->version->fetch(
|
|
'GET',
|
|
$this->uri,
|
|
$params
|
|
);
|
|
|
|
return new PhoneNumberInstance(
|
|
$this->version,
|
|
$payload,
|
|
$this->solution['trunkSid'],
|
|
$this->solution['sid']
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Deletes the PhoneNumberInstance
|
|
*
|
|
* @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.Trunking.V1.PhoneNumberContext ' . implode(' ', $context) . ']';
|
|
}
|
|
} |