solution = [ ]; $this->uri = '/Attempts/Summary'; } /** * 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 { $options = new Values($options); $params = Values::of([ 'VerifyServiceSid' => $options['verifyServiceSid'], 'DateCreatedAfter' => Serialize::iso8601DateTime($options['dateCreatedAfter']), 'DateCreatedBefore' => Serialize::iso8601DateTime($options['dateCreatedBefore']), 'Country' => $options['country'], 'Channel' => $options['channel'], 'DestinationPrefix' => $options['destinationPrefix'], ]); $payload = $this->version->fetch('GET', $this->uri, $params); return new VerificationAttemptsSummaryInstance( $this->version, $payload ); } /** * 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.VerificationAttemptsSummaryContext ' . \implode(' ', $context) . ']'; } }