File manager - Edit - /var/www/payraty/hris/vendor/twilio/sdk/src/Twilio/Rest/PreviewIam/Versionless/Organization/AccountContext.php
Back
<?php /** * This code was generated by * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ * * Organization Public API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator. * https://openapi-generator.tech * Do not edit the class manually. */ namespace Twilio\Rest\PreviewIam\Versionless\Organization; use Twilio\Exceptions\TwilioException; use Twilio\Values; use Twilio\Version; use Twilio\InstanceContext; class AccountContext extends InstanceContext { /** * Initialize the AccountContext * * @param Version $version Version that contains the resource * @param string $organizationSid * @param string $accountSid */ public function __construct( Version $version, $organizationSid, $accountSid ) { parent::__construct($version); // Path Solution $this->solution = [ 'organizationSid' => $organizationSid, 'accountSid' => $accountSid, ]; $this->uri = '/' . \rawurlencode($organizationSid) .'/Accounts/' . \rawurlencode($accountSid) .''; } /** * Fetch the AccountInstance * * @return AccountInstance Fetched AccountInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): AccountInstance { $headers = Values::of(['Content-Type' => 'application/x-www-form-urlencoded', 'Accept' => 'application/json' ]); $payload = $this->version->fetch('GET', $this->uri, [], [], $headers); return new AccountInstance( $this->version, $payload, $this->solution['organizationSid'], $this->solution['accountSid'] ); } /** * 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.PreviewIam.Versionless.AccountContext ' . \implode(' ', $context) . ']'; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings