mobilebackend/Twilio/Rest/Studio/V1/Flow/Execution/ExecutionStep/ExecutionStepContextPage.php

40 lines
946 B
PHP
Raw Normal View History

2020-02-06 10:09:26 +00:00
<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\Rest\Studio\V1\Flow\Execution\ExecutionStep;
use Twilio\Page;
class ExecutionStepContextPage extends Page {
public function __construct($version, $response, $solution) {
parent::__construct($version, $response);
// Path Solution
$this->solution = $solution;
}
public function buildInstance(array $payload) {
return new ExecutionStepContextInstance(
$this->version,
$payload,
$this->solution['flowSid'],
$this->solution['executionSid'],
$this->solution['stepSid']
);
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString() {
return '[Twilio.Studio.V1.ExecutionStepContextPage]';
}
}