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