Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Twilio/Rest/Serverless/V1/Service/Environment/DeploymentContext.php
Строк: 126
<?php

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

namespace TwilioRestServerlessV1ServiceEnvironment;

use 
TwilioExceptionsTwilioException;
use 
TwilioInstanceContext;
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 DeploymentContext extends InstanceContext {
    
/**
     * Initialize the DeploymentContext
     *
     * @param Version $version Version that contains the resource
     * @param string $serviceSid The SID of the Service to fetch the Deployment
     *                           resource from
     * @param string $environmentSid The SID of the environment used by the
     *                               Deployment to fetch
     * @param string $sid The SID that identifies the Deployment resource to fetch
     */
    
public function __construct(Version $version$serviceSid$environmentSid$sid) {
        
parent::__construct($version);

        
// Path Solution
        
$this->solution = ['serviceSid' => $serviceSid'environmentSid' => $environmentSid'sid' => $sid, ];

        
$this->uri '/Services/' rawurlencode($serviceSid) . '/Environments/' rawurlencode($environmentSid) . '/Deployments/' rawurlencode($sid) . '';
    }

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

        return new 
DeploymentInstance(
            
$this->version,
            
$payload,
            
$this->solution['serviceSid'],
            
$this->solution['environmentSid'],
            
$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.Serverless.V1.DeploymentContext ' implode(' '$context) . ']';
    }
}
Онлайн: 2
Реклама