/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/FlexApi/V1
NameSizeModeActions
Interaction/-0755rm
AssessmentsContext.php22760644editdlrm
AssessmentsInstance.php44910644editdlrm
AssessmentsList.php31900644editdlrm
AssessmentsOptions.php26710644editdlrm
AssessmentsPage.php13750644editdlrm
ChannelContext.php18180644editdlrm
ChannelInstance.php37070644editdlrm
ChannelList.php62310644editdlrm
ChannelOptions.php46590644editdlrm
ChannelPage.php11480644editdlrm
ConfigurationContext.php23820644editdlrm
ConfigurationInstance.php87440644editdlrm
ConfigurationList.php9290644editdlrm
ConfigurationOptions.php16230644editdlrm
ConfigurationPage.php11840644editdlrm
FlexFlowContext.php35970644editdlrm
FlexFlowInstance.php47320644editdlrm
FlexFlowList.php70660644editdlrm
FlexFlowOptions.php282220644editdlrm
FlexFlowPage.php11540644editdlrm
InsightsAssessmentsCommentInstance.php29310644editdlrm
InsightsAssessmentsCommentList.php71130644editdlrm
InsightsAssessmentsCommentOptions.php37720644editdlrm
InsightsAssessmentsCommentPage.php14650644editdlrm
InsightsQuestionnairesCategoryContext.php28540644editdlrm
InsightsQuestionnairesCategoryInstance.php40830644editdlrm
InsightsQuestionnairesCategoryList.php66410644editdlrm
InsightsQuestionnairesCategoryOptions.php52980644editdlrm
InsightsQuestionnairesCategoryPage.php14890644editdlrm
InsightsQuestionnairesContext.php35620644editdlrm
InsightsQuestionnairesInstance.php45200644editdlrm
InsightsQuestionnairesList.php66840644editdlrm
InsightsQuestionnairesOptions.php103040644editdlrm
InsightsQuestionnairesPage.php14410644editdlrm
InsightsQuestionnairesQuestionContext.php31480644editdlrm
InsightsQuestionnairesQuestionInstance.php46960644editdlrm
InsightsQuestionnairesQuestionList.php73260644editdlrm
InsightsQuestionnairesQuestionOptions.php79630644editdlrm
InsightsQuestionnairesQuestionPage.php14890644editdlrm
InsightsSegmentsContext.php20060644editdlrm
InsightsSegmentsInstance.php53780644editdlrm
InsightsSegmentsList.php55400644editdlrm
InsightsSegmentsOptions.php33020644editdlrm
InsightsSegmentsPage.php14050644editdlrm
InsightsSessionContext.php18640644editdlrm
InsightsSessionInstance.php32770644editdlrm
InsightsSessionList.php11440644editdlrm
InsightsSessionOptions.php17030644editdlrm
InsightsSessionPage.php13990644editdlrm
InsightsSettingsAnswerSetsInstance.php23080644editdlrm
InsightsSettingsAnswerSetsList.php18220644editdlrm
InsightsSettingsAnswerSetsOptions.php16350644editdlrm
InsightsSettingsAnswerSetsPage.php14650644editdlrm
InsightsSettingsCommentInstance.php20490644editdlrm
InsightsSettingsCommentList.php17960644editdlrm
InsightsSettingsCommentOptions.php16170644editdlrm
InsightsSettingsCommentPage.php14470644editdlrm
InsightsUserRolesContext.php18780644editdlrm
InsightsUserRolesInstance.php29700644editdlrm
InsightsUserRolesList.php11560644editdlrm
InsightsUserRolesOptions.php17090644editdlrm
InsightsUserRolesPage.php14110644editdlrm
InteractionContext.php32070644editdlrm
InteractionInstance.php32710644editdlrm
InteractionList.php18180644editdlrm
InteractionPage.php11720644editdlrm
WebChannelContext.php25020644editdlrm
WebChannelInstance.php38880644editdlrm
WebChannelList.php59330644editdlrm
WebChannelOptions.php38630644editdlrm
WebChannelPage.php11660644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/FlexApi/V1/ChannelInstance.php (3707B)
properties = [ 'accountSid' => Values::array_get($payload, 'account_sid'), 'flexFlowSid' => Values::array_get($payload, 'flex_flow_sid'), 'sid' => Values::array_get($payload, 'sid'), 'userSid' => Values::array_get($payload, 'user_sid'), 'taskSid' => Values::array_get($payload, 'task_sid'), 'url' => Values::array_get($payload, 'url'), 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')), 'dateUpdated' => Deserialize::dateTime(Values::array_get($payload, 'date_updated')), ]; $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 ChannelContext Context for this ChannelInstance */ protected function proxy(): ChannelContext { if (!$this->context) { $this->context = new ChannelContext($this->version, $this->solution['sid']); } return $this->context; } /** * Fetch the ChannelInstance * * @return ChannelInstance Fetched ChannelInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): ChannelInstance { return $this->proxy()->fetch(); } /** * Delete the ChannelInstance * * @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.FlexApi.V1.ChannelInstance ' . \implode(' ', $context) . ']'; } }