Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Api/V2010/Account/Call/FeedbackContext.php
Строк: 169
<?php

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

namespace TwilioRestApiV2010AccountCall;

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

class 
FeedbackContext extends InstanceContext {
    
/**
     * Initialize the FeedbackContext
     *
     * @param Version $version Version that contains the resource
     * @param string $accountSid The unique sid that identifies this account
     * @param string $callSid The call sid that uniquely identifies the call
     */
    
public function __construct(Version $version$accountSid$callSid) {
        
parent::__construct($version);

        
// Path Solution
        
$this->solution = ['accountSid' => $accountSid'callSid' => $callSid, ];

        
$this->uri '/Accounts/' rawurlencode($accountSid) . '/Calls/' rawurlencode($callSid) . '/Feedback.json';
    }

    
/**
     * Create the FeedbackInstance
     *
     * @param int $qualityScore The call quality expressed as an integer from 1 to 5
     * @param array|Options $options Optional Arguments
     * @return FeedbackInstance Created FeedbackInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function create(int $qualityScore, array $options = []): FeedbackInstance {
        
$options = new Values($options);

        
$data Values::of([
            
'QualityScore' => $qualityScore,
            
'Issue' => Serialize::map($options['issue'], function($e) { return $e; }),
        ]);

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

        return new 
FeedbackInstance(
            
$this->version,
            
$payload,
            
$this->solution['accountSid'],
            
$this->solution['callSid']
        );
    }

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

        return new 
FeedbackInstance(
            
$this->version,
            
$payload,
            
$this->solution['accountSid'],
            
$this->solution['callSid']
        );
    }

    
/**
     * Update the FeedbackInstance
     *
     * @param int $qualityScore The call quality expressed as an integer from 1 to 5
     * @param array|Options $options Optional Arguments
     * @return FeedbackInstance Updated FeedbackInstance
     * @throws TwilioException When an HTTP error occurs.
     */
    
public function update(int $qualityScore, array $options = []): FeedbackInstance {
        
$options = new Values($options);

        
$data Values::of([
            
'QualityScore' => $qualityScore,
            
'Issue' => Serialize::map($options['issue'], function($e) { return $e; }),
        ]);

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

        return new 
FeedbackInstance(
            
$this->version,
            
$payload,
            
$this->solution['accountSid'],
            
$this->solution['callSid']
        );
    }

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