芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/joolsmen.com/vendor/twilio/sdk/src/Twilio/Rest/Autopilot/V1/AssistantInstance.php
properties = array( 'accountSid' => Values::array_get($payload, 'account_sid'), 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')), 'dateUpdated' => Deserialize::dateTime(Values::array_get($payload, 'date_updated')), 'friendlyName' => Values::array_get($payload, 'friendly_name'), 'latestModelBuildSid' => Values::array_get($payload, 'latest_model_build_sid'), 'links' => Values::array_get($payload, 'links'), 'logQueries' => Values::array_get($payload, 'log_queries'), 'developmentStage' => Values::array_get($payload, 'development_stage'), 'needsModelBuild' => Values::array_get($payload, 'needs_model_build'), 'sid' => Values::array_get($payload, 'sid'), 'uniqueName' => Values::array_get($payload, 'unique_name'), 'url' => Values::array_get($payload, 'url'), 'callbackUrl' => Values::array_get($payload, 'callback_url'), 'callbackEvents' => Values::array_get($payload, 'callback_events'), ); $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\Autopilot\V1\AssistantContext Context for this * AssistantInstance */ protected function proxy() { if (!$this->context) { $this->context = new AssistantContext($this->version, $this->solution['sid']); } return $this->context; } /** * Fetch a AssistantInstance * * @return AssistantInstance Fetched AssistantInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch() { return $this->proxy()->fetch(); } /** * Update the AssistantInstance * * @param array|Options $options Optional Arguments * @return AssistantInstance Updated AssistantInstance * @throws TwilioException When an HTTP error occurs. */ public function update($options = array()) { return $this->proxy()->update($options); } /** * Deletes the AssistantInstance * * @return boolean True if delete succeeds, false otherwise * @throws TwilioException When an HTTP error occurs. */ public function delete() { return $this->proxy()->delete(); } /** * Access the fieldTypes * * @return \Twilio\Rest\Autopilot\V1\Assistant\FieldTypeList */ protected function getFieldTypes() { return $this->proxy()->fieldTypes; } /** * Access the tasks * * @return \Twilio\Rest\Autopilot\V1\Assistant\TaskList */ protected function getTasks() { return $this->proxy()->tasks; } /** * Access the modelBuilds * * @return \Twilio\Rest\Autopilot\V1\Assistant\ModelBuildList */ protected function getModelBuilds() { return $this->proxy()->modelBuilds; } /** * Access the queries * * @return \Twilio\Rest\Autopilot\V1\Assistant\QueryList */ protected function getQueries() { return $this->proxy()->queries; } /** * Access the styleSheet * * @return \Twilio\Rest\Autopilot\V1\Assistant\StyleSheetList */ protected function getStyleSheet() { return $this->proxy()->styleSheet; } /** * Access the defaults * * @return \Twilio\Rest\Autopilot\V1\Assistant\DefaultsList */ protected function getDefaults() { return $this->proxy()->defaults; } /** * Access the dialogues * * @return \Twilio\Rest\Autopilot\V1\Assistant\DialogueList */ protected function getDialogues() { return $this->proxy()->dialogues; } /** * Access the webhooks * * @return \Twilio\Rest\Autopilot\V1\Assistant\WebhookList */ protected function getWebhooks() { return $this->proxy()->webhooks; } /** * Access the exportAssistant * * @return \Twilio\Rest\Autopilot\V1\Assistant\ExportAssistantList */ protected function getExportAssistant() { return $this->proxy()->exportAssistant; } /** * 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.Autopilot.V1.AssistantInstance ' . \implode(' ', $context) . ']'; } }