<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\Rest\Trusthub\V1;
use Twilio\Exceptions\TwilioException;
use Twilio\InstanceContext;
use Twilio\Options;
use Twilio\Serialize;
use Twilio\Values;
use Twilio\Version;
class EndUserContext extends InstanceContext {
/**
* Initialize the EndUserContext
*
* @param Version $version Version that contains the resource
* @param string $sid The unique string that identifies the resource
*/
public function __construct(Version $version, $sid) {
parent::__construct($version);
// Path Solution
$this->solution = ['sid' => $sid, ];
$this->uri = '/EndUsers/' . \rawurlencode($sid) . '';
}
/**
* Fetch the EndUserInstance
*
* @return EndUserInstance Fetched EndUserInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(): EndUserInstance {
$payload = $this->version->fetch('GET', $this->uri);
return new EndUserInstance($this->version, $payload, $this->solution['sid']);
}
/**
* Update the EndUserInstance
*
* @param array|Options $options Optional Arguments
* @return EndUserInstance Updated EndUserInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function update(array $options = []): EndUserInstance {
$options = new Values($options);
$data = Values::of([
'FriendlyName' => $options['friendlyName'],
'Attributes' => Serialize::jsonObject($options['attributes']),
]);
$payload = $this->version->update('POST', $this->uri, [], $data);
return new EndUserInstance($this->version, $payload, $this->solution['sid']);
}
/**
* Delete the EndUserInstance
*
* @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.Trusthub.V1.EndUserContext ' . \implode(' ', $context) . ']';
}
} |