modern-events-calendar-lite/app/api/Twilio/Rest/Insights/V1/Conference/ConferenceParticipantContext.php

99 lines
2.8 KiB
PHP
Executable file

<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Insights
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace Twilio\Rest\Insights\V1\Conference;
use Twilio\Exceptions\TwilioException;
use Twilio\Options;
use Twilio\Values;
use Twilio\Version;
use Twilio\InstanceContext;
class ConferenceParticipantContext extends InstanceContext
{
/**
* Initialize the ConferenceParticipantContext
*
* @param Version $version Version that contains the resource
* @param string $conferenceSid The unique SID identifier of the Conference.
* @param string $participantSid The unique SID identifier of the Participant.
*/
public function __construct(
Version $version,
$conferenceSid,
$participantSid
) {
parent::__construct($version);
// Path Solution
$this->solution = [
'conferenceSid' =>
$conferenceSid,
'participantSid' =>
$participantSid,
];
$this->uri = '/Conferences/' . \rawurlencode($conferenceSid)
.'/Participants/' . \rawurlencode($participantSid)
.'';
}
/**
* Fetch the ConferenceParticipantInstance
*
* @param array|Options $options Optional Arguments
* @return ConferenceParticipantInstance Fetched ConferenceParticipantInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(array $options = []): ConferenceParticipantInstance
{
$options = new Values($options);
$params = Values::of([
'Events' =>
$options['events'],
'Metrics' =>
$options['metrics'],
]);
$payload = $this->version->fetch('GET', $this->uri, $params);
return new ConferenceParticipantInstance(
$this->version,
$payload,
$this->solution['conferenceSid'],
$this->solution['participantSid']
);
}
/**
* 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.Insights.V1.ConferenceParticipantContext ' . \implode(' ', $context) . ']';
}
}