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

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

namespace TwilioRestPreviewBulkExports;

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

/**
 * PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact help@twilio.com.
 */
class ExportConfigurationContext extends InstanceContext {
    
/**
     * Initialize the ExportConfigurationContext
     *
     * @param Version $version Version that contains the resource
     * @param string $resourceType The type of communication – Messages, Calls
     */
    
public function __construct(Version $version$resourceType) {
        
parent::__construct($version);

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

        
$this->uri '/Exports/' rawurlencode($resourceType) . '/Configuration';
    }

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

        return new 
ExportConfigurationInstance($this->version$payload$this->solution['resourceType']);
    }

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

        
$data Values::of([
            
'Enabled' => Serialize::booleanToString($options['enabled']),
            
'WebhookUrl' => $options['webhookUrl'],
            
'WebhookMethod' => $options['webhookMethod'],
        ]);

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

        return new 
ExportConfigurationInstance($this->version$payload$this->solution['resourceType']);
    }

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