PATH:
home
/
lab2454c
/
sportsnovate.com
/
backups
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Trunking
/
V1
/
Trunk
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Trunking\V1\Trunk; use Twilio\Exceptions\TwilioException; use Twilio\InstanceContext; use Twilio\Values; use Twilio\Version; class CredentialListContext extends InstanceContext { /** * Initialize the CredentialListContext * * @param Version $version Version that contains the resource * @param string $trunkSid The SID of the Trunk from which to fetch the * credential list * @param string $sid The unique string that identifies the resource */ public function __construct(Version $version, $trunkSid, $sid) { parent::__construct($version); // Path Solution $this->solution = ['trunkSid' => $trunkSid, 'sid' => $sid, ]; $this->uri = '/Trunks/' . \rawurlencode($trunkSid) . '/CredentialLists/' . \rawurlencode($sid) . ''; } /** * Fetch the CredentialListInstance * * @return CredentialListInstance Fetched CredentialListInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): CredentialListInstance { $payload = $this->version->fetch('GET', $this->uri); return new CredentialListInstance( $this->version, $payload, $this->solution['trunkSid'], $this->solution['sid'] ); } /** * Delete the CredentialListInstance * * @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.Trunking.V1.CredentialListContext ' . \implode(' ', $context) . ']'; } }
[-] CredentialListContext.php
[edit]
[-] CredentialListList.php
[edit]
[+]
..
[-] PhoneNumberContext.php
[edit]
[-] RecordingInstance.php
[edit]
[-] RecordingList.php
[edit]
[-] OriginationUrlPage.php
[edit]
[-] OriginationUrlInstance.php
[edit]
[-] IpAccessControlListList.php
[edit]
[-] CredentialListInstance.php
[edit]
[-] PhoneNumberList.php
[edit]
[-] IpAccessControlListContext.php
[edit]
[-] RecordingPage.php
[edit]
[-] RecordingOptions.php
[edit]
[-] RecordingContext.php
[edit]
[-] CredentialListPage.php
[edit]
[-] IpAccessControlListInstance.php
[edit]
[-] PhoneNumberPage.php
[edit]
[-] OriginationUrlOptions.php
[edit]
[-] OriginationUrlList.php
[edit]
[-] IpAccessControlListPage.php
[edit]
[-] PhoneNumberInstance.php
[edit]
[-] OriginationUrlContext.php
[edit]