/home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Proxy/V1/Service
Edit: /home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Proxy/V1/Service/ShortCodeContext.php (2128B)
solution = array('serviceSid' => $serviceSid, 'sid' => $sid, );
$this->uri = '/Services/' . rawurlencode($serviceSid) . '/ShortCodes/' . rawurlencode($sid) . '';
}
/**
* Deletes the ShortCodeInstance
*
* @return boolean True if delete succeeds, false otherwise
*/
public function delete() {
return $this->version->delete('delete', $this->uri);
}
/**
* Fetch a ShortCodeInstance
*
* @return ShortCodeInstance Fetched ShortCodeInstance
*/
public function fetch() {
$params = Values::of(array());
$payload = $this->version->fetch(
'GET',
$this->uri,
$params
);
return new ShortCodeInstance(
$this->version,
$payload,
$this->solution['serviceSid'],
$this->solution['sid']
);
}
/**
* 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.Proxy.V1.ShortCodeContext ' . implode(' ', $context) . ']';
}
}