/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Oauth/V1
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Oauth/V1/UserInfoInstance.php (2968B)
properties = [
'userSid' => Values::array_get($payload, 'user_sid'),
'firstName' => Values::array_get($payload, 'first_name'),
'lastName' => Values::array_get($payload, 'last_name'),
'friendlyName' => Values::array_get($payload, 'friendly_name'),
'email' => Values::array_get($payload, 'email'),
'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 UserInfoContext Context for this UserInfoInstance
*/
protected function proxy(): UserInfoContext {
if (!$this->context) {
$this->context = new UserInfoContext($this->version);
}
return $this->context;
}
/**
* Fetch the UserInfoInstance
*
* @return UserInfoInstance Fetched UserInfoInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(): UserInfoInstance {
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.UserInfoInstance ' . \implode(' ', $context) . ']';
}
}