├── LICENSE ├── README.md ├── admin-pages.php ├── core.php ├── freemius ├── LICENSE.txt ├── README.md ├── assets │ ├── css │ │ ├── admin │ │ │ ├── account.css │ │ │ ├── add-ons.css │ │ │ ├── affiliation.css │ │ │ ├── checkout.css │ │ │ ├── common.css │ │ │ ├── connect.css │ │ │ ├── debug.css │ │ │ ├── dialog-boxes.css │ │ │ ├── gdpr-optin-notice.css │ │ │ ├── index.php │ │ │ └── plugins.css │ │ ├── customizer.css │ │ └── index.php │ ├── img │ │ ├── index.php │ │ ├── plugin-icon.png │ │ └── theme-icon.png │ ├── index.php │ └── js │ │ ├── index.php │ │ ├── nojquery.ba-postmessage.js │ │ ├── nojquery.ba-postmessage.min.js │ │ └── postmessage.js ├── config.php ├── includes │ ├── class-freemius-abstract.php │ ├── class-freemius.php │ ├── class-fs-admin-notices.php │ ├── class-fs-api.php │ ├── class-fs-logger.php │ ├── class-fs-options.php │ ├── class-fs-plugin-updater.php │ ├── class-fs-security.php │ ├── class-fs-storage.php │ ├── class-fs-user-lock.php │ ├── customizer │ │ ├── class-fs-customizer-support-section.php │ │ ├── class-fs-customizer-upsell-control.php │ │ └── index.php │ ├── debug │ │ ├── class-fs-debug-bar-panel.php │ │ ├── debug-bar-start.php │ │ └── index.php │ ├── entities │ │ ├── class-fs-affiliate-terms.php │ │ ├── class-fs-affiliate.php │ │ ├── class-fs-billing.php │ │ ├── class-fs-entity.php │ │ ├── class-fs-payment.php │ │ ├── class-fs-plugin-info.php │ │ ├── class-fs-plugin-license.php │ │ ├── class-fs-plugin-plan.php │ │ ├── class-fs-plugin-tag.php │ │ ├── class-fs-plugin.php │ │ ├── class-fs-pricing.php │ │ ├── class-fs-scope-entity.php │ │ ├── class-fs-site.php │ │ ├── class-fs-subscription.php │ │ ├── class-fs-user.php │ │ └── index.php │ ├── fs-core-functions.php │ ├── fs-essential-functions.php │ ├── fs-plugin-info-dialog.php │ ├── i18n.php │ ├── index.php │ ├── l10n.php │ ├── managers │ │ ├── class-fs-admin-menu-manager.php │ │ ├── class-fs-admin-notice-manager.php │ │ ├── class-fs-cache-manager.php │ │ ├── class-fs-gdpr-manager.php │ │ ├── class-fs-key-value-storage.php │ │ ├── class-fs-license-manager.php │ │ ├── class-fs-option-manager.php │ │ ├── class-fs-plan-manager.php │ │ ├── class-fs-plugin-manager.php │ │ └── index.php │ ├── sdk │ │ ├── Exceptions │ │ │ ├── ArgumentNotExistException.php │ │ │ ├── EmptyArgumentException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── OAuthException.php │ │ │ └── index.php │ │ ├── FreemiusBase.php │ │ ├── FreemiusWordPress.php │ │ ├── LICENSE.txt │ │ └── index.php │ └── supplements │ │ ├── fs-essential-functions-1.1.7.1.php │ │ ├── fs-essential-functions-2.2.1.php │ │ └── index.php ├── index.php ├── languages │ ├── freemius-cs_CZ.mo │ ├── freemius-cs_CZ.po │ ├── freemius-da_DK.mo │ ├── freemius-da_DK.po │ ├── freemius-en.mo │ ├── freemius-en.po │ ├── freemius-es_ES.mo │ ├── freemius-es_ES.po │ ├── freemius-fr_FR.mo │ ├── freemius-fr_FR.po │ ├── freemius-he_IL.mo │ ├── freemius-he_IL.po │ ├── freemius-hu_HU.mo │ ├── freemius-hu_HU.po │ ├── freemius-it_IT.mo │ ├── freemius-it_IT.po │ ├── freemius-ja.mo │ ├── freemius-ja.po │ ├── freemius-nl_NL.mo │ ├── freemius-nl_NL.po │ ├── freemius-ru_RU.mo │ ├── freemius-ru_RU.po │ ├── freemius-ta.mo │ ├── freemius-ta.po │ ├── freemius.pot │ └── index.php ├── package.json ├── require.php ├── start.php └── templates │ ├── account.php │ ├── account │ ├── billing.php │ ├── index.php │ ├── partials │ │ ├── activate-license-button.php │ │ ├── addon.php │ │ ├── deactivate-license-button.php │ │ ├── index.php │ │ └── site.php │ └── payments.php │ ├── add-ons.php │ ├── add-trial-to-pricing.php │ ├── admin-notice.php │ ├── ajax-loader.php │ ├── auto-installation.php │ ├── checkout.php │ ├── connect.php │ ├── contact.php │ ├── debug.php │ ├── debug │ ├── api-calls.php │ ├── index.php │ ├── logger.php │ ├── plugins-themes-sync.php │ └── scheduled-crons.php │ ├── email.php │ ├── firewall-issues-js.php │ ├── forms │ ├── affiliation.php │ ├── data-debug-mode.php │ ├── deactivation │ │ ├── contact.php │ │ ├── form.php │ │ ├── index.php │ │ └── retry-skip.php │ ├── index.php │ ├── license-activation.php │ ├── optout.php │ ├── premium-versions-upgrade-handler.php │ ├── premium-versions-upgrade-metadata.php │ ├── resend-key.php │ ├── subscription-cancellation.php │ ├── trial-start.php │ └── user-change.php │ ├── gdpr-optin-js.php │ ├── index.php │ ├── js │ ├── index.php │ ├── jquery.content-change.php │ ├── open-license-activation.php │ └── style-premium-theme.php │ ├── partials │ └── network-activation.php │ ├── plugin-icon.php │ ├── plugin-info │ ├── description.php │ ├── features.php │ ├── index.php │ └── screenshots.php │ ├── powered-by.php │ ├── pricing.php │ ├── secure-https-header.php │ ├── sticky-admin-notice-js.php │ ├── tabs-capture-js.php │ └── tabs.php ├── helpers.php ├── languages └── twilio-core.pot ├── readme.txt ├── twilio-php ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── Dockerfile-dev ├── PULL_REQUEST_TEMPLATE.md ├── composer.json └── src │ └── Twilio │ ├── Deserialize.php │ ├── Domain.php │ ├── Exceptions │ ├── ConfigurationException.php │ ├── DeserializeException.php │ ├── EnvironmentException.php │ ├── HttpException.php │ ├── RestException.php │ ├── TwilioException.php │ └── TwimlException.php │ ├── Http │ ├── Client.php │ ├── CurlClient.php │ ├── GuzzleClient.php │ └── Response.php │ ├── InstanceContext.php │ ├── InstanceResource.php │ ├── Jwt │ ├── AccessToken.php │ ├── Client │ │ └── ScopeURI.php │ ├── ClientToken.php │ ├── Grants │ │ ├── ChatGrant.php │ │ ├── Grant.php │ │ ├── SyncGrant.php │ │ ├── TaskRouterGrant.php │ │ ├── VideoGrant.php │ │ └── VoiceGrant.php │ ├── JWT.php │ └── TaskRouter │ │ ├── CapabilityToken.php │ │ ├── Policy.php │ │ ├── TaskQueueCapability.php │ │ ├── WorkerCapability.php │ │ └── WorkspaceCapability.php │ ├── ListResource.php │ ├── Options.php │ ├── Page.php │ ├── Rest │ ├── Accounts.php │ ├── Accounts │ │ ├── V1.php │ │ └── V1 │ │ │ ├── Credential │ │ │ ├── AwsContext.php │ │ │ ├── AwsInstance.php │ │ │ ├── AwsList.php │ │ │ ├── AwsOptions.php │ │ │ ├── AwsPage.php │ │ │ ├── PublicKeyContext.php │ │ │ ├── PublicKeyInstance.php │ │ │ ├── PublicKeyList.php │ │ │ ├── PublicKeyOptions.php │ │ │ └── PublicKeyPage.php │ │ │ ├── CredentialInstance.php │ │ │ ├── CredentialList.php │ │ │ └── CredentialPage.php │ ├── Api.php │ ├── Api │ │ ├── V2010.php │ │ └── V2010 │ │ │ ├── Account │ │ │ ├── Address │ │ │ │ ├── DependentPhoneNumberInstance.php │ │ │ │ ├── DependentPhoneNumberList.php │ │ │ │ └── DependentPhoneNumberPage.php │ │ │ ├── AddressContext.php │ │ │ ├── AddressInstance.php │ │ │ ├── AddressList.php │ │ │ ├── AddressOptions.php │ │ │ ├── AddressPage.php │ │ │ ├── ApplicationContext.php │ │ │ ├── ApplicationInstance.php │ │ │ ├── ApplicationList.php │ │ │ ├── ApplicationOptions.php │ │ │ ├── ApplicationPage.php │ │ │ ├── AuthorizedConnectAppContext.php │ │ │ ├── AuthorizedConnectAppInstance.php │ │ │ ├── AuthorizedConnectAppList.php │ │ │ ├── AuthorizedConnectAppPage.php │ │ │ ├── AvailablePhoneNumberCountry │ │ │ │ ├── LocalInstance.php │ │ │ │ ├── LocalList.php │ │ │ │ ├── LocalOptions.php │ │ │ │ ├── LocalPage.php │ │ │ │ ├── MachineToMachineInstance.php │ │ │ │ ├── MachineToMachineList.php │ │ │ │ ├── MachineToMachineOptions.php │ │ │ │ ├── MachineToMachinePage.php │ │ │ │ ├── MobileInstance.php │ │ │ │ ├── MobileList.php │ │ │ │ ├── MobileOptions.php │ │ │ │ ├── MobilePage.php │ │ │ │ ├── NationalInstance.php │ │ │ │ ├── NationalList.php │ │ │ │ ├── NationalOptions.php │ │ │ │ ├── NationalPage.php │ │ │ │ ├── SharedCostInstance.php │ │ │ │ ├── SharedCostList.php │ │ │ │ ├── SharedCostOptions.php │ │ │ │ ├── SharedCostPage.php │ │ │ │ ├── TollFreeInstance.php │ │ │ │ ├── TollFreeList.php │ │ │ │ ├── TollFreeOptions.php │ │ │ │ ├── TollFreePage.php │ │ │ │ ├── VoipInstance.php │ │ │ │ ├── VoipList.php │ │ │ │ ├── VoipOptions.php │ │ │ │ └── VoipPage.php │ │ │ ├── AvailablePhoneNumberCountryContext.php │ │ │ ├── AvailablePhoneNumberCountryInstance.php │ │ │ ├── AvailablePhoneNumberCountryList.php │ │ │ ├── AvailablePhoneNumberCountryPage.php │ │ │ ├── BalanceInstance.php │ │ │ ├── BalanceList.php │ │ │ ├── BalancePage.php │ │ │ ├── Call │ │ │ │ ├── FeedbackContext.php │ │ │ │ ├── FeedbackInstance.php │ │ │ │ ├── FeedbackList.php │ │ │ │ ├── FeedbackOptions.php │ │ │ │ ├── FeedbackPage.php │ │ │ │ ├── FeedbackSummaryContext.php │ │ │ │ ├── FeedbackSummaryInstance.php │ │ │ │ ├── FeedbackSummaryList.php │ │ │ │ ├── FeedbackSummaryOptions.php │ │ │ │ ├── FeedbackSummaryPage.php │ │ │ │ ├── NotificationContext.php │ │ │ │ ├── NotificationInstance.php │ │ │ │ ├── NotificationList.php │ │ │ │ ├── NotificationOptions.php │ │ │ │ ├── NotificationPage.php │ │ │ │ ├── PaymentContext.php │ │ │ │ ├── PaymentInstance.php │ │ │ │ ├── PaymentList.php │ │ │ │ ├── PaymentOptions.php │ │ │ │ ├── PaymentPage.php │ │ │ │ ├── RecordingContext.php │ │ │ │ ├── RecordingInstance.php │ │ │ │ ├── RecordingList.php │ │ │ │ ├── RecordingOptions.php │ │ │ │ └── RecordingPage.php │ │ │ ├── CallContext.php │ │ │ ├── CallInstance.php │ │ │ ├── CallList.php │ │ │ ├── CallOptions.php │ │ │ ├── CallPage.php │ │ │ ├── Conference │ │ │ │ ├── ParticipantContext.php │ │ │ │ ├── ParticipantInstance.php │ │ │ │ ├── ParticipantList.php │ │ │ │ ├── ParticipantOptions.php │ │ │ │ ├── ParticipantPage.php │ │ │ │ ├── RecordingContext.php │ │ │ │ ├── RecordingInstance.php │ │ │ │ ├── RecordingList.php │ │ │ │ ├── RecordingOptions.php │ │ │ │ └── RecordingPage.php │ │ │ ├── ConferenceContext.php │ │ │ ├── ConferenceInstance.php │ │ │ ├── ConferenceList.php │ │ │ ├── ConferenceOptions.php │ │ │ ├── ConferencePage.php │ │ │ ├── ConnectAppContext.php │ │ │ ├── ConnectAppInstance.php │ │ │ ├── ConnectAppList.php │ │ │ ├── ConnectAppOptions.php │ │ │ ├── ConnectAppPage.php │ │ │ ├── IncomingPhoneNumber │ │ │ │ ├── AssignedAddOn │ │ │ │ │ ├── AssignedAddOnExtensionContext.php │ │ │ │ │ ├── AssignedAddOnExtensionInstance.php │ │ │ │ │ ├── AssignedAddOnExtensionList.php │ │ │ │ │ └── AssignedAddOnExtensionPage.php │ │ │ │ ├── AssignedAddOnContext.php │ │ │ │ ├── AssignedAddOnInstance.php │ │ │ │ ├── AssignedAddOnList.php │ │ │ │ ├── AssignedAddOnPage.php │ │ │ │ ├── LocalInstance.php │ │ │ │ ├── LocalList.php │ │ │ │ ├── LocalOptions.php │ │ │ │ ├── LocalPage.php │ │ │ │ ├── MobileInstance.php │ │ │ │ ├── MobileList.php │ │ │ │ ├── MobileOptions.php │ │ │ │ ├── MobilePage.php │ │ │ │ ├── TollFreeInstance.php │ │ │ │ ├── TollFreeList.php │ │ │ │ ├── TollFreeOptions.php │ │ │ │ └── TollFreePage.php │ │ │ ├── IncomingPhoneNumberContext.php │ │ │ ├── IncomingPhoneNumberInstance.php │ │ │ ├── IncomingPhoneNumberList.php │ │ │ ├── IncomingPhoneNumberOptions.php │ │ │ ├── IncomingPhoneNumberPage.php │ │ │ ├── KeyContext.php │ │ │ ├── KeyInstance.php │ │ │ ├── KeyList.php │ │ │ ├── KeyOptions.php │ │ │ ├── KeyPage.php │ │ │ ├── Message │ │ │ │ ├── FeedbackInstance.php │ │ │ │ ├── FeedbackList.php │ │ │ │ ├── FeedbackOptions.php │ │ │ │ ├── FeedbackPage.php │ │ │ │ ├── MediaContext.php │ │ │ │ ├── MediaInstance.php │ │ │ │ ├── MediaList.php │ │ │ │ ├── MediaOptions.php │ │ │ │ └── MediaPage.php │ │ │ ├── MessageContext.php │ │ │ ├── MessageInstance.php │ │ │ ├── MessageList.php │ │ │ ├── MessageOptions.php │ │ │ ├── MessagePage.php │ │ │ ├── NewKeyInstance.php │ │ │ ├── NewKeyList.php │ │ │ ├── NewKeyOptions.php │ │ │ ├── NewKeyPage.php │ │ │ ├── NewSigningKeyInstance.php │ │ │ ├── NewSigningKeyList.php │ │ │ ├── NewSigningKeyOptions.php │ │ │ ├── NewSigningKeyPage.php │ │ │ ├── NotificationContext.php │ │ │ ├── NotificationInstance.php │ │ │ ├── NotificationList.php │ │ │ ├── NotificationOptions.php │ │ │ ├── NotificationPage.php │ │ │ ├── OutgoingCallerIdContext.php │ │ │ ├── OutgoingCallerIdInstance.php │ │ │ ├── OutgoingCallerIdList.php │ │ │ ├── OutgoingCallerIdOptions.php │ │ │ ├── OutgoingCallerIdPage.php │ │ │ ├── Queue │ │ │ │ ├── MemberContext.php │ │ │ │ ├── MemberInstance.php │ │ │ │ ├── MemberList.php │ │ │ │ ├── MemberOptions.php │ │ │ │ └── MemberPage.php │ │ │ ├── QueueContext.php │ │ │ ├── QueueInstance.php │ │ │ ├── QueueList.php │ │ │ ├── QueueOptions.php │ │ │ ├── QueuePage.php │ │ │ ├── Recording │ │ │ │ ├── AddOnResult │ │ │ │ │ ├── PayloadContext.php │ │ │ │ │ ├── PayloadInstance.php │ │ │ │ │ ├── PayloadList.php │ │ │ │ │ └── PayloadPage.php │ │ │ │ ├── AddOnResultContext.php │ │ │ │ ├── AddOnResultInstance.php │ │ │ │ ├── AddOnResultList.php │ │ │ │ ├── AddOnResultPage.php │ │ │ │ ├── TranscriptionContext.php │ │ │ │ ├── TranscriptionInstance.php │ │ │ │ ├── TranscriptionList.php │ │ │ │ └── TranscriptionPage.php │ │ │ ├── RecordingContext.php │ │ │ ├── RecordingInstance.php │ │ │ ├── RecordingList.php │ │ │ ├── RecordingOptions.php │ │ │ ├── RecordingPage.php │ │ │ ├── ShortCodeContext.php │ │ │ ├── ShortCodeInstance.php │ │ │ ├── ShortCodeList.php │ │ │ ├── ShortCodeOptions.php │ │ │ ├── ShortCodePage.php │ │ │ ├── SigningKeyContext.php │ │ │ ├── SigningKeyInstance.php │ │ │ ├── SigningKeyList.php │ │ │ ├── SigningKeyOptions.php │ │ │ ├── SigningKeyPage.php │ │ │ ├── Sip │ │ │ │ ├── CredentialList │ │ │ │ │ ├── CredentialContext.php │ │ │ │ │ ├── CredentialInstance.php │ │ │ │ │ ├── CredentialList.php │ │ │ │ │ ├── CredentialOptions.php │ │ │ │ │ └── CredentialPage.php │ │ │ │ ├── CredentialListContext.php │ │ │ │ ├── CredentialListInstance.php │ │ │ │ ├── CredentialListList.php │ │ │ │ ├── CredentialListPage.php │ │ │ │ ├── Domain │ │ │ │ │ ├── AuthTypes │ │ │ │ │ │ ├── AuthTypeCalls │ │ │ │ │ │ │ ├── AuthCallsCredentialListMappingContext.php │ │ │ │ │ │ │ ├── AuthCallsCredentialListMappingInstance.php │ │ │ │ │ │ │ ├── AuthCallsCredentialListMappingList.php │ │ │ │ │ │ │ ├── AuthCallsCredentialListMappingPage.php │ │ │ │ │ │ │ ├── AuthCallsIpAccessControlListMappingContext.php │ │ │ │ │ │ │ ├── AuthCallsIpAccessControlListMappingInstance.php │ │ │ │ │ │ │ ├── AuthCallsIpAccessControlListMappingList.php │ │ │ │ │ │ │ └── AuthCallsIpAccessControlListMappingPage.php │ │ │ │ │ │ ├── AuthTypeCallsInstance.php │ │ │ │ │ │ ├── AuthTypeCallsList.php │ │ │ │ │ │ ├── AuthTypeCallsPage.php │ │ │ │ │ │ ├── AuthTypeRegistrations │ │ │ │ │ │ │ ├── AuthRegistrationsCredentialListMappingContext.php │ │ │ │ │ │ │ ├── AuthRegistrationsCredentialListMappingInstance.php │ │ │ │ │ │ │ ├── AuthRegistrationsCredentialListMappingList.php │ │ │ │ │ │ │ └── AuthRegistrationsCredentialListMappingPage.php │ │ │ │ │ │ ├── AuthTypeRegistrationsInstance.php │ │ │ │ │ │ ├── AuthTypeRegistrationsList.php │ │ │ │ │ │ └── AuthTypeRegistrationsPage.php │ │ │ │ │ ├── AuthTypesInstance.php │ │ │ │ │ ├── AuthTypesList.php │ │ │ │ │ ├── AuthTypesPage.php │ │ │ │ │ ├── CredentialListMappingContext.php │ │ │ │ │ ├── CredentialListMappingInstance.php │ │ │ │ │ ├── CredentialListMappingList.php │ │ │ │ │ ├── CredentialListMappingPage.php │ │ │ │ │ ├── IpAccessControlListMappingContext.php │ │ │ │ │ ├── IpAccessControlListMappingInstance.php │ │ │ │ │ ├── IpAccessControlListMappingList.php │ │ │ │ │ └── IpAccessControlListMappingPage.php │ │ │ │ ├── DomainContext.php │ │ │ │ ├── DomainInstance.php │ │ │ │ ├── DomainList.php │ │ │ │ ├── DomainOptions.php │ │ │ │ ├── DomainPage.php │ │ │ │ ├── IpAccessControlList │ │ │ │ │ ├── IpAddressContext.php │ │ │ │ │ ├── IpAddressInstance.php │ │ │ │ │ ├── IpAddressList.php │ │ │ │ │ ├── IpAddressOptions.php │ │ │ │ │ └── IpAddressPage.php │ │ │ │ ├── IpAccessControlListContext.php │ │ │ │ ├── IpAccessControlListInstance.php │ │ │ │ ├── IpAccessControlListList.php │ │ │ │ └── IpAccessControlListPage.php │ │ │ ├── SipInstance.php │ │ │ ├── SipList.php │ │ │ ├── SipPage.php │ │ │ ├── TokenInstance.php │ │ │ ├── TokenList.php │ │ │ ├── TokenOptions.php │ │ │ ├── TokenPage.php │ │ │ ├── TranscriptionContext.php │ │ │ ├── TranscriptionInstance.php │ │ │ ├── TranscriptionList.php │ │ │ ├── TranscriptionPage.php │ │ │ ├── Usage │ │ │ │ ├── Record │ │ │ │ │ ├── AllTimeInstance.php │ │ │ │ │ ├── AllTimeList.php │ │ │ │ │ ├── AllTimeOptions.php │ │ │ │ │ ├── AllTimePage.php │ │ │ │ │ ├── DailyInstance.php │ │ │ │ │ ├── DailyList.php │ │ │ │ │ ├── DailyOptions.php │ │ │ │ │ ├── DailyPage.php │ │ │ │ │ ├── LastMonthInstance.php │ │ │ │ │ ├── LastMonthList.php │ │ │ │ │ ├── LastMonthOptions.php │ │ │ │ │ ├── LastMonthPage.php │ │ │ │ │ ├── MonthlyInstance.php │ │ │ │ │ ├── MonthlyList.php │ │ │ │ │ ├── MonthlyOptions.php │ │ │ │ │ ├── MonthlyPage.php │ │ │ │ │ ├── ThisMonthInstance.php │ │ │ │ │ ├── ThisMonthList.php │ │ │ │ │ ├── ThisMonthOptions.php │ │ │ │ │ ├── ThisMonthPage.php │ │ │ │ │ ├── TodayInstance.php │ │ │ │ │ ├── TodayList.php │ │ │ │ │ ├── TodayOptions.php │ │ │ │ │ ├── TodayPage.php │ │ │ │ │ ├── YearlyInstance.php │ │ │ │ │ ├── YearlyList.php │ │ │ │ │ ├── YearlyOptions.php │ │ │ │ │ ├── YearlyPage.php │ │ │ │ │ ├── YesterdayInstance.php │ │ │ │ │ ├── YesterdayList.php │ │ │ │ │ ├── YesterdayOptions.php │ │ │ │ │ └── YesterdayPage.php │ │ │ │ ├── RecordInstance.php │ │ │ │ ├── RecordList.php │ │ │ │ ├── RecordOptions.php │ │ │ │ ├── RecordPage.php │ │ │ │ ├── TriggerContext.php │ │ │ │ ├── TriggerInstance.php │ │ │ │ ├── TriggerList.php │ │ │ │ ├── TriggerOptions.php │ │ │ │ └── TriggerPage.php │ │ │ ├── UsageInstance.php │ │ │ ├── UsageList.php │ │ │ ├── UsagePage.php │ │ │ ├── ValidationRequestInstance.php │ │ │ ├── ValidationRequestList.php │ │ │ ├── ValidationRequestOptions.php │ │ │ └── ValidationRequestPage.php │ │ │ ├── AccountContext.php │ │ │ ├── AccountInstance.php │ │ │ ├── AccountList.php │ │ │ ├── AccountOptions.php │ │ │ └── AccountPage.php │ ├── Authy.php │ ├── Authy │ │ ├── V1.php │ │ └── V1 │ │ │ ├── FormContext.php │ │ │ ├── FormInstance.php │ │ │ ├── FormList.php │ │ │ ├── FormPage.php │ │ │ ├── Service │ │ │ ├── Entity │ │ │ │ ├── Factor │ │ │ │ │ ├── ChallengeContext.php │ │ │ │ │ ├── ChallengeInstance.php │ │ │ │ │ ├── ChallengeList.php │ │ │ │ │ ├── ChallengeOptions.php │ │ │ │ │ └── ChallengePage.php │ │ │ │ ├── FactorContext.php │ │ │ │ ├── FactorInstance.php │ │ │ │ ├── FactorList.php │ │ │ │ ├── FactorOptions.php │ │ │ │ └── FactorPage.php │ │ │ ├── EntityContext.php │ │ │ ├── EntityInstance.php │ │ │ ├── EntityList.php │ │ │ └── EntityPage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ └── ServicePage.php │ ├── Autopilot.php │ ├── Autopilot │ │ ├── V1.php │ │ └── V1 │ │ │ ├── Assistant │ │ │ ├── DefaultsContext.php │ │ │ ├── DefaultsInstance.php │ │ │ ├── DefaultsList.php │ │ │ ├── DefaultsOptions.php │ │ │ ├── DefaultsPage.php │ │ │ ├── DialogueContext.php │ │ │ ├── DialogueInstance.php │ │ │ ├── DialogueList.php │ │ │ ├── DialoguePage.php │ │ │ ├── ExportAssistantContext.php │ │ │ ├── ExportAssistantInstance.php │ │ │ ├── ExportAssistantList.php │ │ │ ├── ExportAssistantPage.php │ │ │ ├── FieldType │ │ │ │ ├── FieldValueContext.php │ │ │ │ ├── FieldValueInstance.php │ │ │ │ ├── FieldValueList.php │ │ │ │ ├── FieldValueOptions.php │ │ │ │ └── FieldValuePage.php │ │ │ ├── FieldTypeContext.php │ │ │ ├── FieldTypeInstance.php │ │ │ ├── FieldTypeList.php │ │ │ ├── FieldTypeOptions.php │ │ │ ├── FieldTypePage.php │ │ │ ├── ModelBuildContext.php │ │ │ ├── ModelBuildInstance.php │ │ │ ├── ModelBuildList.php │ │ │ ├── ModelBuildOptions.php │ │ │ ├── ModelBuildPage.php │ │ │ ├── QueryContext.php │ │ │ ├── QueryInstance.php │ │ │ ├── QueryList.php │ │ │ ├── QueryOptions.php │ │ │ ├── QueryPage.php │ │ │ ├── StyleSheetContext.php │ │ │ ├── StyleSheetInstance.php │ │ │ ├── StyleSheetList.php │ │ │ ├── StyleSheetOptions.php │ │ │ ├── StyleSheetPage.php │ │ │ ├── Task │ │ │ │ ├── FieldContext.php │ │ │ │ ├── FieldInstance.php │ │ │ │ ├── FieldList.php │ │ │ │ ├── FieldPage.php │ │ │ │ ├── SampleContext.php │ │ │ │ ├── SampleInstance.php │ │ │ │ ├── SampleList.php │ │ │ │ ├── SampleOptions.php │ │ │ │ ├── SamplePage.php │ │ │ │ ├── TaskActionsContext.php │ │ │ │ ├── TaskActionsInstance.php │ │ │ │ ├── TaskActionsList.php │ │ │ │ ├── TaskActionsOptions.php │ │ │ │ ├── TaskActionsPage.php │ │ │ │ ├── TaskStatisticsContext.php │ │ │ │ ├── TaskStatisticsInstance.php │ │ │ │ ├── TaskStatisticsList.php │ │ │ │ └── TaskStatisticsPage.php │ │ │ ├── TaskContext.php │ │ │ ├── TaskInstance.php │ │ │ ├── TaskList.php │ │ │ ├── TaskOptions.php │ │ │ ├── TaskPage.php │ │ │ ├── WebhookContext.php │ │ │ ├── WebhookInstance.php │ │ │ ├── WebhookList.php │ │ │ ├── WebhookOptions.php │ │ │ └── WebhookPage.php │ │ │ ├── AssistantContext.php │ │ │ ├── AssistantInstance.php │ │ │ ├── AssistantList.php │ │ │ ├── AssistantOptions.php │ │ │ └── AssistantPage.php │ ├── Chat.php │ ├── Chat │ │ ├── V1.php │ │ ├── V1 │ │ │ ├── CredentialContext.php │ │ │ ├── CredentialInstance.php │ │ │ ├── CredentialList.php │ │ │ ├── CredentialOptions.php │ │ │ ├── CredentialPage.php │ │ │ ├── Service │ │ │ │ ├── Channel │ │ │ │ │ ├── InviteContext.php │ │ │ │ │ ├── InviteInstance.php │ │ │ │ │ ├── InviteList.php │ │ │ │ │ ├── InviteOptions.php │ │ │ │ │ ├── InvitePage.php │ │ │ │ │ ├── MemberContext.php │ │ │ │ │ ├── MemberInstance.php │ │ │ │ │ ├── MemberList.php │ │ │ │ │ ├── MemberOptions.php │ │ │ │ │ ├── MemberPage.php │ │ │ │ │ ├── MessageContext.php │ │ │ │ │ ├── MessageInstance.php │ │ │ │ │ ├── MessageList.php │ │ │ │ │ ├── MessageOptions.php │ │ │ │ │ └── MessagePage.php │ │ │ │ ├── ChannelContext.php │ │ │ │ ├── ChannelInstance.php │ │ │ │ ├── ChannelList.php │ │ │ │ ├── ChannelOptions.php │ │ │ │ ├── ChannelPage.php │ │ │ │ ├── RoleContext.php │ │ │ │ ├── RoleInstance.php │ │ │ │ ├── RoleList.php │ │ │ │ ├── RolePage.php │ │ │ │ ├── User │ │ │ │ │ ├── UserChannelInstance.php │ │ │ │ │ ├── UserChannelList.php │ │ │ │ │ └── UserChannelPage.php │ │ │ │ ├── UserContext.php │ │ │ │ ├── UserInstance.php │ │ │ │ ├── UserList.php │ │ │ │ ├── UserOptions.php │ │ │ │ └── UserPage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ └── ServicePage.php │ │ ├── V2.php │ │ └── V2 │ │ │ ├── CredentialContext.php │ │ │ ├── CredentialInstance.php │ │ │ ├── CredentialList.php │ │ │ ├── CredentialOptions.php │ │ │ ├── CredentialPage.php │ │ │ ├── Service │ │ │ ├── BindingContext.php │ │ │ ├── BindingInstance.php │ │ │ ├── BindingList.php │ │ │ ├── BindingOptions.php │ │ │ ├── BindingPage.php │ │ │ ├── Channel │ │ │ │ ├── InviteContext.php │ │ │ │ ├── InviteInstance.php │ │ │ │ ├── InviteList.php │ │ │ │ ├── InviteOptions.php │ │ │ │ ├── InvitePage.php │ │ │ │ ├── MemberContext.php │ │ │ │ ├── MemberInstance.php │ │ │ │ ├── MemberList.php │ │ │ │ ├── MemberOptions.php │ │ │ │ ├── MemberPage.php │ │ │ │ ├── MessageContext.php │ │ │ │ ├── MessageInstance.php │ │ │ │ ├── MessageList.php │ │ │ │ ├── MessageOptions.php │ │ │ │ ├── MessagePage.php │ │ │ │ ├── WebhookContext.php │ │ │ │ ├── WebhookInstance.php │ │ │ │ ├── WebhookList.php │ │ │ │ ├── WebhookOptions.php │ │ │ │ └── WebhookPage.php │ │ │ ├── ChannelContext.php │ │ │ ├── ChannelInstance.php │ │ │ ├── ChannelList.php │ │ │ ├── ChannelOptions.php │ │ │ ├── ChannelPage.php │ │ │ ├── RoleContext.php │ │ │ ├── RoleInstance.php │ │ │ ├── RoleList.php │ │ │ ├── RolePage.php │ │ │ ├── User │ │ │ │ ├── UserBindingContext.php │ │ │ │ ├── UserBindingInstance.php │ │ │ │ ├── UserBindingList.php │ │ │ │ ├── UserBindingOptions.php │ │ │ │ ├── UserBindingPage.php │ │ │ │ ├── UserChannelContext.php │ │ │ │ ├── UserChannelInstance.php │ │ │ │ ├── UserChannelList.php │ │ │ │ ├── UserChannelOptions.php │ │ │ │ └── UserChannelPage.php │ │ │ ├── UserContext.php │ │ │ ├── UserInstance.php │ │ │ ├── UserList.php │ │ │ ├── UserOptions.php │ │ │ └── UserPage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ └── ServicePage.php │ ├── Client.php │ ├── Conversations.php │ ├── Conversations │ │ ├── V1.php │ │ └── V1 │ │ │ ├── Conversation │ │ │ ├── MessageContext.php │ │ │ ├── MessageInstance.php │ │ │ ├── MessageList.php │ │ │ ├── MessageOptions.php │ │ │ ├── MessagePage.php │ │ │ ├── ParticipantContext.php │ │ │ ├── ParticipantInstance.php │ │ │ ├── ParticipantList.php │ │ │ ├── ParticipantOptions.php │ │ │ ├── ParticipantPage.php │ │ │ ├── WebhookContext.php │ │ │ ├── WebhookInstance.php │ │ │ ├── WebhookList.php │ │ │ ├── WebhookOptions.php │ │ │ └── WebhookPage.php │ │ │ ├── ConversationContext.php │ │ │ ├── ConversationInstance.php │ │ │ ├── ConversationList.php │ │ │ ├── ConversationOptions.php │ │ │ ├── ConversationPage.php │ │ │ ├── WebhookContext.php │ │ │ ├── WebhookInstance.php │ │ │ ├── WebhookList.php │ │ │ ├── WebhookOptions.php │ │ │ └── WebhookPage.php │ ├── Fax.php │ ├── Fax │ │ ├── V1.php │ │ └── V1 │ │ │ ├── Fax │ │ │ ├── FaxMediaContext.php │ │ │ ├── FaxMediaInstance.php │ │ │ ├── FaxMediaList.php │ │ │ └── FaxMediaPage.php │ │ │ ├── FaxContext.php │ │ │ ├── FaxInstance.php │ │ │ ├── FaxList.php │ │ │ ├── FaxOptions.php │ │ │ └── FaxPage.php │ ├── FlexApi.php │ ├── FlexApi │ │ ├── V1.php │ │ └── V1 │ │ │ ├── ChannelContext.php │ │ │ ├── ChannelInstance.php │ │ │ ├── ChannelList.php │ │ │ ├── ChannelOptions.php │ │ │ ├── ChannelPage.php │ │ │ ├── ConfigurationContext.php │ │ │ ├── ConfigurationInstance.php │ │ │ ├── ConfigurationList.php │ │ │ ├── ConfigurationOptions.php │ │ │ ├── ConfigurationPage.php │ │ │ ├── FlexFlowContext.php │ │ │ ├── FlexFlowInstance.php │ │ │ ├── FlexFlowList.php │ │ │ ├── FlexFlowOptions.php │ │ │ ├── FlexFlowPage.php │ │ │ ├── WebChannelContext.php │ │ │ ├── WebChannelInstance.php │ │ │ ├── WebChannelList.php │ │ │ ├── WebChannelOptions.php │ │ │ └── WebChannelPage.php │ ├── Insights.php │ ├── Insights │ │ ├── V1.php │ │ └── V1 │ │ │ ├── Call │ │ │ ├── CallSummaryContext.php │ │ │ ├── CallSummaryInstance.php │ │ │ ├── CallSummaryList.php │ │ │ ├── CallSummaryOptions.php │ │ │ ├── CallSummaryPage.php │ │ │ ├── EventInstance.php │ │ │ ├── EventList.php │ │ │ ├── EventOptions.php │ │ │ ├── EventPage.php │ │ │ ├── MetricInstance.php │ │ │ ├── MetricList.php │ │ │ ├── MetricOptions.php │ │ │ └── MetricPage.php │ │ │ ├── CallContext.php │ │ │ ├── CallInstance.php │ │ │ ├── CallList.php │ │ │ └── CallPage.php │ ├── IpMessaging.php │ ├── IpMessaging │ │ ├── V1.php │ │ ├── V1 │ │ │ ├── CredentialContext.php │ │ │ ├── CredentialInstance.php │ │ │ ├── CredentialList.php │ │ │ ├── CredentialOptions.php │ │ │ ├── CredentialPage.php │ │ │ ├── Service │ │ │ │ ├── Channel │ │ │ │ │ ├── InviteContext.php │ │ │ │ │ ├── InviteInstance.php │ │ │ │ │ ├── InviteList.php │ │ │ │ │ ├── InviteOptions.php │ │ │ │ │ ├── InvitePage.php │ │ │ │ │ ├── MemberContext.php │ │ │ │ │ ├── MemberInstance.php │ │ │ │ │ ├── MemberList.php │ │ │ │ │ ├── MemberOptions.php │ │ │ │ │ ├── MemberPage.php │ │ │ │ │ ├── MessageContext.php │ │ │ │ │ ├── MessageInstance.php │ │ │ │ │ ├── MessageList.php │ │ │ │ │ ├── MessageOptions.php │ │ │ │ │ └── MessagePage.php │ │ │ │ ├── ChannelContext.php │ │ │ │ ├── ChannelInstance.php │ │ │ │ ├── ChannelList.php │ │ │ │ ├── ChannelOptions.php │ │ │ │ ├── ChannelPage.php │ │ │ │ ├── RoleContext.php │ │ │ │ ├── RoleInstance.php │ │ │ │ ├── RoleList.php │ │ │ │ ├── RolePage.php │ │ │ │ ├── User │ │ │ │ │ ├── UserChannelInstance.php │ │ │ │ │ ├── UserChannelList.php │ │ │ │ │ └── UserChannelPage.php │ │ │ │ ├── UserContext.php │ │ │ │ ├── UserInstance.php │ │ │ │ ├── UserList.php │ │ │ │ ├── UserOptions.php │ │ │ │ └── UserPage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ └── ServicePage.php │ │ ├── V2.php │ │ └── V2 │ │ │ ├── CredentialContext.php │ │ │ ├── CredentialInstance.php │ │ │ ├── CredentialList.php │ │ │ ├── CredentialOptions.php │ │ │ ├── CredentialPage.php │ │ │ ├── Service │ │ │ ├── BindingContext.php │ │ │ ├── BindingInstance.php │ │ │ ├── BindingList.php │ │ │ ├── BindingOptions.php │ │ │ ├── BindingPage.php │ │ │ ├── Channel │ │ │ │ ├── InviteContext.php │ │ │ │ ├── InviteInstance.php │ │ │ │ ├── InviteList.php │ │ │ │ ├── InviteOptions.php │ │ │ │ ├── InvitePage.php │ │ │ │ ├── MemberContext.php │ │ │ │ ├── MemberInstance.php │ │ │ │ ├── MemberList.php │ │ │ │ ├── MemberOptions.php │ │ │ │ ├── MemberPage.php │ │ │ │ ├── MessageContext.php │ │ │ │ ├── MessageInstance.php │ │ │ │ ├── MessageList.php │ │ │ │ ├── MessageOptions.php │ │ │ │ ├── MessagePage.php │ │ │ │ ├── WebhookContext.php │ │ │ │ ├── WebhookInstance.php │ │ │ │ ├── WebhookList.php │ │ │ │ ├── WebhookOptions.php │ │ │ │ └── WebhookPage.php │ │ │ ├── ChannelContext.php │ │ │ ├── ChannelInstance.php │ │ │ ├── ChannelList.php │ │ │ ├── ChannelOptions.php │ │ │ ├── ChannelPage.php │ │ │ ├── RoleContext.php │ │ │ ├── RoleInstance.php │ │ │ ├── RoleList.php │ │ │ ├── RolePage.php │ │ │ ├── User │ │ │ │ ├── UserBindingContext.php │ │ │ │ ├── UserBindingInstance.php │ │ │ │ ├── UserBindingList.php │ │ │ │ ├── UserBindingOptions.php │ │ │ │ ├── UserBindingPage.php │ │ │ │ ├── UserChannelContext.php │ │ │ │ ├── UserChannelInstance.php │ │ │ │ ├── UserChannelList.php │ │ │ │ ├── UserChannelOptions.php │ │ │ │ └── UserChannelPage.php │ │ │ ├── UserContext.php │ │ │ ├── UserInstance.php │ │ │ ├── UserList.php │ │ │ ├── UserOptions.php │ │ │ └── UserPage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ └── ServicePage.php │ ├── Lookups.php │ ├── Lookups │ │ ├── V1.php │ │ └── V1 │ │ │ ├── PhoneNumberContext.php │ │ │ ├── PhoneNumberInstance.php │ │ │ ├── PhoneNumberList.php │ │ │ ├── PhoneNumberOptions.php │ │ │ └── PhoneNumberPage.php │ ├── Messaging.php │ ├── Messaging │ │ ├── V1.php │ │ └── V1 │ │ │ ├── Service │ │ │ ├── AlphaSenderContext.php │ │ │ ├── AlphaSenderInstance.php │ │ │ ├── AlphaSenderList.php │ │ │ ├── AlphaSenderPage.php │ │ │ ├── PhoneNumberContext.php │ │ │ ├── PhoneNumberInstance.php │ │ │ ├── PhoneNumberList.php │ │ │ ├── PhoneNumberPage.php │ │ │ ├── ShortCodeContext.php │ │ │ ├── ShortCodeInstance.php │ │ │ ├── ShortCodeList.php │ │ │ └── ShortCodePage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ ├── ServicePage.php │ │ │ ├── Session │ │ │ ├── MessageContext.php │ │ │ ├── MessageInstance.php │ │ │ ├── MessageList.php │ │ │ ├── MessageOptions.php │ │ │ ├── MessagePage.php │ │ │ ├── ParticipantContext.php │ │ │ ├── ParticipantInstance.php │ │ │ ├── ParticipantList.php │ │ │ ├── ParticipantOptions.php │ │ │ ├── ParticipantPage.php │ │ │ ├── WebhookContext.php │ │ │ ├── WebhookInstance.php │ │ │ ├── WebhookList.php │ │ │ ├── WebhookOptions.php │ │ │ └── WebhookPage.php │ │ │ ├── SessionContext.php │ │ │ ├── SessionInstance.php │ │ │ ├── SessionList.php │ │ │ ├── SessionOptions.php │ │ │ ├── SessionPage.php │ │ │ ├── WebhookContext.php │ │ │ ├── WebhookInstance.php │ │ │ ├── WebhookList.php │ │ │ ├── WebhookOptions.php │ │ │ └── WebhookPage.php │ ├── Monitor.php │ ├── Monitor │ │ ├── V1.php │ │ └── V1 │ │ │ ├── AlertContext.php │ │ │ ├── AlertInstance.php │ │ │ ├── AlertList.php │ │ │ ├── AlertOptions.php │ │ │ ├── AlertPage.php │ │ │ ├── EventContext.php │ │ │ ├── EventInstance.php │ │ │ ├── EventList.php │ │ │ ├── EventOptions.php │ │ │ └── EventPage.php │ ├── Notify.php │ ├── Notify │ │ ├── V1.php │ │ └── V1 │ │ │ ├── CredentialContext.php │ │ │ ├── CredentialInstance.php │ │ │ ├── CredentialList.php │ │ │ ├── CredentialOptions.php │ │ │ ├── CredentialPage.php │ │ │ ├── Service │ │ │ ├── BindingContext.php │ │ │ ├── BindingInstance.php │ │ │ ├── BindingList.php │ │ │ ├── BindingOptions.php │ │ │ ├── BindingPage.php │ │ │ ├── NotificationInstance.php │ │ │ ├── NotificationList.php │ │ │ ├── NotificationOptions.php │ │ │ └── NotificationPage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ └── ServicePage.php │ ├── Numbers.php │ ├── Numbers │ │ ├── V2.php │ │ └── V2 │ │ │ ├── RegulatoryCompliance │ │ │ ├── Bundle │ │ │ │ ├── ItemAssignmentContext.php │ │ │ │ ├── ItemAssignmentInstance.php │ │ │ │ ├── ItemAssignmentList.php │ │ │ │ └── ItemAssignmentPage.php │ │ │ ├── BundleContext.php │ │ │ ├── BundleInstance.php │ │ │ ├── BundleList.php │ │ │ ├── BundleOptions.php │ │ │ ├── BundlePage.php │ │ │ ├── EndUserContext.php │ │ │ ├── EndUserInstance.php │ │ │ ├── EndUserList.php │ │ │ ├── EndUserOptions.php │ │ │ ├── EndUserPage.php │ │ │ ├── EndUserTypeContext.php │ │ │ ├── EndUserTypeInstance.php │ │ │ ├── EndUserTypeList.php │ │ │ ├── EndUserTypePage.php │ │ │ ├── SupportingDocumentContext.php │ │ │ ├── SupportingDocumentInstance.php │ │ │ ├── SupportingDocumentList.php │ │ │ ├── SupportingDocumentOptions.php │ │ │ ├── SupportingDocumentPage.php │ │ │ ├── SupportingDocumentTypeContext.php │ │ │ ├── SupportingDocumentTypeInstance.php │ │ │ ├── SupportingDocumentTypeList.php │ │ │ └── SupportingDocumentTypePage.php │ │ │ ├── RegulatoryComplianceInstance.php │ │ │ ├── RegulatoryComplianceList.php │ │ │ └── RegulatoryCompliancePage.php │ ├── Preview.php │ ├── Preview │ │ ├── BulkExports.php │ │ ├── BulkExports │ │ │ ├── Export │ │ │ │ ├── DayInstance.php │ │ │ │ ├── DayList.php │ │ │ │ ├── DayPage.php │ │ │ │ ├── ExportCustomJobInstance.php │ │ │ │ ├── ExportCustomJobList.php │ │ │ │ ├── ExportCustomJobOptions.php │ │ │ │ ├── ExportCustomJobPage.php │ │ │ │ ├── JobContext.php │ │ │ │ ├── JobInstance.php │ │ │ │ ├── JobList.php │ │ │ │ └── JobPage.php │ │ │ ├── ExportConfigurationContext.php │ │ │ ├── ExportConfigurationInstance.php │ │ │ ├── ExportConfigurationList.php │ │ │ ├── ExportConfigurationOptions.php │ │ │ ├── ExportConfigurationPage.php │ │ │ ├── ExportContext.php │ │ │ ├── ExportInstance.php │ │ │ ├── ExportList.php │ │ │ └── ExportPage.php │ │ ├── DeployedDevices.php │ │ ├── DeployedDevices │ │ │ ├── Fleet │ │ │ │ ├── CertificateContext.php │ │ │ │ ├── CertificateInstance.php │ │ │ │ ├── CertificateList.php │ │ │ │ ├── CertificateOptions.php │ │ │ │ ├── CertificatePage.php │ │ │ │ ├── DeploymentContext.php │ │ │ │ ├── DeploymentInstance.php │ │ │ │ ├── DeploymentList.php │ │ │ │ ├── DeploymentOptions.php │ │ │ │ ├── DeploymentPage.php │ │ │ │ ├── DeviceContext.php │ │ │ │ ├── DeviceInstance.php │ │ │ │ ├── DeviceList.php │ │ │ │ ├── DeviceOptions.php │ │ │ │ ├── DevicePage.php │ │ │ │ ├── KeyContext.php │ │ │ │ ├── KeyInstance.php │ │ │ │ ├── KeyList.php │ │ │ │ ├── KeyOptions.php │ │ │ │ └── KeyPage.php │ │ │ ├── FleetContext.php │ │ │ ├── FleetInstance.php │ │ │ ├── FleetList.php │ │ │ ├── FleetOptions.php │ │ │ └── FleetPage.php │ │ ├── HostedNumbers.php │ │ ├── HostedNumbers │ │ │ ├── AuthorizationDocument │ │ │ │ ├── DependentHostedNumberOrderInstance.php │ │ │ │ ├── DependentHostedNumberOrderList.php │ │ │ │ ├── DependentHostedNumberOrderOptions.php │ │ │ │ └── DependentHostedNumberOrderPage.php │ │ │ ├── AuthorizationDocumentContext.php │ │ │ ├── AuthorizationDocumentInstance.php │ │ │ ├── AuthorizationDocumentList.php │ │ │ ├── AuthorizationDocumentOptions.php │ │ │ ├── AuthorizationDocumentPage.php │ │ │ ├── HostedNumberOrderContext.php │ │ │ ├── HostedNumberOrderInstance.php │ │ │ ├── HostedNumberOrderList.php │ │ │ ├── HostedNumberOrderOptions.php │ │ │ └── HostedNumberOrderPage.php │ │ ├── Marketplace.php │ │ ├── Marketplace │ │ │ ├── AvailableAddOn │ │ │ │ ├── AvailableAddOnExtensionContext.php │ │ │ │ ├── AvailableAddOnExtensionInstance.php │ │ │ │ ├── AvailableAddOnExtensionList.php │ │ │ │ └── AvailableAddOnExtensionPage.php │ │ │ ├── AvailableAddOnContext.php │ │ │ ├── AvailableAddOnInstance.php │ │ │ ├── AvailableAddOnList.php │ │ │ ├── AvailableAddOnPage.php │ │ │ ├── InstalledAddOn │ │ │ │ ├── InstalledAddOnExtensionContext.php │ │ │ │ ├── InstalledAddOnExtensionInstance.php │ │ │ │ ├── InstalledAddOnExtensionList.php │ │ │ │ └── InstalledAddOnExtensionPage.php │ │ │ ├── InstalledAddOnContext.php │ │ │ ├── InstalledAddOnInstance.php │ │ │ ├── InstalledAddOnList.php │ │ │ ├── InstalledAddOnOptions.php │ │ │ └── InstalledAddOnPage.php │ │ ├── Sync.php │ │ ├── Sync │ │ │ ├── Service │ │ │ │ ├── Document │ │ │ │ │ ├── DocumentPermissionContext.php │ │ │ │ │ ├── DocumentPermissionInstance.php │ │ │ │ │ ├── DocumentPermissionList.php │ │ │ │ │ └── DocumentPermissionPage.php │ │ │ │ ├── DocumentContext.php │ │ │ │ ├── DocumentInstance.php │ │ │ │ ├── DocumentList.php │ │ │ │ ├── DocumentOptions.php │ │ │ │ ├── DocumentPage.php │ │ │ │ ├── SyncList │ │ │ │ │ ├── SyncListItemContext.php │ │ │ │ │ ├── SyncListItemInstance.php │ │ │ │ │ ├── SyncListItemList.php │ │ │ │ │ ├── SyncListItemOptions.php │ │ │ │ │ ├── SyncListItemPage.php │ │ │ │ │ ├── SyncListPermissionContext.php │ │ │ │ │ ├── SyncListPermissionInstance.php │ │ │ │ │ ├── SyncListPermissionList.php │ │ │ │ │ └── SyncListPermissionPage.php │ │ │ │ ├── SyncListContext.php │ │ │ │ ├── SyncListInstance.php │ │ │ │ ├── SyncListList.php │ │ │ │ ├── SyncListOptions.php │ │ │ │ ├── SyncListPage.php │ │ │ │ ├── SyncMap │ │ │ │ │ ├── SyncMapItemContext.php │ │ │ │ │ ├── SyncMapItemInstance.php │ │ │ │ │ ├── SyncMapItemList.php │ │ │ │ │ ├── SyncMapItemOptions.php │ │ │ │ │ ├── SyncMapItemPage.php │ │ │ │ │ ├── SyncMapPermissionContext.php │ │ │ │ │ ├── SyncMapPermissionInstance.php │ │ │ │ │ ├── SyncMapPermissionList.php │ │ │ │ │ └── SyncMapPermissionPage.php │ │ │ │ ├── SyncMapContext.php │ │ │ │ ├── SyncMapInstance.php │ │ │ │ ├── SyncMapList.php │ │ │ │ ├── SyncMapOptions.php │ │ │ │ └── SyncMapPage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ └── ServicePage.php │ │ ├── TrustedComms.php │ │ ├── TrustedComms │ │ │ ├── BrandedCallInstance.php │ │ │ ├── BrandedCallList.php │ │ │ ├── BrandedCallOptions.php │ │ │ ├── BrandedCallPage.php │ │ │ ├── Business │ │ │ │ ├── Insights │ │ │ │ │ ├── SuccessRateContext.php │ │ │ │ │ ├── SuccessRateInstance.php │ │ │ │ │ ├── SuccessRateList.php │ │ │ │ │ ├── SuccessRateOptions.php │ │ │ │ │ └── SuccessRatePage.php │ │ │ │ ├── InsightsInstance.php │ │ │ │ ├── InsightsList.php │ │ │ │ └── InsightsPage.php │ │ │ ├── BusinessContext.php │ │ │ ├── BusinessInstance.php │ │ │ ├── BusinessList.php │ │ │ ├── BusinessPage.php │ │ │ ├── CpsContext.php │ │ │ ├── CpsInstance.php │ │ │ ├── CpsList.php │ │ │ ├── CpsPage.php │ │ │ ├── CurrentCallContext.php │ │ │ ├── CurrentCallInstance.php │ │ │ ├── CurrentCallList.php │ │ │ ├── CurrentCallPage.php │ │ │ ├── DeviceInstance.php │ │ │ ├── DeviceList.php │ │ │ ├── DevicePage.php │ │ │ ├── PhoneCallInstance.php │ │ │ ├── PhoneCallList.php │ │ │ ├── PhoneCallOptions.php │ │ │ └── PhoneCallPage.php │ │ ├── Understand.php │ │ ├── Understand │ │ │ ├── Assistant │ │ │ │ ├── AssistantFallbackActionsContext.php │ │ │ │ ├── AssistantFallbackActionsInstance.php │ │ │ │ ├── AssistantFallbackActionsList.php │ │ │ │ ├── AssistantFallbackActionsOptions.php │ │ │ │ ├── AssistantFallbackActionsPage.php │ │ │ │ ├── AssistantInitiationActionsContext.php │ │ │ │ ├── AssistantInitiationActionsInstance.php │ │ │ │ ├── AssistantInitiationActionsList.php │ │ │ │ ├── AssistantInitiationActionsOptions.php │ │ │ │ ├── AssistantInitiationActionsPage.php │ │ │ │ ├── DialogueContext.php │ │ │ │ ├── DialogueInstance.php │ │ │ │ ├── DialogueList.php │ │ │ │ ├── DialoguePage.php │ │ │ │ ├── FieldType │ │ │ │ │ ├── FieldValueContext.php │ │ │ │ │ ├── FieldValueInstance.php │ │ │ │ │ ├── FieldValueList.php │ │ │ │ │ ├── FieldValueOptions.php │ │ │ │ │ └── FieldValuePage.php │ │ │ │ ├── FieldTypeContext.php │ │ │ │ ├── FieldTypeInstance.php │ │ │ │ ├── FieldTypeList.php │ │ │ │ ├── FieldTypeOptions.php │ │ │ │ ├── FieldTypePage.php │ │ │ │ ├── ModelBuildContext.php │ │ │ │ ├── ModelBuildInstance.php │ │ │ │ ├── ModelBuildList.php │ │ │ │ ├── ModelBuildOptions.php │ │ │ │ ├── ModelBuildPage.php │ │ │ │ ├── QueryContext.php │ │ │ │ ├── QueryInstance.php │ │ │ │ ├── QueryList.php │ │ │ │ ├── QueryOptions.php │ │ │ │ ├── QueryPage.php │ │ │ │ ├── StyleSheetContext.php │ │ │ │ ├── StyleSheetInstance.php │ │ │ │ ├── StyleSheetList.php │ │ │ │ ├── StyleSheetOptions.php │ │ │ │ ├── StyleSheetPage.php │ │ │ │ ├── Task │ │ │ │ │ ├── FieldContext.php │ │ │ │ │ ├── FieldInstance.php │ │ │ │ │ ├── FieldList.php │ │ │ │ │ ├── FieldPage.php │ │ │ │ │ ├── SampleContext.php │ │ │ │ │ ├── SampleInstance.php │ │ │ │ │ ├── SampleList.php │ │ │ │ │ ├── SampleOptions.php │ │ │ │ │ ├── SamplePage.php │ │ │ │ │ ├── TaskActionsContext.php │ │ │ │ │ ├── TaskActionsInstance.php │ │ │ │ │ ├── TaskActionsList.php │ │ │ │ │ ├── TaskActionsOptions.php │ │ │ │ │ ├── TaskActionsPage.php │ │ │ │ │ ├── TaskStatisticsContext.php │ │ │ │ │ ├── TaskStatisticsInstance.php │ │ │ │ │ ├── TaskStatisticsList.php │ │ │ │ │ └── TaskStatisticsPage.php │ │ │ │ ├── TaskContext.php │ │ │ │ ├── TaskInstance.php │ │ │ │ ├── TaskList.php │ │ │ │ ├── TaskOptions.php │ │ │ │ └── TaskPage.php │ │ │ ├── AssistantContext.php │ │ │ ├── AssistantInstance.php │ │ │ ├── AssistantList.php │ │ │ ├── AssistantOptions.php │ │ │ └── AssistantPage.php │ │ ├── Wireless.php │ │ └── Wireless │ │ │ ├── CommandContext.php │ │ │ ├── CommandInstance.php │ │ │ ├── CommandList.php │ │ │ ├── CommandOptions.php │ │ │ ├── CommandPage.php │ │ │ ├── RatePlanContext.php │ │ │ ├── RatePlanInstance.php │ │ │ ├── RatePlanList.php │ │ │ ├── RatePlanOptions.php │ │ │ ├── RatePlanPage.php │ │ │ ├── Sim │ │ │ ├── UsageContext.php │ │ │ ├── UsageInstance.php │ │ │ ├── UsageList.php │ │ │ ├── UsageOptions.php │ │ │ └── UsagePage.php │ │ │ ├── SimContext.php │ │ │ ├── SimInstance.php │ │ │ ├── SimList.php │ │ │ ├── SimOptions.php │ │ │ └── SimPage.php │ ├── Pricing.php │ ├── Pricing │ │ ├── V1.php │ │ ├── V1 │ │ │ ├── Messaging │ │ │ │ ├── CountryContext.php │ │ │ │ ├── CountryInstance.php │ │ │ │ ├── CountryList.php │ │ │ │ └── CountryPage.php │ │ │ ├── MessagingInstance.php │ │ │ ├── MessagingList.php │ │ │ ├── MessagingPage.php │ │ │ ├── PhoneNumber │ │ │ │ ├── CountryContext.php │ │ │ │ ├── CountryInstance.php │ │ │ │ ├── CountryList.php │ │ │ │ └── CountryPage.php │ │ │ ├── PhoneNumberInstance.php │ │ │ ├── PhoneNumberList.php │ │ │ ├── PhoneNumberPage.php │ │ │ ├── Voice │ │ │ │ ├── CountryContext.php │ │ │ │ ├── CountryInstance.php │ │ │ │ ├── CountryList.php │ │ │ │ ├── CountryPage.php │ │ │ │ ├── NumberContext.php │ │ │ │ ├── NumberInstance.php │ │ │ │ ├── NumberList.php │ │ │ │ └── NumberPage.php │ │ │ ├── VoiceInstance.php │ │ │ ├── VoiceList.php │ │ │ └── VoicePage.php │ │ ├── V2.php │ │ └── V2 │ │ │ ├── Voice │ │ │ ├── CountryContext.php │ │ │ ├── CountryInstance.php │ │ │ ├── CountryList.php │ │ │ ├── CountryPage.php │ │ │ ├── NumberContext.php │ │ │ ├── NumberInstance.php │ │ │ ├── NumberList.php │ │ │ ├── NumberOptions.php │ │ │ └── NumberPage.php │ │ │ ├── VoiceInstance.php │ │ │ ├── VoiceList.php │ │ │ └── VoicePage.php │ ├── Proxy.php │ ├── Proxy │ │ ├── V1.php │ │ └── V1 │ │ │ ├── Service │ │ │ ├── PhoneNumberContext.php │ │ │ ├── PhoneNumberInstance.php │ │ │ ├── PhoneNumberList.php │ │ │ ├── PhoneNumberOptions.php │ │ │ ├── PhoneNumberPage.php │ │ │ ├── Session │ │ │ │ ├── InteractionContext.php │ │ │ │ ├── InteractionInstance.php │ │ │ │ ├── InteractionList.php │ │ │ │ ├── InteractionPage.php │ │ │ │ ├── Participant │ │ │ │ │ ├── MessageInteractionContext.php │ │ │ │ │ ├── MessageInteractionInstance.php │ │ │ │ │ ├── MessageInteractionList.php │ │ │ │ │ ├── MessageInteractionOptions.php │ │ │ │ │ └── MessageInteractionPage.php │ │ │ │ ├── ParticipantContext.php │ │ │ │ ├── ParticipantInstance.php │ │ │ │ ├── ParticipantList.php │ │ │ │ ├── ParticipantOptions.php │ │ │ │ └── ParticipantPage.php │ │ │ ├── SessionContext.php │ │ │ ├── SessionInstance.php │ │ │ ├── SessionList.php │ │ │ ├── SessionOptions.php │ │ │ ├── SessionPage.php │ │ │ ├── ShortCodeContext.php │ │ │ ├── ShortCodeInstance.php │ │ │ ├── ShortCodeList.php │ │ │ ├── ShortCodeOptions.php │ │ │ └── ShortCodePage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ └── ServicePage.php │ ├── Serverless.php │ ├── Serverless │ │ ├── V1.php │ │ └── V1 │ │ │ ├── Service │ │ │ ├── Asset │ │ │ │ ├── AssetVersionContext.php │ │ │ │ ├── AssetVersionInstance.php │ │ │ │ ├── AssetVersionList.php │ │ │ │ └── AssetVersionPage.php │ │ │ ├── AssetContext.php │ │ │ ├── AssetInstance.php │ │ │ ├── AssetList.php │ │ │ ├── AssetPage.php │ │ │ ├── BuildContext.php │ │ │ ├── BuildInstance.php │ │ │ ├── BuildList.php │ │ │ ├── BuildOptions.php │ │ │ ├── BuildPage.php │ │ │ ├── Environment │ │ │ │ ├── DeploymentContext.php │ │ │ │ ├── DeploymentInstance.php │ │ │ │ ├── DeploymentList.php │ │ │ │ ├── DeploymentPage.php │ │ │ │ ├── LogContext.php │ │ │ │ ├── LogInstance.php │ │ │ │ ├── LogList.php │ │ │ │ ├── LogOptions.php │ │ │ │ ├── LogPage.php │ │ │ │ ├── VariableContext.php │ │ │ │ ├── VariableInstance.php │ │ │ │ ├── VariableList.php │ │ │ │ ├── VariableOptions.php │ │ │ │ └── VariablePage.php │ │ │ ├── EnvironmentContext.php │ │ │ ├── EnvironmentInstance.php │ │ │ ├── EnvironmentList.php │ │ │ ├── EnvironmentOptions.php │ │ │ ├── EnvironmentPage.php │ │ │ ├── FunctionContext.php │ │ │ ├── FunctionInstance.php │ │ │ ├── FunctionList.php │ │ │ ├── FunctionPage.php │ │ │ └── TwilioFunction │ │ │ │ ├── FunctionVersionContext.php │ │ │ │ ├── FunctionVersionInstance.php │ │ │ │ ├── FunctionVersionList.php │ │ │ │ └── FunctionVersionPage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ └── ServicePage.php │ ├── Studio.php │ ├── Studio │ │ ├── V1.php │ │ ├── V1 │ │ │ ├── Flow │ │ │ │ ├── Engagement │ │ │ │ │ ├── EngagementContextContext.php │ │ │ │ │ ├── EngagementContextInstance.php │ │ │ │ │ ├── EngagementContextList.php │ │ │ │ │ ├── EngagementContextPage.php │ │ │ │ │ ├── Step │ │ │ │ │ │ ├── StepContextContext.php │ │ │ │ │ │ ├── StepContextInstance.php │ │ │ │ │ │ ├── StepContextList.php │ │ │ │ │ │ └── StepContextPage.php │ │ │ │ │ ├── StepContext.php │ │ │ │ │ ├── StepInstance.php │ │ │ │ │ ├── StepList.php │ │ │ │ │ └── StepPage.php │ │ │ │ ├── EngagementContext.php │ │ │ │ ├── EngagementInstance.php │ │ │ │ ├── EngagementList.php │ │ │ │ ├── EngagementOptions.php │ │ │ │ ├── EngagementPage.php │ │ │ │ ├── Execution │ │ │ │ │ ├── ExecutionContextContext.php │ │ │ │ │ ├── ExecutionContextInstance.php │ │ │ │ │ ├── ExecutionContextList.php │ │ │ │ │ ├── ExecutionContextPage.php │ │ │ │ │ ├── ExecutionStep │ │ │ │ │ │ ├── ExecutionStepContextContext.php │ │ │ │ │ │ ├── ExecutionStepContextInstance.php │ │ │ │ │ │ ├── ExecutionStepContextList.php │ │ │ │ │ │ └── ExecutionStepContextPage.php │ │ │ │ │ ├── ExecutionStepContext.php │ │ │ │ │ ├── ExecutionStepInstance.php │ │ │ │ │ ├── ExecutionStepList.php │ │ │ │ │ └── ExecutionStepPage.php │ │ │ │ ├── ExecutionContext.php │ │ │ │ ├── ExecutionInstance.php │ │ │ │ ├── ExecutionList.php │ │ │ │ ├── ExecutionOptions.php │ │ │ │ └── ExecutionPage.php │ │ │ ├── FlowContext.php │ │ │ ├── FlowInstance.php │ │ │ ├── FlowList.php │ │ │ └── FlowPage.php │ │ ├── V2.php │ │ └── V2 │ │ │ ├── Flow │ │ │ ├── FlowRevisionContext.php │ │ │ ├── FlowRevisionInstance.php │ │ │ ├── FlowRevisionList.php │ │ │ └── FlowRevisionPage.php │ │ │ ├── FlowContext.php │ │ │ ├── FlowInstance.php │ │ │ ├── FlowList.php │ │ │ ├── FlowOptions.php │ │ │ ├── FlowPage.php │ │ │ ├── FlowValidateInstance.php │ │ │ ├── FlowValidateList.php │ │ │ ├── FlowValidateOptions.php │ │ │ └── FlowValidatePage.php │ ├── Sync.php │ ├── Sync │ │ ├── V1.php │ │ └── V1 │ │ │ ├── Service │ │ │ ├── Document │ │ │ │ ├── DocumentPermissionContext.php │ │ │ │ ├── DocumentPermissionInstance.php │ │ │ │ ├── DocumentPermissionList.php │ │ │ │ └── DocumentPermissionPage.php │ │ │ ├── DocumentContext.php │ │ │ ├── DocumentInstance.php │ │ │ ├── DocumentList.php │ │ │ ├── DocumentOptions.php │ │ │ ├── DocumentPage.php │ │ │ ├── SyncList │ │ │ │ ├── SyncListItemContext.php │ │ │ │ ├── SyncListItemInstance.php │ │ │ │ ├── SyncListItemList.php │ │ │ │ ├── SyncListItemOptions.php │ │ │ │ ├── SyncListItemPage.php │ │ │ │ ├── SyncListPermissionContext.php │ │ │ │ ├── SyncListPermissionInstance.php │ │ │ │ ├── SyncListPermissionList.php │ │ │ │ └── SyncListPermissionPage.php │ │ │ ├── SyncListContext.php │ │ │ ├── SyncListInstance.php │ │ │ ├── SyncListList.php │ │ │ ├── SyncListOptions.php │ │ │ ├── SyncListPage.php │ │ │ ├── SyncMap │ │ │ │ ├── SyncMapItemContext.php │ │ │ │ ├── SyncMapItemInstance.php │ │ │ │ ├── SyncMapItemList.php │ │ │ │ ├── SyncMapItemOptions.php │ │ │ │ ├── SyncMapItemPage.php │ │ │ │ ├── SyncMapPermissionContext.php │ │ │ │ ├── SyncMapPermissionInstance.php │ │ │ │ ├── SyncMapPermissionList.php │ │ │ │ └── SyncMapPermissionPage.php │ │ │ ├── SyncMapContext.php │ │ │ ├── SyncMapInstance.php │ │ │ ├── SyncMapList.php │ │ │ ├── SyncMapOptions.php │ │ │ ├── SyncMapPage.php │ │ │ ├── SyncStream │ │ │ │ ├── StreamMessageInstance.php │ │ │ │ ├── StreamMessageList.php │ │ │ │ └── StreamMessagePage.php │ │ │ ├── SyncStreamContext.php │ │ │ ├── SyncStreamInstance.php │ │ │ ├── SyncStreamList.php │ │ │ ├── SyncStreamOptions.php │ │ │ └── SyncStreamPage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ └── ServicePage.php │ ├── Taskrouter.php │ ├── Taskrouter │ │ ├── V1.php │ │ └── V1 │ │ │ ├── Workspace │ │ │ ├── ActivityContext.php │ │ │ ├── ActivityInstance.php │ │ │ ├── ActivityList.php │ │ │ ├── ActivityOptions.php │ │ │ ├── ActivityPage.php │ │ │ ├── EventContext.php │ │ │ ├── EventInstance.php │ │ │ ├── EventList.php │ │ │ ├── EventOptions.php │ │ │ ├── EventPage.php │ │ │ ├── Task │ │ │ │ ├── ReservationContext.php │ │ │ │ ├── ReservationInstance.php │ │ │ │ ├── ReservationList.php │ │ │ │ ├── ReservationOptions.php │ │ │ │ └── ReservationPage.php │ │ │ ├── TaskChannelContext.php │ │ │ ├── TaskChannelInstance.php │ │ │ ├── TaskChannelList.php │ │ │ ├── TaskChannelOptions.php │ │ │ ├── TaskChannelPage.php │ │ │ ├── TaskContext.php │ │ │ ├── TaskInstance.php │ │ │ ├── TaskList.php │ │ │ ├── TaskOptions.php │ │ │ ├── TaskPage.php │ │ │ ├── TaskQueue │ │ │ │ ├── TaskQueueCumulativeStatisticsContext.php │ │ │ │ ├── TaskQueueCumulativeStatisticsInstance.php │ │ │ │ ├── TaskQueueCumulativeStatisticsList.php │ │ │ │ ├── TaskQueueCumulativeStatisticsOptions.php │ │ │ │ ├── TaskQueueCumulativeStatisticsPage.php │ │ │ │ ├── TaskQueueRealTimeStatisticsContext.php │ │ │ │ ├── TaskQueueRealTimeStatisticsInstance.php │ │ │ │ ├── TaskQueueRealTimeStatisticsList.php │ │ │ │ ├── TaskQueueRealTimeStatisticsOptions.php │ │ │ │ ├── TaskQueueRealTimeStatisticsPage.php │ │ │ │ ├── TaskQueueStatisticsContext.php │ │ │ │ ├── TaskQueueStatisticsInstance.php │ │ │ │ ├── TaskQueueStatisticsList.php │ │ │ │ ├── TaskQueueStatisticsOptions.php │ │ │ │ ├── TaskQueueStatisticsPage.php │ │ │ │ ├── TaskQueuesStatisticsInstance.php │ │ │ │ ├── TaskQueuesStatisticsList.php │ │ │ │ ├── TaskQueuesStatisticsOptions.php │ │ │ │ └── TaskQueuesStatisticsPage.php │ │ │ ├── TaskQueueContext.php │ │ │ ├── TaskQueueInstance.php │ │ │ ├── TaskQueueList.php │ │ │ ├── TaskQueueOptions.php │ │ │ ├── TaskQueuePage.php │ │ │ ├── Worker │ │ │ │ ├── ReservationContext.php │ │ │ │ ├── ReservationInstance.php │ │ │ │ ├── ReservationList.php │ │ │ │ ├── ReservationOptions.php │ │ │ │ ├── ReservationPage.php │ │ │ │ ├── WorkerChannelContext.php │ │ │ │ ├── WorkerChannelInstance.php │ │ │ │ ├── WorkerChannelList.php │ │ │ │ ├── WorkerChannelOptions.php │ │ │ │ ├── WorkerChannelPage.php │ │ │ │ ├── WorkerStatisticsContext.php │ │ │ │ ├── WorkerStatisticsInstance.php │ │ │ │ ├── WorkerStatisticsList.php │ │ │ │ ├── WorkerStatisticsOptions.php │ │ │ │ ├── WorkerStatisticsPage.php │ │ │ │ ├── WorkersCumulativeStatisticsContext.php │ │ │ │ ├── WorkersCumulativeStatisticsInstance.php │ │ │ │ ├── WorkersCumulativeStatisticsList.php │ │ │ │ ├── WorkersCumulativeStatisticsOptions.php │ │ │ │ ├── WorkersCumulativeStatisticsPage.php │ │ │ │ ├── WorkersRealTimeStatisticsContext.php │ │ │ │ ├── WorkersRealTimeStatisticsInstance.php │ │ │ │ ├── WorkersRealTimeStatisticsList.php │ │ │ │ ├── WorkersRealTimeStatisticsOptions.php │ │ │ │ ├── WorkersRealTimeStatisticsPage.php │ │ │ │ ├── WorkersStatisticsContext.php │ │ │ │ ├── WorkersStatisticsInstance.php │ │ │ │ ├── WorkersStatisticsList.php │ │ │ │ ├── WorkersStatisticsOptions.php │ │ │ │ └── WorkersStatisticsPage.php │ │ │ ├── WorkerContext.php │ │ │ ├── WorkerInstance.php │ │ │ ├── WorkerList.php │ │ │ ├── WorkerOptions.php │ │ │ ├── WorkerPage.php │ │ │ ├── Workflow │ │ │ │ ├── WorkflowCumulativeStatisticsContext.php │ │ │ │ ├── WorkflowCumulativeStatisticsInstance.php │ │ │ │ ├── WorkflowCumulativeStatisticsList.php │ │ │ │ ├── WorkflowCumulativeStatisticsOptions.php │ │ │ │ ├── WorkflowCumulativeStatisticsPage.php │ │ │ │ ├── WorkflowRealTimeStatisticsContext.php │ │ │ │ ├── WorkflowRealTimeStatisticsInstance.php │ │ │ │ ├── WorkflowRealTimeStatisticsList.php │ │ │ │ ├── WorkflowRealTimeStatisticsOptions.php │ │ │ │ ├── WorkflowRealTimeStatisticsPage.php │ │ │ │ ├── WorkflowStatisticsContext.php │ │ │ │ ├── WorkflowStatisticsInstance.php │ │ │ │ ├── WorkflowStatisticsList.php │ │ │ │ ├── WorkflowStatisticsOptions.php │ │ │ │ └── WorkflowStatisticsPage.php │ │ │ ├── WorkflowContext.php │ │ │ ├── WorkflowInstance.php │ │ │ ├── WorkflowList.php │ │ │ ├── WorkflowOptions.php │ │ │ ├── WorkflowPage.php │ │ │ ├── WorkspaceCumulativeStatisticsContext.php │ │ │ ├── WorkspaceCumulativeStatisticsInstance.php │ │ │ ├── WorkspaceCumulativeStatisticsList.php │ │ │ ├── WorkspaceCumulativeStatisticsOptions.php │ │ │ ├── WorkspaceCumulativeStatisticsPage.php │ │ │ ├── WorkspaceRealTimeStatisticsContext.php │ │ │ ├── WorkspaceRealTimeStatisticsInstance.php │ │ │ ├── WorkspaceRealTimeStatisticsList.php │ │ │ ├── WorkspaceRealTimeStatisticsOptions.php │ │ │ ├── WorkspaceRealTimeStatisticsPage.php │ │ │ ├── WorkspaceStatisticsContext.php │ │ │ ├── WorkspaceStatisticsInstance.php │ │ │ ├── WorkspaceStatisticsList.php │ │ │ ├── WorkspaceStatisticsOptions.php │ │ │ └── WorkspaceStatisticsPage.php │ │ │ ├── WorkspaceContext.php │ │ │ ├── WorkspaceInstance.php │ │ │ ├── WorkspaceList.php │ │ │ ├── WorkspaceOptions.php │ │ │ └── WorkspacePage.php │ ├── Trunking.php │ ├── Trunking │ │ ├── V1.php │ │ └── V1 │ │ │ ├── Trunk │ │ │ ├── CredentialListContext.php │ │ │ ├── CredentialListInstance.php │ │ │ ├── CredentialListList.php │ │ │ ├── CredentialListPage.php │ │ │ ├── IpAccessControlListContext.php │ │ │ ├── IpAccessControlListInstance.php │ │ │ ├── IpAccessControlListList.php │ │ │ ├── IpAccessControlListPage.php │ │ │ ├── OriginationUrlContext.php │ │ │ ├── OriginationUrlInstance.php │ │ │ ├── OriginationUrlList.php │ │ │ ├── OriginationUrlOptions.php │ │ │ ├── OriginationUrlPage.php │ │ │ ├── PhoneNumberContext.php │ │ │ ├── PhoneNumberInstance.php │ │ │ ├── PhoneNumberList.php │ │ │ ├── PhoneNumberPage.php │ │ │ ├── TerminatingSipDomainContext.php │ │ │ ├── TerminatingSipDomainInstance.php │ │ │ ├── TerminatingSipDomainList.php │ │ │ └── TerminatingSipDomainPage.php │ │ │ ├── TrunkContext.php │ │ │ ├── TrunkInstance.php │ │ │ ├── TrunkList.php │ │ │ ├── TrunkOptions.php │ │ │ └── TrunkPage.php │ ├── Verify.php │ ├── Verify │ │ ├── V2.php │ │ └── V2 │ │ │ ├── Service │ │ │ ├── MessagingConfigurationContext.php │ │ │ ├── MessagingConfigurationInstance.php │ │ │ ├── MessagingConfigurationList.php │ │ │ ├── MessagingConfigurationPage.php │ │ │ ├── RateLimit │ │ │ │ ├── BucketContext.php │ │ │ │ ├── BucketInstance.php │ │ │ │ ├── BucketList.php │ │ │ │ ├── BucketOptions.php │ │ │ │ └── BucketPage.php │ │ │ ├── RateLimitContext.php │ │ │ ├── RateLimitInstance.php │ │ │ ├── RateLimitList.php │ │ │ ├── RateLimitOptions.php │ │ │ ├── RateLimitPage.php │ │ │ ├── VerificationCheckInstance.php │ │ │ ├── VerificationCheckList.php │ │ │ ├── VerificationCheckOptions.php │ │ │ ├── VerificationCheckPage.php │ │ │ ├── VerificationContext.php │ │ │ ├── VerificationInstance.php │ │ │ ├── VerificationList.php │ │ │ ├── VerificationOptions.php │ │ │ └── VerificationPage.php │ │ │ ├── ServiceContext.php │ │ │ ├── ServiceInstance.php │ │ │ ├── ServiceList.php │ │ │ ├── ServiceOptions.php │ │ │ └── ServicePage.php │ ├── Video.php │ ├── Video │ │ ├── V1.php │ │ └── V1 │ │ │ ├── CompositionContext.php │ │ │ ├── CompositionHookContext.php │ │ │ ├── CompositionHookInstance.php │ │ │ ├── CompositionHookList.php │ │ │ ├── CompositionHookOptions.php │ │ │ ├── CompositionHookPage.php │ │ │ ├── CompositionInstance.php │ │ │ ├── CompositionList.php │ │ │ ├── CompositionOptions.php │ │ │ ├── CompositionPage.php │ │ │ ├── CompositionSettingsContext.php │ │ │ ├── CompositionSettingsInstance.php │ │ │ ├── CompositionSettingsList.php │ │ │ ├── CompositionSettingsOptions.php │ │ │ ├── CompositionSettingsPage.php │ │ │ ├── RecordingContext.php │ │ │ ├── RecordingInstance.php │ │ │ ├── RecordingList.php │ │ │ ├── RecordingOptions.php │ │ │ ├── RecordingPage.php │ │ │ ├── RecordingSettingsContext.php │ │ │ ├── RecordingSettingsInstance.php │ │ │ ├── RecordingSettingsList.php │ │ │ ├── RecordingSettingsOptions.php │ │ │ ├── RecordingSettingsPage.php │ │ │ ├── Room │ │ │ ├── Participant │ │ │ │ ├── PublishedTrackContext.php │ │ │ │ ├── PublishedTrackInstance.php │ │ │ │ ├── PublishedTrackList.php │ │ │ │ ├── PublishedTrackPage.php │ │ │ │ ├── SubscribeRulesInstance.php │ │ │ │ ├── SubscribeRulesList.php │ │ │ │ ├── SubscribeRulesOptions.php │ │ │ │ ├── SubscribeRulesPage.php │ │ │ │ ├── SubscribedTrackContext.php │ │ │ │ ├── SubscribedTrackInstance.php │ │ │ │ ├── SubscribedTrackList.php │ │ │ │ └── SubscribedTrackPage.php │ │ │ ├── ParticipantContext.php │ │ │ ├── ParticipantInstance.php │ │ │ ├── ParticipantList.php │ │ │ ├── ParticipantOptions.php │ │ │ ├── ParticipantPage.php │ │ │ ├── RoomRecordingContext.php │ │ │ ├── RoomRecordingInstance.php │ │ │ ├── RoomRecordingList.php │ │ │ ├── RoomRecordingOptions.php │ │ │ └── RoomRecordingPage.php │ │ │ ├── RoomContext.php │ │ │ ├── RoomInstance.php │ │ │ ├── RoomList.php │ │ │ ├── RoomOptions.php │ │ │ └── RoomPage.php │ ├── Voice.php │ ├── Voice │ │ ├── V1.php │ │ └── V1 │ │ │ ├── DialingPermissions │ │ │ ├── BulkCountryUpdateInstance.php │ │ │ ├── BulkCountryUpdateList.php │ │ │ ├── BulkCountryUpdatePage.php │ │ │ ├── Country │ │ │ │ ├── HighriskSpecialPrefixInstance.php │ │ │ │ ├── HighriskSpecialPrefixList.php │ │ │ │ └── HighriskSpecialPrefixPage.php │ │ │ ├── CountryContext.php │ │ │ ├── CountryInstance.php │ │ │ ├── CountryList.php │ │ │ ├── CountryOptions.php │ │ │ ├── CountryPage.php │ │ │ ├── SettingsContext.php │ │ │ ├── SettingsInstance.php │ │ │ ├── SettingsList.php │ │ │ ├── SettingsOptions.php │ │ │ └── SettingsPage.php │ │ │ ├── DialingPermissionsInstance.php │ │ │ ├── DialingPermissionsList.php │ │ │ └── DialingPermissionsPage.php │ ├── Wireless.php │ └── Wireless │ │ ├── V1.php │ │ └── V1 │ │ ├── CommandContext.php │ │ ├── CommandInstance.php │ │ ├── CommandList.php │ │ ├── CommandOptions.php │ │ ├── CommandPage.php │ │ ├── RatePlanContext.php │ │ ├── RatePlanInstance.php │ │ ├── RatePlanList.php │ │ ├── RatePlanOptions.php │ │ ├── RatePlanPage.php │ │ ├── Sim │ │ ├── DataSessionInstance.php │ │ ├── DataSessionList.php │ │ ├── DataSessionOptions.php │ │ ├── DataSessionPage.php │ │ ├── UsageRecordInstance.php │ │ ├── UsageRecordList.php │ │ ├── UsageRecordOptions.php │ │ └── UsageRecordPage.php │ │ ├── SimContext.php │ │ ├── SimInstance.php │ │ ├── SimList.php │ │ ├── SimOptions.php │ │ ├── SimPage.php │ │ ├── UsageRecordInstance.php │ │ ├── UsageRecordList.php │ │ ├── UsageRecordOptions.php │ │ └── UsageRecordPage.php │ ├── Security │ └── RequestValidator.php │ ├── Serialize.php │ ├── Stream.php │ ├── TaskRouter │ ├── WorkflowConfiguration.php │ ├── WorkflowRule.php │ └── WorkflowRuleTarget.php │ ├── TwiML │ ├── Fax │ │ └── Receive.php │ ├── FaxResponse.php │ ├── GenericNode.php │ ├── Messaging │ │ ├── Body.php │ │ ├── Media.php │ │ ├── Message.php │ │ └── Redirect.php │ ├── MessagingResponse.php │ ├── TwiML.php │ ├── Video │ │ └── Room.php │ ├── Voice │ │ ├── Autopilot.php │ │ ├── Client.php │ │ ├── Conference.php │ │ ├── Connect.php │ │ ├── Dial.php │ │ ├── Echo.php │ │ ├── Enqueue.php │ │ ├── Gather.php │ │ ├── Hangup.php │ │ ├── Identity.php │ │ ├── Leave.php │ │ ├── Number.php │ │ ├── Parameter.php │ │ ├── Pause.php │ │ ├── Pay.php │ │ ├── Play.php │ │ ├── Prompt.php │ │ ├── Queue.php │ │ ├── Record.php │ │ ├── Redirect.php │ │ ├── Refer.php │ │ ├── ReferSip.php │ │ ├── Reject.php │ │ ├── Room.php │ │ ├── Say.php │ │ ├── Sim.php │ │ ├── Sip.php │ │ ├── Siprec.php │ │ ├── Sms.php │ │ ├── SsmlBreak.php │ │ ├── SsmlEmphasis.php │ │ ├── SsmlLang.php │ │ ├── SsmlP.php │ │ ├── SsmlPhoneme.php │ │ ├── SsmlProsody.php │ │ ├── SsmlS.php │ │ ├── SsmlSayAs.php │ │ ├── SsmlSub.php │ │ ├── SsmlW.php │ │ ├── Start.php │ │ ├── Stop.php │ │ ├── Stream.php │ │ └── Task.php │ └── VoiceResponse.php │ ├── Values.php │ ├── Version.php │ ├── VersionInfo.php │ └── autoload.php └── url-shorten.php /freemius/assets/css/admin/checkout.css: -------------------------------------------------------------------------------- 1 | @media screen and (max-width: 782px){#wpbody-content{padding-bottom:0 !important}} 2 | -------------------------------------------------------------------------------- /freemius/assets/css/admin/debug.css: -------------------------------------------------------------------------------- 1 | .fs-switch-label{font-size:20px;line-height:31px;margin:0 5px}#fs_log_book table{font-family:Consolas,Monaco,monospace;font-size:12px}#fs_log_book table th{color:#ccc}#fs_log_book table tr{background:#232525}#fs_log_book table tr.alternate{background:#2b2b2b}#fs_log_book table tr td.fs-col--logger{color:#5a7435}#fs_log_book table tr td.fs-col--type{color:#ffc861}#fs_log_book table tr td.fs-col--function{color:#a7b7b1;font-weight:bold}#fs_log_book table tr td.fs-col--message,#fs_log_book table tr td.fs-col--message a{color:#9a73ac !important}#fs_log_book table tr td.fs-col--file{color:#d07922}#fs_log_book table tr td.fs-col--timestamp{color:#6596be} 2 | -------------------------------------------------------------------------------- /freemius/assets/css/admin/gdpr-optin-notice.css: -------------------------------------------------------------------------------- 1 | .fs-notice[data-id^="gdpr_optin_actions"] .underlined{text-decoration:underline}.fs-notice[data-id^="gdpr_optin_actions"] ul .button,.fs-notice[data-id^="gdpr_optin_actions"] ul .action-description{vertical-align:middle}.fs-notice[data-id^="gdpr_optin_actions"] ul .action-description{display:inline-block;margin-left:3px} 2 | -------------------------------------------------------------------------------- /freemius/assets/css/admin/index.php: -------------------------------------------------------------------------------- 1 | 21 | -------------------------------------------------------------------------------- /freemius/templates/ajax-loader.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freemius/templates/debug/index.php: -------------------------------------------------------------------------------- 1 | get_slug(); 18 | 19 | echo fs_text_inline( 'Sorry for the inconvenience and we are here to help if you give us a chance.', 'contact-support-before-deactivation', $slug ) 20 | . sprintf(" %s", 21 | $fs->contact_url( 'technical_support' ), 22 | fs_text_inline( 'Contact Support', 'contact-support', $slug ) 23 | ); 24 | -------------------------------------------------------------------------------- /freemius/templates/forms/deactivation/index.php: -------------------------------------------------------------------------------- 1 | 18 |
19 | 20 |
-------------------------------------------------------------------------------- /freemius/templates/plugin-info/index.php: -------------------------------------------------------------------------------- 1 | =5.5.0" 16 | }, 17 | "require-dev": { 18 | "guzzlehttp/guzzle": "^6.3", 19 | "apigen/apigen": "^4.1", 20 | "phpunit/phpunit": ">=4.5" 21 | }, 22 | "suggest": { 23 | "guzzlehttp/guzzle": "An HTTP client to execute the API requests" 24 | }, 25 | "autoload": { 26 | "psr-4": { 27 | "Twilio\\": "src/Twilio/" 28 | } 29 | }, 30 | "autoload-dev": { 31 | "psr-4": { 32 | "Twilio\\Tests\\": "tests/Twilio/" 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Deserialize.php: -------------------------------------------------------------------------------- 1 | statusCode = $statusCode; 20 | parent::__construct($message, $code); 21 | } 22 | 23 | /** 24 | * Get the HTTP Status Code of the RestException 25 | * @return int HTTP Status Code 26 | */ 27 | public function getStatusCode() { 28 | return $this->statusCode; 29 | } 30 | 31 | 32 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Exceptions/TwilioException.php: -------------------------------------------------------------------------------- 1 | statusCode = $statusCode; 14 | $this->content = $content; 15 | $this->headers = $headers; 16 | } 17 | 18 | /** 19 | * @return mixed 20 | */ 21 | public function getContent() { 22 | return \json_decode($this->content, true); 23 | } 24 | 25 | /** 26 | * @return mixed 27 | */ 28 | public function getStatusCode() { 29 | return $this->statusCode; 30 | } 31 | 32 | public function getHeaders() { 33 | return $this->headers; 34 | } 35 | 36 | public function ok() { 37 | return $this->getStatusCode() < 400; 38 | } 39 | 40 | public function __toString() { 41 | return '[Response] HTTP ' . $this->getStatusCode() . ' ' . $this->content; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /twilio-php/src/Twilio/InstanceContext.php: -------------------------------------------------------------------------------- 1 | version = $version; 14 | } 15 | 16 | public function __toString() { 17 | return '[InstanceContext]'; 18 | } 19 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/InstanceResource.php: -------------------------------------------------------------------------------- 1 | version = $version; 15 | } 16 | 17 | public function toArray() { 18 | return $this->properties; 19 | } 20 | 21 | public function __toString() { 22 | return '[InstanceResource]'; 23 | } 24 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Jwt/Grants/Grant.php: -------------------------------------------------------------------------------- 1 | 10 | * @license http://creativecommons.org/licenses/MIT/ MIT 11 | */ 12 | class TaskQueueCapability extends CapabilityToken { 13 | public function __construct($accountSid, $authToken, $workspaceSid, $taskQueueSid, $overrideBaseUrl = null, $overrideBaseWSUrl = null) { 14 | parent::__construct($accountSid, $authToken, $workspaceSid, $taskQueueSid, null, $overrideBaseUrl, $overrideBaseWSUrl); 15 | } 16 | 17 | protected function setupResource() { 18 | $this->resourceUrl = $this->baseUrl . '/TaskQueues/' . $this->channelId; 19 | } 20 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Jwt/TaskRouter/WorkspaceCapability.php: -------------------------------------------------------------------------------- 1 | resourceUrl = $this->baseUrl; 14 | } 15 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/ListResource.php: -------------------------------------------------------------------------------- 1 | version = $version; 14 | } 15 | 16 | public function __toString() { 17 | return '[ListResource]'; 18 | } 19 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Options.php: -------------------------------------------------------------------------------- 1 | options); 12 | } 13 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Accounts/V1/Credential/AwsPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new AwsInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Accounts.V1.AwsPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Accounts/V1/Credential/PublicKeyPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new PublicKeyInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Accounts.V1.PublicKeyPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Accounts/V1/CredentialPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CredentialInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Accounts.V1.CredentialPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/AddressPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new AddressInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.AddressPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/ApplicationPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ApplicationInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.ApplicationPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/AuthorizedConnectAppPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new AuthorizedConnectAppInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.AuthorizedConnectAppPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/BalancePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new BalanceInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.BalancePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new FeedbackInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['accountSid'], 27 | $this->solution['callSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Api.V2010.FeedbackPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Call/FeedbackSummaryPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new FeedbackSummaryInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.FeedbackSummaryPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Call/RecordingPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RecordingInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['accountSid'], 27 | $this->solution['callSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Api.V2010.RecordingPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/CallPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CallInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.CallPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/ConferencePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ConferenceInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.ConferencePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/ConnectAppPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ConnectAppInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.ConnectAppPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/IncomingPhoneNumber/LocalPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new LocalInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.LocalPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/IncomingPhoneNumber/MobilePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new MobileInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.MobilePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/IncomingPhoneNumber/TollFreePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new TollFreeInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.TollFreePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/IncomingPhoneNumberPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new IncomingPhoneNumberInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.IncomingPhoneNumberPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/KeyPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new KeyInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.KeyPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Message/FeedbackPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new FeedbackInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['accountSid'], 27 | $this->solution['messageSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Api.V2010.FeedbackPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Message/MediaPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new MediaInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['accountSid'], 27 | $this->solution['messageSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Api.V2010.MediaPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/MessagePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new MessageInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.MessagePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/NewKeyPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new NewKeyInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.NewKeyPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/NewSigningKeyPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new NewSigningKeyInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.NewSigningKeyPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/NotificationPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new NotificationInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.NotificationPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/OutgoingCallerIdPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new OutgoingCallerIdInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.OutgoingCallerIdPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Queue/MemberPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new MemberInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['accountSid'], 27 | $this->solution['queueSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Api.V2010.MemberPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/QueuePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new QueueInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.QueuePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/RecordingPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RecordingInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.RecordingPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/ShortCodePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ShortCodeInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.ShortCodePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/SigningKeyPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new SigningKeyInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.SigningKeyPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Sip/CredentialListPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CredentialListInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.CredentialListPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Sip/DomainPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new DomainInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.DomainPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Sip/IpAccessControlListPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new IpAccessControlListInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.IpAccessControlListPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/SipPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new SipInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.SipPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/TokenPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new TokenInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.TokenPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/TranscriptionPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new TranscriptionInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.TranscriptionPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Usage/Record/AllTimePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new AllTimeInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.AllTimePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Usage/Record/DailyPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new DailyInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.DailyPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Usage/Record/LastMonthPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new LastMonthInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.LastMonthPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Usage/Record/MonthlyPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new MonthlyInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.MonthlyPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Usage/Record/ThisMonthPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ThisMonthInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.ThisMonthPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Usage/Record/TodayPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new TodayInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.TodayPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Usage/Record/YearlyPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new YearlyInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.YearlyPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Usage/Record/YesterdayPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new YesterdayInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.YesterdayPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Usage/RecordPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RecordInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.RecordPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/Usage/TriggerPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new TriggerInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.TriggerPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/UsagePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new UsageInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.UsagePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/Account/ValidationRequestPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ValidationRequestInstance($this->version, $payload, $this->solution['accountSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.ValidationRequestPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Api/V2010/AccountPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new AccountInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Api.V2010.AccountPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V1/CredentialPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CredentialInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Chat.V1.CredentialPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V1/Service/Channel/InvitePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new InviteInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['serviceSid'], 27 | $this->solution['channelSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Chat.V1.InvitePage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V1/Service/Channel/MemberPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new MemberInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['serviceSid'], 27 | $this->solution['channelSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Chat.V1.MemberPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V1/Service/Channel/MessagePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new MessageInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['serviceSid'], 27 | $this->solution['channelSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Chat.V1.MessagePage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V1/Service/ChannelPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ChannelInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Chat.V1.ChannelPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V1/Service/RolePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RoleInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Chat.V1.RolePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V1/Service/User/UserChannelPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new UserChannelInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['serviceSid'], 27 | $this->solution['userSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Chat.V1.UserChannelPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V1/Service/UserPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new UserInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Chat.V1.UserPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V1/ServicePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ServiceInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Chat.V1.ServicePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/CredentialPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CredentialInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Chat.V2.CredentialPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/Service/BindingPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new BindingInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Chat.V2.BindingPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/Service/Channel/InvitePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new InviteInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['serviceSid'], 27 | $this->solution['channelSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Chat.V2.InvitePage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/Service/Channel/MemberPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new MemberInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['serviceSid'], 27 | $this->solution['channelSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Chat.V2.MemberPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/Service/Channel/MessagePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new MessageInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['serviceSid'], 27 | $this->solution['channelSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Chat.V2.MessagePage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/Service/Channel/WebhookPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new WebhookInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['serviceSid'], 27 | $this->solution['channelSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Chat.V2.WebhookPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/Service/ChannelPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ChannelInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Chat.V2.ChannelPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/Service/RolePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RoleInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Chat.V2.RolePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/Service/User/UserBindingPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new UserBindingInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['serviceSid'], 27 | $this->solution['userSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Chat.V2.UserBindingPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/Service/User/UserChannelPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new UserChannelInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['serviceSid'], 27 | $this->solution['userSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Chat.V2.UserChannelPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/Service/UserPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new UserInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Chat.V2.UserPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Chat/V2/ServicePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ServiceInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Chat.V2.ServicePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Conversations/V1/ConversationPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new ConversationInstance($this->version, $payload); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Conversations.V1.ConversationPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Conversations/V1/WebhookPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new WebhookInstance($this->version, $payload); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Conversations.V1.WebhookPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Fax/V1/Fax/FaxMediaPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new FaxMediaInstance($this->version, $payload, $this->solution['faxSid']); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Fax.V1.FaxMediaPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Fax/V1/FaxPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new FaxInstance($this->version, $payload); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Fax.V1.FaxPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/FlexApi/V1/ChannelPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ChannelInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.FlexApi.V1.ChannelPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/FlexApi/V1/ConfigurationPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ConfigurationInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.FlexApi.V1.ConfigurationPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/FlexApi/V1/FlexFlowPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new FlexFlowInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.FlexApi.V1.FlexFlowPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/FlexApi/V1/WebChannelPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new WebChannelInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.FlexApi.V1.WebChannelPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/IpMessaging/V1/CredentialPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CredentialInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.IpMessaging.V1.CredentialPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/IpMessaging/V1/Service/ChannelPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ChannelInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.IpMessaging.V1.ChannelPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/IpMessaging/V1/Service/RolePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RoleInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.IpMessaging.V1.RolePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/IpMessaging/V1/Service/UserPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new UserInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.IpMessaging.V1.UserPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/IpMessaging/V1/ServicePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ServiceInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.IpMessaging.V1.ServicePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/IpMessaging/V2/CredentialPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CredentialInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.IpMessaging.V2.CredentialPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/IpMessaging/V2/Service/BindingPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new BindingInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.IpMessaging.V2.BindingPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/IpMessaging/V2/Service/ChannelPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ChannelInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.IpMessaging.V2.ChannelPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/IpMessaging/V2/Service/RolePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RoleInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.IpMessaging.V2.RolePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/IpMessaging/V2/Service/UserPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new UserInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.IpMessaging.V2.UserPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/IpMessaging/V2/ServicePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ServiceInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.IpMessaging.V2.ServicePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Lookups/V1/PhoneNumberPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new PhoneNumberInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Lookups.V1.PhoneNumberPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Messaging/V1/ServicePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new ServiceInstance($this->version, $payload); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Messaging.V1.ServicePage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Monitor/V1/AlertPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new AlertInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Monitor.V1.AlertPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Monitor/V1/EventPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new EventInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Monitor.V1.EventPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Notify/V1/CredentialPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new CredentialInstance($this->version, $payload); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Notify.V1.CredentialPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Notify/V1/Service/BindingPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new BindingInstance($this->version, $payload, $this->solution['serviceSid']); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Notify.V1.BindingPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Notify/V1/ServicePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new ServiceInstance($this->version, $payload); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Notify.V1.ServicePage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Numbers/V2/RegulatoryCompliance/Bundle/ItemAssignmentPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ItemAssignmentInstance($this->version, $payload, $this->solution['bundleSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Numbers.V2.ItemAssignmentPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Numbers/V2/RegulatoryCompliance/BundlePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new BundleInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Numbers.V2.BundlePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Numbers/V2/RegulatoryCompliance/EndUserPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new EndUserInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Numbers.V2.EndUserPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Numbers/V2/RegulatoryCompliance/EndUserTypePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new EndUserTypeInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Numbers.V2.EndUserTypePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Numbers/V2/RegulatoryCompliance/SupportingDocumentPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new SupportingDocumentInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Numbers.V2.SupportingDocumentPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Numbers/V2/RegulatoryCompliance/SupportingDocumentTypePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new SupportingDocumentTypeInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Numbers.V2.SupportingDocumentTypePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Numbers/V2/RegulatoryCompliancePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RegulatoryComplianceInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Numbers.V2.RegulatoryCompliancePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Pricing/V1/Messaging/CountryPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CountryInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Pricing.V1.CountryPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Pricing/V1/MessagingPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new MessagingInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Pricing.V1.MessagingPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Pricing/V1/PhoneNumber/CountryPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CountryInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Pricing.V1.CountryPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Pricing/V1/PhoneNumberPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new PhoneNumberInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Pricing.V1.PhoneNumberPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Pricing/V1/Voice/CountryPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CountryInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Pricing.V1.CountryPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Pricing/V1/Voice/NumberPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new NumberInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Pricing.V1.NumberPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Pricing/V1/VoicePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new VoiceInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Pricing.V1.VoicePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Pricing/V2/Voice/CountryPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CountryInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Pricing.V2.CountryPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Pricing/V2/Voice/NumberPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new NumberInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Pricing.V2.NumberPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Pricing/V2/VoicePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new VoiceInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Pricing.V2.VoicePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Proxy/V1/Service/SessionPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new SessionInstance($this->version, $payload, $this->solution['serviceSid']); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Proxy.V1.SessionPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Proxy/V1/Service/ShortCodePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new ShortCodeInstance($this->version, $payload, $this->solution['serviceSid']); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Proxy.V1.ShortCodePage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Proxy/V1/ServicePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new ServiceInstance($this->version, $payload); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Proxy.V1.ServicePage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Studio/V1/Flow/Engagement/StepPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new StepInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['flowSid'], 27 | $this->solution['engagementSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Studio.V1.StepPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Studio/V1/Flow/EngagementPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new EngagementInstance($this->version, $payload, $this->solution['flowSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Studio.V1.EngagementPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Studio/V1/Flow/ExecutionPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ExecutionInstance($this->version, $payload, $this->solution['flowSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Studio.V1.ExecutionPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Studio/V1/FlowPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new FlowInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Studio.V1.FlowPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Studio/V2/Flow/FlowRevisionPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new FlowRevisionInstance($this->version, $payload, $this->solution['sid']); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Studio.V2.FlowRevisionPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Studio/V2/FlowPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new FlowInstance($this->version, $payload); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Studio.V2.FlowPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Studio/V2/FlowValidatePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new FlowValidateInstance($this->version, $payload); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Studio.V2.FlowValidatePage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Sync/V1/Service/DocumentPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new DocumentInstance($this->version, $payload, $this->solution['serviceSid']); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Sync.V1.DocumentPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Sync/V1/Service/SyncListPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new SyncListInstance($this->version, $payload, $this->solution['serviceSid']); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Sync.V1.SyncListPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Sync/V1/Service/SyncMapPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new SyncMapInstance($this->version, $payload, $this->solution['serviceSid']); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Sync.V1.SyncMapPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Sync/V1/Service/SyncStreamPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new SyncStreamInstance($this->version, $payload, $this->solution['serviceSid']); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Sync.V1.SyncStreamPage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Sync/V1/ServicePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 23 | } 24 | 25 | public function buildInstance(array $payload) { 26 | return new ServiceInstance($this->version, $payload); 27 | } 28 | 29 | /** 30 | * Provide a friendly representation 31 | * 32 | * @return string Machine friendly representation 33 | */ 34 | public function __toString() { 35 | return '[Twilio.Sync.V1.ServicePage]'; 36 | } 37 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Taskrouter/V1/Workspace/ActivityPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ActivityInstance($this->version, $payload, $this->solution['workspaceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Taskrouter.V1.ActivityPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Taskrouter/V1/Workspace/EventPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new EventInstance($this->version, $payload, $this->solution['workspaceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Taskrouter.V1.EventPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Taskrouter/V1/Workspace/TaskChannelPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new TaskChannelInstance($this->version, $payload, $this->solution['workspaceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Taskrouter.V1.TaskChannelPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Taskrouter/V1/Workspace/TaskPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new TaskInstance($this->version, $payload, $this->solution['workspaceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Taskrouter.V1.TaskPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Taskrouter/V1/Workspace/TaskQueue/TaskQueuesStatisticsPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new TaskQueuesStatisticsInstance($this->version, $payload, $this->solution['workspaceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Taskrouter.V1.TaskQueuesStatisticsPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Taskrouter/V1/Workspace/TaskQueuePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new TaskQueueInstance($this->version, $payload, $this->solution['workspaceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Taskrouter.V1.TaskQueuePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Taskrouter/V1/Workspace/Worker/WorkersStatisticsPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new WorkersStatisticsInstance($this->version, $payload, $this->solution['workspaceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Taskrouter.V1.WorkersStatisticsPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Taskrouter/V1/Workspace/WorkerPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new WorkerInstance($this->version, $payload, $this->solution['workspaceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Taskrouter.V1.WorkerPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Taskrouter/V1/Workspace/WorkflowPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new WorkflowInstance($this->version, $payload, $this->solution['workspaceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Taskrouter.V1.WorkflowPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Taskrouter/V1/Workspace/WorkspaceStatisticsPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new WorkspaceStatisticsInstance($this->version, $payload, $this->solution['workspaceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Taskrouter.V1.WorkspaceStatisticsPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Taskrouter/V1/WorkspacePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new WorkspaceInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Taskrouter.V1.WorkspacePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Trunking/V1/Trunk/CredentialListPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CredentialListInstance($this->version, $payload, $this->solution['trunkSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Trunking.V1.CredentialListPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Trunking/V1/Trunk/IpAccessControlListPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new IpAccessControlListInstance($this->version, $payload, $this->solution['trunkSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Trunking.V1.IpAccessControlListPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Trunking/V1/Trunk/OriginationUrlPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new OriginationUrlInstance($this->version, $payload, $this->solution['trunkSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Trunking.V1.OriginationUrlPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Trunking/V1/Trunk/PhoneNumberPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new PhoneNumberInstance($this->version, $payload, $this->solution['trunkSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Trunking.V1.PhoneNumberPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Trunking/V1/Trunk/TerminatingSipDomainPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new TerminatingSipDomainInstance($this->version, $payload, $this->solution['trunkSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Trunking.V1.TerminatingSipDomainPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Trunking/V1/TrunkPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new TrunkInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Trunking.V1.TrunkPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Verify/V2/Service/MessagingConfigurationPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new MessagingConfigurationInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Verify.V2.MessagingConfigurationPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Verify/V2/Service/RateLimit/BucketPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new BucketInstance( 24 | $this->version, 25 | $payload, 26 | $this->solution['serviceSid'], 27 | $this->solution['rateLimitSid'] 28 | ); 29 | } 30 | 31 | /** 32 | * Provide a friendly representation 33 | * 34 | * @return string Machine friendly representation 35 | */ 36 | public function __toString() { 37 | return '[Twilio.Verify.V2.BucketPage]'; 38 | } 39 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Verify/V2/Service/RateLimitPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RateLimitInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Verify.V2.RateLimitPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Verify/V2/Service/VerificationCheckPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new VerificationCheckInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Verify.V2.VerificationCheckPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Verify/V2/Service/VerificationPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new VerificationInstance($this->version, $payload, $this->solution['serviceSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Verify.V2.VerificationPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Verify/V2/ServicePage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ServiceInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Verify.V2.ServicePage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Video/V1/RecordingPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RecordingInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Video.V1.RecordingPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Video/V1/Room/ParticipantPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new ParticipantInstance($this->version, $payload, $this->solution['roomSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Video.V1.ParticipantPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Video/V1/Room/RoomRecordingPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RoomRecordingInstance($this->version, $payload, $this->solution['roomSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Video.V1.RoomRecordingPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Video/V1/RoomPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RoomInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Video.V1.RoomPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Wireless/V1/CommandPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new CommandInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Wireless.V1.CommandPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Wireless/V1/RatePlanPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new RatePlanInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Wireless.V1.RatePlanPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Wireless/V1/Sim/DataSessionPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new DataSessionInstance($this->version, $payload, $this->solution['simSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Wireless.V1.DataSessionPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Wireless/V1/Sim/UsageRecordPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new UsageRecordInstance($this->version, $payload, $this->solution['simSid']); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Wireless.V1.UsageRecordPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Wireless/V1/SimPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new SimInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Wireless.V1.SimPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/Rest/Wireless/V1/UsageRecordPage.php: -------------------------------------------------------------------------------- 1 | solution = $solution; 20 | } 21 | 22 | public function buildInstance(array $payload) { 23 | return new UsageRecordInstance($this->version, $payload); 24 | } 25 | 26 | /** 27 | * Provide a friendly representation 28 | * 29 | * @return string Machine friendly representation 30 | */ 31 | public function __toString() { 32 | return '[Twilio.Wireless.V1.UsageRecordPage]'; 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TaskRouter/WorkflowRule.php: -------------------------------------------------------------------------------- 1 | 9 | * @license http://creativecommons.org/licenses/MIT/ MIT 10 | */ 11 | class WorkflowRule implements \JsonSerializable { 12 | public $expression; 13 | public $friendly_name; 14 | public $targets; 15 | 16 | public function __construct($expression, $targets, $friendly_name = null) 17 | { 18 | $this->expression = $expression; 19 | $this->targets = $targets; 20 | $this->friendly_name = $friendly_name; 21 | } 22 | 23 | public function jsonSerialize() { 24 | $json = array(); 25 | $json["expression"] = $this->expression; 26 | $json["targets"] = $this->targets; 27 | if($this->friendly_name != null) { 28 | $json["friendly_name"] = $this->friendly_name; 29 | } 30 | return $json; 31 | } 32 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/FaxResponse.php: -------------------------------------------------------------------------------- 1 | nest(new Fax\Receive($attributes)); 28 | } 29 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/GenericNode.php: -------------------------------------------------------------------------------- 1 | name = $name; 17 | $this->value = $value; 18 | }} 19 | -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/Messaging/Body.php: -------------------------------------------------------------------------------- 1 | setAttribute('method', $method); 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/Video/Room.php: -------------------------------------------------------------------------------- 1 | setAttribute('length', $length); 32 | } 33 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/Voice/Redirect.php: -------------------------------------------------------------------------------- 1 | setAttribute('method', $method); 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/Voice/ReferSip.php: -------------------------------------------------------------------------------- 1 | setAttribute('reason', $reason); 32 | } 33 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/Voice/Room.php: -------------------------------------------------------------------------------- 1 | setAttribute('participantIdentity', $participantIdentity); 34 | } 35 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/Voice/Sim.php: -------------------------------------------------------------------------------- 1 | setAttribute('level', $level); 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/Voice/SsmlLang.php: -------------------------------------------------------------------------------- 1 | setAttribute('xml:Lang', $xmlLang); 33 | } 34 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/Voice/SsmlP.php: -------------------------------------------------------------------------------- 1 | setAttribute('alias', $alias); 34 | } 35 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/Voice/SsmlW.php: -------------------------------------------------------------------------------- 1 | setAttribute('role', $role); 34 | } 35 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/TwiML/Voice/Stop.php: -------------------------------------------------------------------------------- 1 | nest(new Stream($attributes)); 30 | } 31 | 32 | /** 33 | * Add Siprec child. 34 | * 35 | * @param array $attributes Optional attributes 36 | * @return Siprec Child element. 37 | */ 38 | public function siprec($attributes = array()) { 39 | return $this->nest(new Siprec($attributes)); 40 | } 41 | } -------------------------------------------------------------------------------- /twilio-php/src/Twilio/VersionInfo.php: -------------------------------------------------------------------------------- 1 |