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

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

namespace TwilioRestTaskrouterV1WorkspaceWorker;

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

class 
WorkerChannelContext extends InstanceContext {
    
/**
     * Initialize the WorkerChannelContext
     *
     * @param Version $version Version that contains the resource
     * @param string $workspaceSid The SID of the Workspace with the WorkerChannel
     *                             to fetch
     * @param string $workerSid The SID of the Worker with the WorkerChannel to
     *                          fetch
     * @param string $sid The SID of the to fetch
     */
    
public function __construct(Version $version$workspaceSid$workerSid$sid) {
        
parent::__construct($version);

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

        
$this->uri '/Workspaces/' rawurlencode($workspaceSid) . '/Workers/' rawurlencode($workerSid) . '/Channels/' rawurlencode($sid) . '';
    }

    
/**
     * Fetch the WorkerChannelInstance
     *
     * @return WorkerChannelInstance Fetched WorkerChannelInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function fetch(): WorkerChannelInstance {
        
$payload $this->version->fetch('GET'$this->uri);

        return new 
WorkerChannelInstance(
            
$this->version,
            
$payload,
            
$this->solution['workspaceSid'],
            
$this->solution['workerSid'],
            
$this->solution['sid']
        );
    }

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

        
$data Values::of([
            
'Capacity' => $options['capacity'],
            
'Available' => Serialize::booleanToString($options['available']),
        ]);

        
$payload $this->version->update('POST'$this->uri, [], $data);

        return new 
WorkerChannelInstance(
            
$this->version,
            
$payload,
            
$this->solution['workspaceSid'],
            
$this->solution['workerSid'],
            
$this->solution['sid']
        );
    }

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