modern-events-calendar-lite/app/api/Twilio/Rest/Preview/Understand/Assistant/Task/TaskStatisticsContext.php

88 lines
2.4 KiB
PHP
Raw Permalink Normal View History

2024-10-15 12:04:03 +02:00
<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Preview
* 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\Preview\Understand\Assistant\Task;
use Twilio\Exceptions\TwilioException;
use Twilio\Version;
use Twilio\InstanceContext;
class TaskStatisticsContext extends InstanceContext
{
/**
* Initialize the TaskStatisticsContext
*
* @param Version $version Version that contains the resource
* @param string $assistantSid The unique ID of the parent Assistant.
* @param string $taskSid The unique ID of the Task associated with this Field.
*/
public function __construct(
Version $version,
$assistantSid,
$taskSid
) {
parent::__construct($version);
// Path Solution
$this->solution = [
'assistantSid' =>
$assistantSid,
'taskSid' =>
$taskSid,
];
$this->uri = '/Assistants/' . \rawurlencode($assistantSid)
.'/Tasks/' . \rawurlencode($taskSid)
.'/Statistics';
}
/**
* Fetch the TaskStatisticsInstance
*
* @return TaskStatisticsInstance Fetched TaskStatisticsInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch(): TaskStatisticsInstance
{
$payload = $this->version->fetch('GET', $this->uri);
return new TaskStatisticsInstance(
$this->version,
$payload,
$this->solution['assistantSid'],
$this->solution['taskSid']
);
}
/**
* 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.Preview.Understand.TaskStatisticsContext ' . \implode(' ', $context) . ']';
}
}