mobilebackend/Twilio/Rest/Studio/V1/Flow/Execution/ExecutionContextList.php

52 lines
1.3 KiB
PHP

<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\Rest\Studio\V1\Flow\Execution;
use Twilio\ListResource;
use Twilio\Version;
class ExecutionContextList extends ListResource {
/**
* Construct the ExecutionContextList
*
* @param Version $version Version that contains the resource
* @param string $flowSid Flow Sid.
* @param string $executionSid Execution Sid.
* @return \Twilio\Rest\Studio\V1\Flow\Execution\ExecutionContextList
*/
public function __construct(Version $version, $flowSid, $executionSid) {
parent::__construct($version);
// Path Solution
$this->solution = array('flowSid' => $flowSid, 'executionSid' => $executionSid, );
}
/**
* Constructs a ExecutionContextContext
*
* @return \Twilio\Rest\Studio\V1\Flow\Execution\ExecutionContextContext
*/
public function getContext() {
return new ExecutionContextContext(
$this->version,
$this->solution['flowSid'],
$this->solution['executionSid']
);
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString() {
return '[Twilio.Studio.V1.ExecutionContextList]';
}
}