<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\Rest\Oauth\V1;
use Twilio\Exceptions\TwilioException;
use Twilio\InstanceResource;
use Twilio\Values;
use Twilio\Version;
/**
* @property string $issuer
* @property string $authorizationEndpoint
* @property string $deviceAuthorizationEndpoint
* @property string $tokenEndpoint
* @property string $userinfoEndpoint
* @property string $revocationEndpoint
* @property string $jwkUri
* @property string[] $responseTypeSupported
* @property string[] $subjectTypeSupported
* @property string[] $idTokenSigningAlgValuesSupported
* @property string[] $scopesSupported
* @property string[] $claimsSupported
* @property string $url
*/
class OpenidDiscoveryInstance extends InstanceResource {
/**
* Initialize the OpenidDiscoveryInstance
*
* @param Version $version Version that contains the resource
* @param mixed[] $payload The response payload
*/
public function __construct(Version $version, array $payload) {
parent::__construct($version);
// Marshaled Properties
$this->properties = [
'issuer' => Values::array_get($payload, 'issuer'),
'authorizationEndpoint' => Values::array_get($payload, 'authorization_endpoint'),
'deviceAuthorizationEndpoint' => Values::array_get($payload, 'device_authorization_endpoint'),
'tokenEndpoint' => Values::array_get($payload, 'token_endpoint'),
'userinfoEndpoint' => Values::array_get($payload, 'userinfo_endpoint'),
'revocationEndpoint' => Values::array_get($payload, 'revocation_endpoint'),
'jwkUri' => Values::array_get($payload, 'jwk_uri'),
'responseTypeSupported' => Values::array_get($payload, 'response_type_supported'),
'subjectTypeSupported' => Values::array_get($payload, 'subject_type_supported'),
'idTokenSigningAlgValuesSupported' => Values::array_get($payload, 'id_token_signing_alg_values_supported'),
'scopesSupported' => Values::array_get($payload, 'scopes_supported'),
'claimsSupported' => Values::array_get($payload, 'claims_supported'),
'url' => Values::array_get($payload, 'url'),
];
$this->solution = [];
}
/**
* Generate an instance context for the instance, the context is capable of
* performing various actions. All instance actions are proxied to the context
*
* @return OpenidDiscoveryContext Context for this OpenidDiscoveryInstance
*/
protected function proxy(): OpenidDiscoveryContext {
if (!$this->context) {
$this->context = new OpenidDiscoveryContext($this->version);
}
return $this->context;
}
/**
* Fetch the OpenidDiscoveryInstance
*
* @return OpenidDiscoveryInstance Fetched OpenidDiscoveryInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(): OpenidDiscoveryInstance {
return $this->proxy()->fetch();
}
/**
* Magic getter to access properties
*
* @param string $name Property to access
* @return mixed The requested property
* @throws TwilioException For unknown properties
*/
public function __get(string $name) {
if (\array_key_exists($name, $this->properties)) {
return $this->properties[$name];
}
if (\property_exists($this, '_' . $name)) {
$method = 'get' . \ucfirst($name);
return $this->$method();
}
throw new TwilioException('Unknown property: ' . $name);
}
/**
* 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.Oauth.V1.OpenidDiscoveryInstance ' . \implode(' ', $context) . ']';
}
} |