Viewing file: IpRecordContext.php (2.33 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */
namespace Twilio\Rest\Voice\V1;
use Twilio\Exceptions\TwilioException; use Twilio\InstanceContext; use Twilio\Options; use Twilio\Values; use Twilio\Version;
class IpRecordContext extends InstanceContext { /** * Initialize the IpRecordContext * * @param Version $version Version that contains the resource * @param string $sid The unique string that identifies the resource */ public function __construct(Version $version, $sid) { parent::__construct($version);
// Path Solution $this->solution = ['sid' => $sid, ];
$this->uri = '/IpRecords/' . \rawurlencode($sid) . ''; }
/** * Fetch the IpRecordInstance * * @return IpRecordInstance Fetched IpRecordInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): IpRecordInstance { $payload = $this->version->fetch('GET', $this->uri);
return new IpRecordInstance($this->version, $payload, $this->solution['sid']); }
/** * Update the IpRecordInstance * * @param array|Options $options Optional Arguments * @return IpRecordInstance Updated IpRecordInstance * @throws TwilioException When an HTTP error occurs. */ public function update(array $options = []): IpRecordInstance { $options = new Values($options);
$data = Values::of(['FriendlyName' => $options['friendlyName'], ]);
$payload = $this->version->update('POST', $this->uri, [], $data);
return new IpRecordInstance($this->version, $payload, $this->solution['sid']); }
/** * Delete the IpRecordInstance * * @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.Voice.V1.IpRecordContext ' . \implode(' ', $context) . ']'; } }
|