properties = [ 'totalAttempts' => Values::array_get($payload, 'total_attempts'), 'totalConverted' => Values::array_get($payload, 'total_converted'), 'totalUnconverted' => Values::array_get($payload, 'total_unconverted'), 'conversionRatePercentage' => Values::array_get($payload, 'conversion_rate_percentage'), 'url' => Values::array_get($payload, 'url'), ]; $this->solution = []; } /** * Generate an instance context for the instance, the context is capable of * performing various actions. All instance actions are proxied to the context * * @return VerificationAttemptsSummaryContext Context for this VerificationAttemptsSummaryInstance */ protected function proxy(): VerificationAttemptsSummaryContext { if (!$this->context) { $this->context = new VerificationAttemptsSummaryContext( $this->version ); } return $this->context; } /** * Fetch the VerificationAttemptsSummaryInstance * * @param array|Options $options Optional Arguments * @return VerificationAttemptsSummaryInstance Fetched VerificationAttemptsSummaryInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(array $options = []): VerificationAttemptsSummaryInstance { return $this->proxy()->fetch($options); } /** * 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.Verify.V2.VerificationAttemptsSummaryInstance ' . \implode(' ', $context) . ']'; } }