mobilebackend/Twilio/Rest/Studio/V1/Flow/Engagement/Step/StepContextPage.php

40 lines
912 B
PHP

<?php
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
namespace Twilio\Rest\Studio\V1\Flow\Engagement\Step;
use Twilio\Page;
class StepContextPage extends Page {
public function __construct($version, $response, $solution) {
parent::__construct($version, $response);
// Path Solution
$this->solution = $solution;
}
public function buildInstance(array $payload) {
return new StepContextInstance(
$this->version,
$payload,
$this->solution['flowSid'],
$this->solution['engagementSid'],
$this->solution['stepSid']
);
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString() {
return '[Twilio.Studio.V1.StepContextPage]';
}
}