diff options
Diffstat (limited to 'Twilio/Rest/Preview/Wireless/CommandPage.php')
-rw-r--r-- | Twilio/Rest/Preview/Wireless/CommandPage.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Twilio/Rest/Preview/Wireless/CommandPage.php b/Twilio/Rest/Preview/Wireless/CommandPage.php new file mode 100644 index 0000000..b7e8b3d --- /dev/null +++ b/Twilio/Rest/Preview/Wireless/CommandPage.php @@ -0,0 +1,37 @@ +<?php + +/** + * This code was generated by + * \ / _ _ _| _ _ + * | (_)\/(_)(_|\/| |(/_ v1.0.0 + * / / + */ + +namespace Twilio\Rest\Preview\Wireless; + +use Twilio\Page; + +class CommandPage extends Page { + public function __construct($version, $response, $solution) { + parent::__construct($version, $response); + + // Path Solution + $this->solution = $solution; + } + + public function buildInstance(array $payload) { + return new CommandInstance( + $this->version, + $payload + ); + } + + /** + * Provide a friendly representation + * + * @return string Machine friendly representation + */ + public function __toString() { + return '[Twilio.Preview.Wireless.CommandPage]'; + } +}
\ No newline at end of file |