Viewing file: UsageContext.php (1.87 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */
namespace Twilio\Rest\Preview\Wireless\Sim;
use Twilio\Exceptions\TwilioException; use Twilio\InstanceContext; use Twilio\Options; use Twilio\Values; use Twilio\Version;
/** * PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com. */ class UsageContext extends InstanceContext { /** * Initialize the UsageContext * * @param Version $version Version that contains the resource * @param string $simSid The sim_sid */ public function __construct(Version $version, $simSid) { parent::__construct($version);
// Path Solution $this->solution = ['simSid' => $simSid, ];
$this->uri = '/Sims/' . \rawurlencode($simSid) . '/Usage'; }
/** * Fetch the UsageInstance * * @param array|Options $options Optional Arguments * @return UsageInstance Fetched UsageInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(array $options = []): UsageInstance { $options = new Values($options);
$params = Values::of(['End' => $options['end'], 'Start' => $options['start'], ]);
$payload = $this->version->fetch('GET', $this->uri, $params);
return new UsageInstance($this->version, $payload, $this->solution['simSid']); }
/** * 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.Preview.Wireless.UsageContext ' . \implode(' ', $context) . ']'; } }
|