Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Taskrouter/V1/Workspace/Workflow/WorkflowCumulativeStatisticsContext.php
Строк: 101
<?php

/**
 * This code was generated by
 *  / _    _  _|   _  _
 * | (_)/(_)(_|/| |(/_  v1.0.0
 * /       /
 */

namespace TwilioRestTaskrouterV1WorkspaceWorkflow;

use 
TwilioExceptionsTwilioException;
use 
TwilioInstanceContext;
use 
TwilioOptions;
use 
TwilioSerialize;
use 
TwilioValues;
use 
TwilioVersion;

class 
WorkflowCumulativeStatisticsContext extends InstanceContext {
    
/**
     * Initialize the WorkflowCumulativeStatisticsContext
     *
     * @param Version $version Version that contains the resource
     * @param string $workspaceSid The SID of the Workspace with the resource to
     *                             fetch
     * @param string $workflowSid Returns the list of Tasks that are being
     *                            controlled by the Workflow with the specified Sid
     *                            value
     */
    
public function __construct(Version $version$workspaceSid$workflowSid) {
        
parent::__construct($version);

        
// Path Solution
        
$this->solution = ['workspaceSid' => $workspaceSid'workflowSid' => $workflowSid, ];

        
$this->uri '/Workspaces/' rawurlencode($workspaceSid) . '/Workflows/' rawurlencode($workflowSid) . '/CumulativeStatistics';
    }

    
/**
     * Fetch the WorkflowCumulativeStatisticsInstance
     *
     * @param array|Options $options Optional Arguments
     * @return WorkflowCumulativeStatisticsInstance Fetched
     *                                              WorkflowCumulativeStatisticsInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function fetch(array $options = []): WorkflowCumulativeStatisticsInstance {
        
$options = new Values($options);

        
$params Values::of([
            
'EndDate' => Serialize::iso8601DateTime($options['endDate']),
            
'Minutes' => $options['minutes'],
            
'StartDate' => Serialize::iso8601DateTime($options['startDate']),
            
'TaskChannel' => $options['taskChannel'],
            
'SplitByWaitTime' => $options['splitByWaitTime'],
        ]);

        
$payload $this->version->fetch('GET'$this->uri$params);

        return new 
WorkflowCumulativeStatisticsInstance(
            
$this->version,
            
$payload,
            
$this->solution['workspaceSid'],
            
$this->solution['workflowSid']
        );
    }

    
/**
     * 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.Taskrouter.V1.WorkflowCumulativeStatisticsContext ' implode(' '$context) . ']';
    }
}
Онлайн: 2
Реклама