/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Microvisor/V1
NameSizeModeActions
Device/-0755rm
AccountConfigContext.php25330644editdlrm
AccountConfigInstance.php38170644editdlrm
AccountConfigList.php55090644editdlrm
AccountConfigPage.php13960644editdlrm
AccountSecretContext.php25330644editdlrm
AccountSecretInstance.php37290644editdlrm
AccountSecretList.php55090644editdlrm
AccountSecretPage.php13960644editdlrm
AppContext.php19410644editdlrm
AppInstance.php37080644editdlrm
AppList.php47320644editdlrm
AppPage.php13360644editdlrm
DeviceContext.php46700644editdlrm
DeviceInstance.php45270644editdlrm
DeviceList.php47950644editdlrm
DeviceOptions.php30130644editdlrm
DevicePage.php13540644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Microvisor/V1/AppInstance.php (3708B)
properties = [ 'sid' => Values::array_get($payload, 'sid'), 'accountSid' => Values::array_get($payload, 'account_sid'), 'hash' => Values::array_get($payload, 'hash'), 'uniqueName' => Values::array_get($payload, 'unique_name'), 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')), 'dateUpdated' => Deserialize::dateTime(Values::array_get($payload, 'date_updated')), 'url' => Values::array_get($payload, 'url'), ]; $this->solution = ['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 AppContext Context for this AppInstance */ protected function proxy(): AppContext { if (!$this->context) { $this->context = new AppContext($this->version, $this->solution['sid']); } return $this->context; } /** * Fetch the AppInstance * * @return AppInstance Fetched AppInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): AppInstance { return $this->proxy()->fetch(); } /** * Delete the AppInstance * * @return bool True if delete succeeds, false otherwise * @throws TwilioException When an HTTP error occurs. */ public function delete(): bool { return $this->proxy()->delete(); } /** * Magic getter to access properties * * @param string $name Property to access * @return mixed The requested property * @throws TwilioException For unknown properties */ public function __get(string $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(): string { $context = []; foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Microvisor.V1.AppInstance ' . \implode(' ', $context) . ']'; } }