properties = array( 'sid' => Values::array_get($payload, 'sid'), 'url' => Values::array_get($payload, 'url'), 'uniqueName' => Values::array_get($payload, 'unique_name'), 'friendlyName' => Values::array_get($payload, 'friendly_name'), 'accountSid' => Values::array_get($payload, 'account_sid'), 'defaultDeploymentSid' => Values::array_get($payload, 'default_deployment_sid'), 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')), 'dateUpdated' => Deserialize::dateTime(Values::array_get($payload, 'date_updated')), 'links' => Values::array_get($payload, 'links'), ); $this->solution = array('sid' => $sid ?: $this->properties['sid'], ); } /** * Generate an instance context for the instance, the context is capable of * performing various actions. All instance actions are proxied to the context * * @return \Twilio\Rest\Preview\DeployedDevices\FleetContext Context for this * FleetInstance */ protected function proxy() { if (!$this->context) { $this->context = new FleetContext($this->version, $this->solution['sid']); } return $this->context; } /** * Fetch a FleetInstance * * @return FleetInstance Fetched FleetInstance */ public function fetch() { return $this->proxy()->fetch(); } /** * Deletes the FleetInstance * * @return boolean True if delete succeeds, false otherwise */ public function delete() { return $this->proxy()->delete(); } /** * Update the FleetInstance * * @param array|Options $options Optional Arguments * @return FleetInstance Updated FleetInstance */ public function update($options = array()) { return $this->proxy()->update($options); } /** * Access the devices * * @return \Twilio\Rest\Preview\DeployedDevices\Fleet\DeviceList */ protected function getDevices() { return $this->proxy()->devices; } /** * Access the deployments * * @return \Twilio\Rest\Preview\DeployedDevices\Fleet\DeploymentList */ protected function getDeployments() { return $this->proxy()->deployments; } /** * Access the certificates * * @return \Twilio\Rest\Preview\DeployedDevices\Fleet\CertificateList */ protected function getCertificates() { return $this->proxy()->certificates; } /** * Access the keys * * @return \Twilio\Rest\Preview\DeployedDevices\Fleet\KeyList */ protected function getKeys() { return $this->proxy()->keys; } /** * Magic getter to access properties * * @param string $name Property to access * @return mixed The requested property * @throws TwilioException For unknown properties */ public function __get($name) { if (array_key_exists($name, $this->properties)) { return $this->properties[$name]; } if (property_exists($this, '_' . $name)) { $method = 'get' . ucfirst($name); return $this->$method(); } throw new TwilioException('Unknown property: ' . $name); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { $context = array(); foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Preview.DeployedDevices.FleetInstance ' . implode(' ', $context) . ']'; } }