403Webshell
Server IP : 209.209.40.120  /  Your IP : 216.73.217.112
Web Server : Microsoft-IIS/10.0
System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586
User : NEWWWW$ ( 0)
PHP Version : 8.3.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/SolidCP/Enterprise Server/bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/SolidCP/Enterprise Server/bin/Twilio.Api.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Twilio.Api</name>
    </assembly>
    <members>
        <member name="T:Twilio.TwilioRestClient">
            <summary>
            REST API wrapper.
            </summary>
        </member>
        <member name="M:Twilio.TwilioClient.ExecuteAsync``1(RestSharp.IRestRequest,System.Action{``0})">
            <summary>
            Execute a manual REST request
            </summary>
            <typeparam name="T">The type of object to create and populate with the returned data.</typeparam>
            <param name="request">The RestRequest to execute (will use client credentials)</param>
            <param name="callback">The callback function to execute when the async request completes</param>
        </member>
        <member name="M:Twilio.TwilioClient.ExecuteAsync(RestSharp.IRestRequest,System.Action{RestSharp.IRestResponse})">
            <summary>
            Execute a manual REST request
            </summary>
            <param name="request">The RestRequest to execute (will use client credentials)</param>
            <param name="callback">The callback function to execute when the async request completes</param>
        </member>
        <member name="M:Twilio.TwilioClient.#ctor(System.String,System.String,System.String,System.String,System.String)">
            <summary>
            Initializes a new client with the specified credentials.
            </summary>
            <param name="accountSid">The AccountSid to authenticate with</param>
            <param name="authToken">The AuthToken to authenticate with</param>
            <param name="accountResourceSid"></param>
            <param name="apiVersion"></param>
            <param name="baseUrl"></param>
        </member>
        <member name="M:Twilio.TwilioClient.Execute``1(RestSharp.IRestRequest)">
            <summary>
            Execute a manual REST request
            </summary>
            <typeparam name="T">The type of object to create and populate with the returned data.</typeparam>
            <param name="request">The RestRequest to execute (will use client credentials)</param>
        </member>
        <member name="M:Twilio.TwilioClient.Execute(RestSharp.IRestRequest)">
            <summary>
            Execute a manual REST request
            </summary>
            <param name="request">The RestRequest to execute (will use client credentials)</param>
        </member>
        <member name="P:Twilio.TwilioClient.ApiVersion">
            <summary>
            Twilio API version to use when making requests
            </summary>
        </member>
        <member name="P:Twilio.TwilioClient.BaseUrl">
            <summary>
            Base URL of API
            </summary>
        </member>
        <member name="P:Twilio.TwilioClient.Proxy">
            <summary>
            
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetAccount(System.Action{Twilio.Account})">
            <summary>
            Retrieve the account details for the currently authenticated account
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetAccount(System.String,System.Action{Twilio.Account})">
            <summary>
            Retrieve the account details for a subaccount
            </summary>
            <param name="accountSid">The Sid of the subaccount to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListSubAccounts(System.Action{Twilio.AccountResult})">
            <summary>
            List all subaccounts created for the authenticated account
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateSubAccount(System.String,System.Action{Twilio.Account})">
            <summary>
            Creates a new subaccount under the authenticated account
            </summary>
            <param name="friendlyName">Name associated with this account for your own reference (can be empty string)</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ChangeSubAccountStatus(System.String,Twilio.AccountStatus,System.Action{Twilio.Account})">
            <summary>
            Changes the status of a subaccount. You must be authenticated as the master account to call this method on a subaccount.
            WARNING: When closing an account, Twilio will release all phone numbers assigned to it and shut it down completely. 
            You can't ever use a closed account to make and receive phone calls or send and receive SMS messages. 
            It's closed, gone, kaput. It will still appear in your accounts list, and you will still have access to historical 
            data for that subaccount, but you cannot reopen a closed account.
            /// </summary>
            <param name="subAccountSid">The subaccount to change the status on</param>
            <param name="status">The status to change the subaccount to</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateAccountName(System.String,System.Action{Twilio.Account})">
            <summary>
            Update the friendly name associated with the currently authenticated account
            </summary>
            <param name="friendlyName">Name to use when updating</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetApplication(System.String,System.Action{Twilio.Application})">
            <summary>
            Retrieve the details for an application instance. Makes a GET request to an Application Instance resource.
            </summary>
            <param name="applicationSid">The Sid of the application to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListApplications(System.Action{Twilio.ApplicationResult})">
            <summary>
            List applications on current account
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListApplications(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.ApplicationResult})">
            <summary>
            List applications on current account with filters
            </summary>
            <param name="friendlyName">Optional friendly name to match</param>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddApplication(System.String,Twilio.ApplicationOptions,System.Action{Twilio.Application})">
            <summary>
            Create a new application
            </summary>
            <param name="friendlyName">The friendly name to name the application</param>
            <param name="options">Optional parameters to use when purchasing number</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateApplication(System.String,System.String,Twilio.ApplicationOptions,System.Action{Twilio.Application})">
            <summary>
            Tries to update the application's properties, and returns the updated resource representation if successful.
            </summary>
            <param name="applicationSid">The Sid of the application to update</param>
            <param name="friendlyName">The friendly name to rename the application to (optional, null to leave as-is)</param>
            <param name="options">Which settings to update. Only properties with values set will be updated.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteApplication(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Delete this application. If this application's sid is assigned to any IncomingPhoneNumber resources as a VoiceApplicationSid or SmsApplicationSid it will be removed.
            </summary>
            <param name="applicationSid">The Sid of the number to remove</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCalls(System.Action{Twilio.CallResult})">
            <summary>
            Returns a paged list of phone calls made to and from the account.
            Sorted by DateUpdated with most-recent calls first.
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCalls(Twilio.CallListRequest,System.Action{Twilio.CallResult})">
            <summary>
            Returns a paged list of phone calls made to and from the account.
            Sorted by DateUpdated with most-recent calls first.
            </summary>
            <param name="options">List filter options. If an property is set the list will be filtered by that value.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetCall(System.String,System.Action{Twilio.Call})">
            <summary>
            Returns the single Call resource identified by {CallSid}
            </summary>
            <param name="callSid">The Sid of the Call resource to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteCall(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
             Deletes a single Call resource identified by {CallSid}.
            </summary>
            <param name="callSid">The Sid of the Call resource to delete.</param>
            <param name="callback">Method to call upon completion.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.InitiateOutboundCall(System.String,System.String,System.String,System.Action{Twilio.Call})">
            <summary>
            Initiates a new phone call.
            </summary>
            <param name="from">The phone number to use as the caller id. Format with a '+' and country code e.g., +16175551212 (E.164 format). Must be a Twilio number or a valid outgoing caller id for your account.</param>
            <param name="to">The number to call formatted with a '+' and country code e.g., +16175551212 (E.164 format). Twilio will also accept unformatted US numbers e.g., (415) 555-1212, 415-555-1212.</param>
            <param name="url">The fully qualified URL that should be consulted when the call connects. Just like when you set a URL for your inbound calls. URL should return TwiML.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.InitiateOutboundCall(System.String,System.String,System.String,System.String,System.Action{Twilio.Call})">
            <summary>
            Initiates a new phone call.
            </summary>
            <param name="from">The phone number to use as the caller id. Format with a '+' and country code e.g., +16175551212 (E.164 format). Must be a Twilio number or a valid outgoing caller id for your account.</param>
            <param name="to">The number to call formatted with a '+' and country code e.g., +16175551212 (E.164 format). Twilio will also accept unformatted US numbers e.g., (415) 555-1212, 415-555-1212.</param>
            <param name="url">The fully qualified URL that should be consulted when the call connects. Just like when you set a URL for your inbound calls. URL should return TwiML.</param>
            <param name="statusCallback">A URL that Twilio will request when the call ends to notify your app.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.InitiateOutboundCall(Twilio.CallOptions,System.Action{Twilio.Call})">
            <summary>
            Initiates a new phone call.
            </summary>
            <param name="options">Call settings. Only properties with values set will be used.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.HangupCall(System.String,Twilio.HangupStyle,System.Action{Twilio.Call})">
            <summary>
            Hangs up a call in progress.
            </summary>
            <param name="callSid">The Sid of the call to hang up.</param>
            <param name="style">'Canceled' will attempt to hangup calls that are queued or ringing but not affect calls already in progress. 'Completed' will attempt to hang up a call even if it's already in progress.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.RedirectCall(System.String,System.String,System.String,System.Action{Twilio.Call})">
            <summary>
            Redirect a call in progress to a new TwiML URL.  Makes a POST request to a Call Instance resource.
            </summary>
            <param name="callSid">The Sid of the call to redirect</param>
            <param name="redirectUrl">The URL to redirect the call to.</param>
            <param name="redirectMethod">The HTTP method to use when requesting the redirectUrl</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.RedirectCall(System.String,Twilio.CallOptions,System.Action{Twilio.Call})">
            <summary>
            Redirect a call in progress to a new TwiML URL.  Makes a POST request to a Call Instance resource.
            </summary>
            <param name="callSid">The Sid of the call to redirect</param>
            <param name="options">Call settings. Only Url, Method, FallbackUrl, FallbackMethod, StatusCallback and StatusCallbackMethod properties with values set will be used.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConferences(System.Action{Twilio.ConferenceResult})">
            <summary>
            Returns a list of conferences within an account. The list includes paging information and is sorted by DateUpdated, with most recent conferences first.
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConferences(Twilio.ConferenceListRequest,System.Action{Twilio.ConferenceResult})">
            <summary>
            Returns a list of conferences within an account. The list includes paging information and is sorted by DateUpdated, with most recent conferences first.
            </summary>
            <param name="options">List filter options. Only properties with values are included in request.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetConference(System.String,System.Action{Twilio.Conference})">
            <summary>
            Retrieve details for specific conference
            </summary>
            <param name="conferenceSid">The Sid of the conference to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConferenceParticipants(System.String,System.Nullable{System.Boolean},System.Action{Twilio.ParticipantResult})">
            <summary>
            Retrieve a list of conference participants
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="muted">Set to null to retrieve all, true to retrieve muted, false to retrieve unmuted</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConferenceParticipants(System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.ParticipantResult})">
            <summary>
            Retrieve a list of conference participants
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="muted">Set to null to retrieve all, true to retrieve muted, false to retrieve unmuted</param>
            <param name="pageNumber">Which page number to start retrieving from</param>
            <param name="count">How many participants to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetConferenceParticipant(System.String,System.String,System.Action{Twilio.Participant})">
            <summary>
            Retrieve a single conference participant by their CallSid
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="callSid">The Sid of the call instance</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.MuteConferenceParticipant(System.String,System.String,System.Action{Twilio.Participant})">
            <summary>
            Change a participant of a conference to be muted
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="callSid">The Sid of the call to mute</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UnmuteConferenceParticipant(System.String,System.String,System.Action{Twilio.Participant})">
            <summary>
            Change a participant of a conference to be unmuted
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="callSid">The Sid of the call to unmute</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.KickConferenceParticipant(System.String,System.String,System.Action{System.Boolean})">
            <summary>
            Remove a caller from a conference
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="callSid">The Sid of the call to remove</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetConnectApp(System.String,System.Action{Twilio.ConnectApp})">
            <summary>
            Retrieve the details for an ConnectApp instance. Makes a GET request to an ConnectApp Instance resource.
            </summary>
            <param name="connectAppSid">The Sid of the ConnectApp to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConnectApps(System.Action{Twilio.ConnectAppResult})">
            <summary>
            List ConnectApps on current account
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConnectApps(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.ConnectAppResult})">
            <summary>
            List ConnectApps on current account with filters
            </summary>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateConnectApp(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Action{Twilio.ConnectApp})">
            <summary>
            Tries to update the ConnectApp's properties, and returns the updated resource representation if successful.
            </summary>
            <param name="connectAppSid">The Sid of the ConnectApp to update</param>
            <param name="friendlyName">A human readable description of the Connect App, with maximum length 64 characters. (optional, null to leave as-is)</param>
            <param name="authorizeRedirectUrl">The URL the user's browser will redirect to after Twilio authenticates the user and obtains authorization for this Connect App. (optional, null to leave as-is)</param>
            <param name="deauthorizeCallbackUrl">The URL to which Twilio will send a request when a user de-authorizes this Connect App. (optional, null to leave as-is)</param>
            <param name="deauthorizeCallbackMethod">The HTTP method to be used when making a request to the DeauthorizeCallbackUrl. Either GET or POST. (optional, null to leave as-is)</param>
            <param name="permissions">A comma-separated list of permssions you will request from users of this ConnectApp. Valid permssions are get-all or post-all. (optional, null to leave as-is)</param>
            <param name="description">A more detailed human readable description of the Connect App. (optional, null to leave as-is)</param>
            <param name="companyName">The company name for this Connect App. (optional, null to leave as-is)</param>
            <param name="homepageUrl">The public URL where users can obtain more information about this Connect App. (optional, null to leave as-is)</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetFeedback(System.String,System.Action{Twilio.Feedback})">
            <summary>
            Retrieve the Feedback for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedback(System.String,System.Int32,System.Action{Twilio.Feedback})">
            <summary>
            Creates a new feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedback(System.String,System.Int32,System.String,System.Action{Twilio.Feedback})">
            <summary>
            Creates a new feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedback(System.String,System.Int32,System.Collections.Generic.List{System.String},System.Action{Twilio.Feedback})">
            <summary>
            Creates a new feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateFeedback(System.String,System.Int32,System.Action{Twilio.Feedback})">
            <summary>
            Updates the current Feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateFeedback(System.String,System.Int32,System.String,System.Action{Twilio.Feedback})">
            <summary>
            Updates the current Feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateFeedback(System.String,System.Int32,System.Collections.Generic.List{System.String},System.Action{Twilio.Feedback})">
            <summary>
            Updates the current Feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteFeedback(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a Feedback entry for a specific call
            </summary>
            <param name="callSid">The Sid of the Call to delete the Feedback entry from</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetIncomingPhoneNumber(System.String,System.Action{Twilio.IncomingPhoneNumber})">
            <summary>
            Retrieve the details for an incoming phone number. Makes a GET request to a IncomingPhoneNumber instance resource.
            </summary>
            <param name="incomingPhoneNumberSid">The Sid of the number to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingPhoneNumbers(System.Action{Twilio.IncomingPhoneNumberResult})">
            <summary>
            List all incoming phone numbers on current account. Makes a GET request to the IncomingPhoneNumber List resource.
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingPhoneNumbers(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.IncomingPhoneNumberResult})">
            <summary>
            List incoming phone numbers on current account with filters. Makes a GET request to the IncomingPhoneNumber List resource.
            </summary>
            <param name="phoneNumber">Optional phone number to match</param>
            <param name="friendlyName">Optional friendly name to match</param>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingLocalPhoneNumbers(System.Action{Twilio.IncomingPhoneNumberResult})">
            <summary>
            List all incoming local phone numbers on current account
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingLocalPhoneNumbers(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.IncomingPhoneNumberResult})">
            <summary>
            List incoming local phone numbers on current account with filters
            </summary>
            <param name="phoneNumber">Optional phone number to match</param>
            <param name="friendlyName">Optional friendly name to match</param>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingTollFreePhoneNumbers(System.Action{Twilio.IncomingPhoneNumberResult})">
            <summary>
            List all incoming toll free phone numbers on current account
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingTollFreePhoneNumbers(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.IncomingPhoneNumberResult})">
            <summary>
            List incoming toll free phone numbers on current account with filters
            </summary>
            <param name="phoneNumber">Optional phone number to match</param>
            <param name="friendlyName">Optional friendly name to match</param>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingMobilePhoneNumbers(System.Action{Twilio.IncomingPhoneNumberResult})">
            <summary>
            List all incoming mobile phone numbers on current account
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingMobilePhoneNumbers(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.IncomingPhoneNumberResult})">
            <summary>
            List incoming mobile phone numbers on current account with filters
            </summary>
            <param name="phoneNumber">Optional phone number to match</param>
            <param name="friendlyName">Optional friendly name to match</param>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddIncomingPhoneNumber(Twilio.PhoneNumberOptions,System.Action{Twilio.IncomingPhoneNumber})">
            <summary>
            Purchase/provision a phone number.
            </summary>
            <param name="options">Optional parameters to use when purchasing number</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddIncomingLocalPhoneNumber(Twilio.PhoneNumberOptions,System.Action{Twilio.IncomingPhoneNumber})">
            <summary>
            Purchase/provision a local phone number
            </summary>
            <param name="options">Optional parameters to use when purchasing number</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddIncomingTollFreePhoneNumber(Twilio.PhoneNumberOptions,System.Action{Twilio.IncomingPhoneNumber})">
            <summary>
            Purchase/provision a toll free phone number
            </summary>
            <param name="options">Optional parameters to use when purchasing number</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateIncomingPhoneNumber(System.String,Twilio.PhoneNumberOptions,System.Action{Twilio.IncomingPhoneNumber})">
            <summary>
            Update the settings of an incoming phone number.
            </summary>
            <param name="incomingPhoneNumberSid">The Sid of the phone number to update</param>
            <param name="options">Which settings to update. Only properties with values set will be updated.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.TransferIncomingPhoneNumber(System.String,System.String,System.String,System.Action{Twilio.IncomingPhoneNumber})">
            <summary>
            Transfer phone numbes between master and sub accounts
            </summary>
            <param name="incomingPhoneNumberSid">The Sid of the phone number to move</param>
            <param name="sourceAccountSid">The AccountSid of the current owning account to move the phone number from</param>
            <param name="targetAccountSid">The AccountSid of the account to move the phone number to</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteIncomingPhoneNumber(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Remove (deprovision) a phone number from the current account.
            </summary>
            <param name="incomingPhoneNumberSid">The Sid of the number to remove</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetMedia(System.String,System.Action{Twilio.Media})">
            <summary>
            Get the details for a specific Media instance.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListMedia(System.String,System.Action{Twilio.MediaResult})">
            <summary>
            Retrieve a list of Media objects with no list filters
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListMedia(System.String,Twilio.MediaListRequest,System.Action{Twilio.MediaResult})">
            <summary>
            Return a filtered list of Media objects. The list includes paging
            information.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListMessageMedia(System.String,Twilio.MediaListRequest,System.Action{Twilio.MediaResult})">
            <summary>
            List all media for a particular message
            </summary>
            <param name="messageSid">The message sid to filter on</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddMediaListOptions(Twilio.MediaListRequest,RestSharp.RestRequest)">
            <summary>
            Add the options to the request
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteMedia(System.String,System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Delete the specified media instance. Makes a DELETE request to a 
            Media Instance resource.
            </summary>
            <param name="mediaSid">The Sid of the media to delete</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetMessage(System.String,System.Action{Twilio.Message})">
            <summary>
            Retrieve the details for a specific Message instance.
            Makes a GET request to an Message Instance resource.
            </summary>
            <param name="messageSid">The Sid of the message to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteMessage(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a single Message instance
            </summary>
            <param name="messageSid">The Sid of the Message to delete</param>
            <param name="callback">Method to be called on completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListMessages(System.Action{Twilio.MessageResult})">
            <summary>
            Returns a list of Messages. 
            The list includes paging information.
            Makes a GET request to the Message List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListMessages(Twilio.MessageListRequest,System.Action{Twilio.MessageResult})">
            <summary>
            Returns a filtered list of Messages. The list includes paging information.
            Makes a GET request to the Messages List resource.
            </summary>
            <param name="options">The list filters for the request</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddMessageListOptions(Twilio.MessageListRequest,RestSharp.RestRequest)">
            <summary>
            Add the options to the request
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String,System.Action{Twilio.Message})">
            <summary>
            Send a new Message to the specified recipients.
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to.</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String,System.String,System.Action{Twilio.Message})">
            <summary>
            Send a new Message to the specified recipients.
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to.</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the MessageSid as well as MessageStatus=sent or MessageStatus=failed</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String[],System.Action{Twilio.Message})">
            <summary>
            Send a new Message to the specified recipients.
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to.</param>
            <param name="mediaUrls">An array of URLs where each member of the array points to a media file to be sent with the message.  You can include a maximum of 10 media URLs</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String,System.String[],System.Action{Twilio.Message})">
            <summary>
            Send a new Message to the specified recipients.
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String,System.String[],System.String,System.Action{Twilio.Message})">
            <summary>
            Send a new Message to the specified recipients
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the SmsSid as well as SmsStatus=sent or SmsStatus=failed</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String,System.String[],System.String,System.String,System.Action{Twilio.Message})">
            <summary>
            Send a new Message to the specified recipients
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the SmsSid as well as SmsStatus=sent or SmsStatus=failed</param>
            <param name="applicationSid"></param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String,System.String[],System.String,System.String,System.Nullable{System.Boolean},System.Action{Twilio.Message})">
            <summary>
            Send a new Message to the specified recipients
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the SmsSid as well as SmsStatus=sent or SmsStatus=failed</param>
            <param name="applicationSid"></param>
            <param name="mmsOnly">Doesn't fallback to SMS if set to true</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetNotification(System.String,System.Action{Twilio.Notification})">
            <summary>
            Retrieve the details of a specific notification
            </summary>
            <param name="notificationSid">The Sid of the notification to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListNotifications(System.Action{Twilio.NotificationResult})">
            <summary>
            Returns a list of notifications generated for an account. The list includes paging information and is sorted by DateUpdated, with most recent notifications first.
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListNotifications(System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.NotificationResult})">
            <summary>
            Returns a filtered list of notifications generated for an account. The list includes paging information and is sorted by DateUpdated, with most recent notifications first.
            </summary>
            <param name="log">Only show notifications for this log, using the integer log values: 0 is ERROR, 1 is WARNING</param>
            <param name="messageDate">Only show notifications for this date (in GMT)</param>
            <param name="pageNumber">The page number to start retrieving results from</param>
            <param name="count">How many notifications to return</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteNotification(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a notification from your account
            </summary>
            <param name="notificationSid">The Sid of the notification to delete</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetOutgoingCallerId(System.String,System.Action{Twilio.OutgoingCallerId})">
            <summary>
            Retrieve the details for an existing validated Outgoing Caller ID entry
            </summary>
            <param name="outgoingCallerIdSid">The Sid of the entry to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListOutgoingCallerIds(System.Action{Twilio.OutgoingCallerIdResult})">
            <summary>
            Returns a list of validated outgoing caller IDs. The list includes paging information.
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListOutgoingCallerIds(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.OutgoingCallerIdResult})">
            <summary>
            Returns a filtered list of validated outgoing caller IDs. The list includes paging information.
            </summary>
            <param name="phoneNumber">If present, filter the list by the value provided</param>
            <param name="friendlyName">If present, filter the list by the value provided</param>
            <param name="pageNumber">If present, start the results from the specified page</param>
            <param name="count">If present, return the specified number of results, up to 1000</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddOutgoingCallerId(System.String,System.String,System.Nullable{System.Int32},System.String,System.Action{Twilio.ValidationRequestResult})">
            <summary>
            Adds a new validated CallerID to your account. After making this request, Twilio will return to you a validation code and dial the phone number given to perform validation. The code returned must be entered via the phone before the CallerID will be added to your account.
            </summary>
            <param name="phoneNumber">The phone number to verify. Should be formatted with a '+' and country code e.g., +16175551212 (E.164 format). Twilio will also accept unformatted US numbers e.g., (415) 555-1212, 415-555-1212.</param>
            <param name="friendlyName">A human readable description for the new caller ID with maximum length 64 characters. Defaults to a nicely formatted version of the number.</param>
            <param name="callDelay">The number of seconds, between 0 and 60, to delay before initiating the validation call. Defaults to 0.</param>
            <param name="extension">Digits to dial after connecting the validation call.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddOutgoingCallerId(System.String,Twilio.OutgoingCallerIdOptions,System.Action{Twilio.ValidationRequestResult})">
            <summary>
            Adds a new validated CallerID to your account. After making this request, Twilio will return to you a validation code and dial the phone number given to perform validation. The code returned must be entered via the phone before the CallerID will be added to your account.
            </summary>
            <param name="phoneNumber">The phone number to verify. Should be formatted with a '+' and country code e.g., +16175551212 (E.164 format). Twilio will also accept unformatted US numbers e.g., (415) 555-1212, 415-555-1212.</param>
            <param name="options">Optional parameters to use when purchasing number</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateOutgoingCallerIdName(System.String,System.String,System.Action{Twilio.OutgoingCallerId})">
            <summary>
            Update the FriendlyName associated with a validated outgoing caller ID entry
            </summary>
            <param name="outgoingCallerIdSid">The Sid of the outgoing caller ID entry</param>
            <param name="friendlyName">The name to update the FriendlyName to</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteOutgoingCallerId(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Remove a validated outgoing caller ID from the current account
            </summary>
            <param name="outgoingCallerIdSid">The Sid to remove</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListQueues(System.Action{Twilio.QueueResult})">
            <summary>
            Return a list of all Queue resources
            </summary>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateQueue(System.String,System.Action{Twilio.Queue})">
            <summary>
            Creates a new Queue resource
            </summary>
            <param name="friendlyName">The name of the Queue</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateQueue(System.String,System.Int32,System.Action{Twilio.Queue})">
            <summary>
            Creates a new Queue resource
            </summary>
            <param name="friendlyName">The name of the Queue</param>
            <param name="maxSize">The maximum number of calls allowed in the queue</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetQueue(System.String,System.Action{Twilio.Queue})">
            <summary>
            Locates and returns a specific Queue resource
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateQueue(System.String,System.String,System.Int32,System.Action{Twilio.Queue})">
            <summary>
            Updates a specific Queue resource
            </summary>
            <param name="queueSid">The Sid of the Queue to update</param>
            <param name="friendlyName">The name of the Queue</param>
            <param name="maxSize">The maximum number of calls allowed in the queue</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteQueue(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a Queue resource
            </summary>
            <param name="queueSid">The Sid of the Queue to delete</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListQueueMembers(System.String,System.Action{Twilio.QueueMemberResult})">
            <summary>
            Return a List of all Calls currently in the the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetFirstQueueMember(System.String,System.Action{Twilio.QueueMember})">
            <summary>
            Returns the Call in the first position of the wait Queue for the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetQueueMember(System.String,System.String,System.Action{Twilio.QueueMember})">
            <summary>
            Locate and return a specific Call in the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to search</param>
            <param name="callSid">The Sid of the Call to locate</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DequeueFirstQueueMember(System.String,System.String,System.Action{Twilio.DequeueStatus})">
            <summary>
            Dequeues the Caller in the first wait position for the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <param name="url">A Url containing TwiML intructions to execute when the call is dequeued</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DequeueFirstQueueMember(System.String,System.String,System.String,System.Action{Twilio.DequeueStatus})">
            <summary>
            Dequeues the Caller in the first wait position for the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <param name="url">A Url containing TwiML intructions to execute when the call is dequeued</param>
            <param name="method">The method to use to request the Url</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DequeueQueueMember(System.String,System.String,System.String,System.Action{Twilio.DequeueStatus})">
            <summary>
            Dequeues a specific Caller in the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <param name="callSid">The Sid of the Caller to dequeue</param>
            <param name="url">A Url containing TwiML intructions to execute when the call is dequeued</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DequeueQueueMember(System.String,System.String,System.String,System.String,System.Action{Twilio.DequeueStatus})">
            <summary>
            Dequeues a specific Caller in the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <param name="callSid">The Sid of the Caller to dequeue</param>
            <param name="url">A Url containing TwiML intructions to execute when the call is dequeued</param>
            <param name="method">The method to use to request the Url</param>
            <param name="callback">Method to call upon successful completion</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListRecordings(System.Action{Twilio.RecordingResult})">
            <summary>
            Returns a list of Recordings, each representing a recording generated during the course of a phone call. The list includes paging information.
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListRecordings(System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.RecordingResult})">
            <summary>
            Returns a filtered list of Recordings, each representing a recording generated during the course of a phone call. The list includes paging information.
            </summary>
            <param name="callSid">(Optional) The CallSid to retrieve recordings for</param>
            <param name="dateCreated">(Optional) The date the recording was created (GMT)</param>
            <param name="pageNumber">The page to start retrieving results from</param>
            <param name="count">How many results to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetRecording(System.String,System.Action{Twilio.Recording})">
            <summary>
            Retrieve the details for the specified recording instance
            </summary>
            <param name="recordingSid">The Sid of the recording to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteRecording(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Delete the specified recording instance
            </summary>
            <param name="recordingSid">The Sid of the recording to delete</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetRecordingText(System.String,System.Action{System.String})">
            <summary>
            Retrieves the transcription text for the specified recording, if it was transcribed
            </summary>
            <param name="recordingSid">The Sid of the recording to retreive the transcription for</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetSandbox(System.Action{Twilio.Sandbox})">
            <summary>
            Returns the Sandbox resource associated with the account identified by {YourAccountSid}. Twilio accounts upgraded prior to February 2010 may not have a Sandbox resource, and in this case you will receive a 404 (Not Found) response.
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateSandbox(System.String,System.String,System.String,System.String,System.Action{Twilio.Sandbox})">
            <summary>
            Update the TwiML voice and SMS URLs associated with the sandbox number
            </summary>
            <param name="voiceUrl">The URL to use for incoming calls to your sandbox number.</param>
            <param name="voiceMethod">The HTTP method to use for incoming calls to your sandbox number.</param>
            <param name="smsUrl">The URL to use for incoming SMS text messages sent to your sandbox number.</param>
            <param name="smsMethod">The HTTP method to use for incoming text messages sent to your sandbox number.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetDomain(System.String,System.Action{Twilio.Domain})">
            <summary>
            Locates and returns a specific SIP Domain resource
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListDomains(System.Action{Twilio.DomainResult})">
            <summary>
            Return a list of all SIP Domain resources
            </summary>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListDomains(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.DomainResult})">
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateDomain(System.String,System.Action{Twilio.Domain})">
            <summary>
            Creates a new SIP Domain resource
            </summary>
            <param name="domainName">The name of the SIP Domain to create.  You must pick a unique domain name that ends in ".sip.twilio.com"</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateDomain(Twilio.DomainOptions,System.Action{Twilio.Domain})">
            <summary>
            Creates a new SIP Domain resource
            </summary>
            <param name="options">Optional parameters to use when creating a new SIP domain.  DomainName is required and you must pick a unique domain name that ends in ".sip.twilio.com"</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateDomain(System.String,Twilio.DomainOptions,System.Action{Twilio.Domain})">
            <summary>
            Updates a specific SIP Domain resource
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to update</param>
            <param name="options">Optional parameters for a SIP domain</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteDomain(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a specific SIP Domain resource
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetIpAccessControlListMapping(System.String,System.String,System.Action{Twilio.IpAccessControlListMapping})">
            <summary>
            Gets a specific IpAccessControlList mapping for a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the mapped SIP Domain</param>
            <param name="ipAccessControlListMappingSid">The Sid of the mapped IpAccessControlList</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAccessControlListMappings(System.String,System.Action{Twilio.IpAccessControlListMappingResult})">
            <summary>
            Lists all IpAccessControlLists mapped to a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to list mappings for</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAccessControlListMappings(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.IpAccessControlListMappingResult})">
            <summary>
            Lists all IpAccessControlLists mapped to a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to list mappings for</param>
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateIpAccessControlListMapping(System.String,System.String,System.Action{Twilio.IpAccessControlListMapping})">
            <summary>
            Maps an IpAccessControlList to a specific SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to map to</param>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList to map to</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteIpAccessControlListMapping(System.String,System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a IpAccessControlListMapping from a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain</param>
            <param name="ipAccessControlListMappingSid">The Sid of the IpAccessControlListMapping to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetCredentialListMapping(System.String,System.String,System.Action{Twilio.CredentialListMapping})">
            <summary>
            Gets a specific CredentialList mapping for a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the mapped SIP Domain</param>
            <param name="credentialListMappingSid">The Sid of the mapped CredentialList</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentialListMappings(System.String,System.Action{Twilio.CredentialListMappingResult})">
            <summary>
            Lists all CredentialLists mapped to a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to list mappings for</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentialListMappings(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.CredentialListMappingResult})">
            <summary>
            Lists all IpAccessControlLists mapped to a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to list mappings for</param>
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateCredentialListMapping(System.String,System.String,System.Action{Twilio.IpAccessControlListMapping})">
            <summary>
            Maps a CredentialList to a specific SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to map to</param>
            <param name="credentialListSid">The Sid of the CredentialList to map to</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteCredentialListMapping(System.String,System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a CredentialListMapping from a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain</param>
            <param name="credentialListMappingSid">The Sid of the CredentialListMapping to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetIpAccessControlList(System.String,System.Action{Twilio.IpAccessControlList})">
            <summary>
            Gets a specific IpAccessControlList resource
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList resource</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAccessControlLists(System.Action{Twilio.IpAccessControlListResult})">
            <summary>
            Lists all IpAccessControlLists for this account
            </summary>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAccessControlLists(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.IpAccessControlListResult})">
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateIpAccessControlList(System.String,System.Action{Twilio.IpAccessControlList})">
            <summary>
            Creates a new IpAccessControlList resource
            </summary>
            <param name="friendlyName">The name of the IpAccessControlList to create.</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateIpAccessControlList(System.String,System.String,System.Action{Twilio.IpAccessControlList})">
            <summary>
            Updates a specific IpAccessControlList resource
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList to update</param>
            <param name="friendlyName">The name of the IpAccessControlList</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteIpAccessControlList(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a specific IpAccessControlList resource
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList Domain to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetIpAddress(System.String,System.String,System.Action{Twilio.IpAddress})">
            <summary>
            Locates and returns a specific IpAddress resource located in an IpAccessControlList
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList</param>
            <param name="ipAddressSid">The Sid of the IpAddress to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAddresses(System.String,System.Action{Twilio.IpAddressResult})">
            <summary>
            Return a lists all IpAddresses associated with an IpAccessControlList
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAddresses(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.IpAddressResult})">
            <summary>
            Return a lists all IpAddresses associated with an IpAccessControlList
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList</param>
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateIpAddress(System.String,System.String,System.String,System.Action{Twilio.IpAddress})">
            <summary>
            Creates a new IpAddress resource
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControList to add the IpAddress to</param>
            <param name="friendlyName">The name of the IpAddress to create.</param>
            <param name="ipAddress">The address value of the IpAddress</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateIpAddress(System.String,System.String,System.String,System.String,System.Action{Twilio.IpAddress})">
            <summary>
            Updates a specific IpAddress resource
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList</param>
            <param name="ipAddressSid">The Sid of the IpAddress to update</param>
            <param name="friendlyName">The name of the IpAddress</param>
            <param name="ipAddress">The address value of the IpAddress</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteIpAddress(System.String,System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a specific IpAddress resource
            </summary>
            <param name="domainSid">The Sid of the IpAddress to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetCredentialList(System.String,System.Action{Twilio.CredentialList})">
            <summary>
            Locates and returns a specific CredentialList resource
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentialLists(System.Action{Twilio.CredentialListResult})">
            <summary>
            Return a list all CredentialsList resources
            </summary>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentialLists(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.CredentialListResult})">
            <summary>
            Return a list all CredentialsList resources
            </summary>
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateCredentialList(System.String,System.Action{Twilio.CredentialList})">
            <summary>
            Creates a new CredentialList resource
            </summary>
            <param name="friendlyName">The name of the CredentialList to create.</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateCredentialList(System.String,System.String,System.Action{Twilio.CredentialList})">
            <summary>
            Updates a specific CredentialList resource
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList</param>
            <param name="friendlyName">The name of the CredentialList</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteCredentialList(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a specific CredentialList resource
            </summary>
            <param name="domainSid">The Sid of the CredentialList to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetCredential(System.String,System.String,System.Action{Twilio.Credential})">
            <summary>
            Locates and returns a specific Credential in a CredentialList resource
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList</param>
            <param name="credentialSid">The Sid of the Credential to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentials(System.String,System.Action{Twilio.CredentialResult})">
            <summary>
            List all Credentials for a CredentialList
            </summary>
            <param name="credentialListSid"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentials(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.CredentialResult})">
            <summary>
            List all Credentials for a CredentialList
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList</param>
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateCredential(System.String,System.String,System.String,System.Action{Twilio.Credential})">
            <summary>
            Create a new Credential resource in a CredentialList
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList to add the new Credential to</param>
            <param name="username">The Credential Username</param>
            <param name="password">The Credential Password</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateCredential(System.String,System.String,System.String,System.String,System.Action{Twilio.Credential})">
            <summary>
            Updates a specific Credential resource
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList that contains the Credential</param>
            <param name="credentialSid">The Sid of the Credential to update</param>
            <param name="username"></param>
            <param name="password"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteCredential(System.String,System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a Credential from a CredentialList
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList to delete from</param>
            <param name="credentialSid">The Sid of the Credential to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetSmsMessage(System.String,System.Action{Twilio.SMSMessage})">
            <summary>
            Retrieve the details for a specific SMS message instance
            </summary>
            <param name="smsMessageSid">The Sid of the message to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListSmsMessages(System.Action{Twilio.SmsMessageResult})">
            <summary>
            Returns a list of SMS messages. The list includes paging information and is sorted by DateSent, with most recent messages first.
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListSmsMessages(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.SmsMessageResult})">
            <summary>
            Returns a filtered list of SMS messages. The list includes paging information and is sorted by DateSent, with most recent messages first.
            </summary>
            <param name="to">(Optional) The phone number of the message recipient</param>
            <param name="from">(Optional) The phone number of the message sender</param>
            <param name="dateSent">(Optional) The date the message was sent (GMT)</param>
            <param name="pageNumber">(Optional) The page to start retrieving results from</param>
            <param name="count">(Optional) The number of results to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendSmsMessage(System.String,System.String,System.String,System.Action{Twilio.SMSMessage})">
            <summary>
            Send a new SMS message to the specified recipients
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendSmsMessage(System.String,System.String,System.String,System.String,System.Action{Twilio.SMSMessage})">
            <summary>
            Send a new SMS message to the specified recipients
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the SmsSid as well as SmsStatus=sent or SmsStatus=failed</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendSmsMessage(System.String,System.String,System.String,System.String,System.String,System.Action{Twilio.SMSMessage})">
            <summary>
            Send a new SMS message to the specified recipients
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the SmsSid as well as SmsStatus=sent or SmsStatus=failed</param>
            <param name="callback">Method to call upon successful completion</param>
            <param name="applicationSid">Twilio will POST SmsSid as well as SmsStatus=sent or SmsStatus=failed to the URL in the SmsStatusCallback property of this Application. If the StatusCallback parameter above is also passed, the Application's SmsStatusCallback parameter will take precedence.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetShortCode(System.String,System.Action{Twilio.SMSShortCode})">
            <summary>
            Retrieve the details for a specific ShortCode instance.
            Makes a GET request to a ShortCode Instance resource.
            </summary>
            <param name="shortCodeSid">The Sid of the ShortCode resource to return</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateShortCode(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Action{Twilio.SMSShortCode})">
            <summary>
            Tries to update the shortcode's properties, and returns the updated resource representation if successful.
            Makes a POST request to the ShortCode instance resource.
            </summary>
            <param name="shortCodeSid">The Sid of the ShortCode instance to update</param>
            <param name="friendlyName">A human readable description of the short code, with maximum length 64 characters.</param>
            <param name="apiVersion">SMSs to this short code will start a new TwiML session with this API version.</param>
            <param name="smsUrl">The URL that Twilio should request when somebody sends an SMS to the short code.</param>
            <param name="smsMethod">The HTTP method that should be used to request the SmsUrl. Either GET or POST.</param>
            <param name="smsFallbackUrl">A URL that Twilio will request if an error occurs requesting or executing the TwiML at the SmsUrl.</param>
            <param name="smsFallbackMethod">The HTTP method that should be used to request the SmsFallbackUrl. Either GET or POST.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListShortCodes(System.String,System.String,System.Action{Twilio.SmsShortCodeResult})">
            <summary>
            Returns a list of ShortCode resource representations, each representing a short code within your account.
            </summary>
            <param name="shortCode">Only show the ShortCode resources that match this pattern. You can specify partial numbers and use '*' as a wildcard for any digit.</param>
            <param name="friendlyName">Only show the ShortCode resources with friendly names that exactly match this name.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListTranscriptions(System.Action{Twilio.TranscriptionResult})">
            <summary>
            Returns a set of Transcriptions that includes paging information, sorted by 'DateUpdated', with most recent transcripts first.
            </summary>
            <param name="callback">The method to call upon the completion of the request</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListTranscriptions(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.TranscriptionResult})">
            <summary>
            Returns a paged set of Transcriptions that includes paging information, sorted by 'DateUpdated', with most recent transcripts first.
            </summary>
            <param name="pageNumber">The page to start retrieving results from</param>
            <param name="count">The number of results to retrieve</param>
            <param name="callback">The method to call upon the completion of the request</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListTranscriptions(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.TranscriptionResult})">
            <summary>
            Returns a set of Transcriptions for a specific recording that includes paging information, sorted by 'DateUpdated', with most recent transcripts first.
            </summary>
            <param name="recordingSid">The Sid of the recording to retrieve transcriptions for</param>
            <param name="pageNumber">The page to start retrieving results from</param>
            <param name="count">The number of results to retrieve</param>
            <param name="callback">Method to call upon completion of request</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetTranscription(System.String,System.Action{Twilio.Transcription})">
            <summary>
            Retrieve the details of a single transcription
            </summary>
            <param name="transcriptionSid">The Sid of the transcription to retrieve</param>
            <param name="callback">Method to call upon completion of request</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetTranscriptionText(System.String,System.Action{System.String})">
            <summary>
            Retrieve the text of a single transcription
            </summary>
            <param name="transcriptionSid">The Sid of the transcription to retrieve</param>
            <param name="callback">Method to call upon completion of the request</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage(System.Action{Twilio.UsageResult})">
            <summary>
            Returns a list of all usage resources
            </summary>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage(System.String,System.Action{Twilio.UsageResult})">
            <summary>
            Returns a list of usage resources for a specific usage category
            </summary>
            <param name="category">The category used to filter the usage data</param>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage(System.String,System.String,System.Action{Twilio.UsageResult})">
            <summary>
            Returns a list of usage resources for a specific category, where the data grouped using a specific interval
            </summary>
            <param name="category">The category used to filter the usage data</param>
            <param name="interval">The time interval used to group the usage data</param>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Action{Twilio.UsageResult})">
            <summary>
            Returns a list of usage resources for a specific category, within a specific date range
            </summary>
            <param name="category">The category used to filter the usage data</param>
            <param name="startDate">The start date of the filter range</param>
            <param name="endDate">The end date of the filter range</param>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Action{Twilio.UsageResult})">
            <summary>
            Returns a list of usage resources for a specific category, within a specific date range, grouped by a specific time interval
            </summary>
            <param name="category">The category used to filter the usage data</param>
            <param name="interval">The time interval used to group the usage data</param>
            <param name="startDate">The start date of the filter range</param>
            <param name="endDate">The end date of the filter range</param>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.UsageResult})">
            <summary>
            Returns a list of usage resources for a specific category, within a specific date range, grouped by a specific time interval
            </summary>
            <param name="category">The category used to filter the usage data</param>
            <param name="interval">The time interval used to group the usage data</param>
            <param name="startDate">The start date of the filter range</param>
            <param name="endDate">The end date of the filter range</param>
            <param name="pageNumber">(Optional) The page to start retrieving results from</param>
            <param name="count">(Optional) The number of results to retrieve</param>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsageTriggers(System.Action{Twilio.UsageTriggerResult})">
            <summary>
            Returns a list of usage triggers
            </summary>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsageTriggers(System.String,System.String,System.String,System.Action{Twilio.UsageTriggerResult})">
            <summary>
            Returns a list of usage triggers
            </summary>
            <param name="recurring">A string defining the recurrance interval for this trigger</param>
            <param name="usageCategory">The usage category this trigger watches</param>
            <param name="triggerBy">The value at which the trigger will fire</param>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetUsageTrigger(System.String,System.Action{Twilio.UsageTrigger})">
            <summary>
            Locates and returns a specific Usage Trigger resource
            </summary>
            <param name="usageTriggerSid">The Sid of the Usage Trigger to locate</param>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateUsageTrigger(System.String,System.String,System.String,System.Action{Twilio.UsageTrigger})">
            <summary>
            Creates a new Usage Trigger resource
            </summary>
            <param name="usageCategory">The usage category to trigger on</param>
            <param name="triggerValue">The the value to trigger on</param>
            <param name="callbackUrl">The URL to call once a trigger value has been met</param>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateUsageTrigger(Twilio.UsageTriggerOptions,System.Action{Twilio.UsageTrigger})">
            <summary>
            Creates a new Usage Trigger resource
            </summary>
            <param name="options">A UsageTriggerOption object that defines the different trigger options</param>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateUsageTrigger(System.String,System.String,System.String,System.String,System.Action{Twilio.UsageTrigger})">
            <summary>
            Updates a specific UsageTrigger resource
            </summary>
            <param name="usageTriggerSid">The Sid of the UsageTrigger to update</param>
            <param name="friendlyName">The friendly name of the trigger</param>
            <param name="callbackUrl">The URL to call once a trigger value has been met</param>
            <param name="callbackMethod">The HTTP method used when requesting the callback URL</param>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteUsageTrigger(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a UsageTrigger resource
            </summary>
            <param name="usageTriggerSid">The Sid of the UsageTrigger to delete</param>
            <param name="callback"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetAccount">
            <summary>
            Retrieve the account details for the currently authenticated account. Makes a GET request to an Account Instance resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetAccount(System.String)">
            <summary>
            Retrieve the account details for a subaccount. Makes a GET request to an Account Instance resource.
            </summary>
            <param name="accountSid">The Sid of the subaccount to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListSubAccounts">
            <summary>
            List all subaccounts created for the authenticated account. Makes a GET request to the Account List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListSubAccounts(System.String)">
            <summary>
            List all subaccounts created for the authenticated account. Makes a GET request to the Account List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListSubAccounts(System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            List all subaccounts created for the authenticated account. Makes a GET request to the Account List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListSubAccounts(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            List subaccounts that match the provided FriendlyName for the authenticated account. Makes a GET request to the Account List resource.
            </summary>
            <param name="friendlyName">Name associated with this account</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateSubAccount(System.String)">
            <summary>
            Creates a new subaccount under the authenticated account. Makes a POST request to the Account List resource.
            </summary>
            <param name="friendlyName">Name associated with this account for your own reference (can be empty string)</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ChangeSubAccountStatus(System.String,Twilio.AccountStatus)">
            <summary>
            Changes the status of a subaccount. You must be authenticated as the master account to call this method on a subaccount.
            WARNING: When closing an account, Twilio will release all phone numbers assigned to it and shut it down completely. 
            You can't ever use a closed account to make and receive phone calls or send and receive SMS messages. 
            It's closed, gone, kaput. It will still appear in your accounts list, and you will still have access to historical 
            data for that subaccount, but you cannot reopen a closed account.
            </summary>
            <param name="subAccountSid">The subaccount to change the status on</param>
            <param name="status">The status to change the subaccount to</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateAccountName(System.String)">
            <summary>
            Update the friendly name associated with the currently authenticated account. Makes a POST request to an Account Instance resource.
            </summary>
            <param name="friendlyName">Name to use when updating</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetAddress(System.String,System.Action{Twilio.Address})">
            <summary>
            Retrieve the details for an address instance. Makes a GET request to an Address Instance resource.
            </summary>
            <param name="addressSid">The Sid of the application to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAddresses(System.Action{Twilio.AddressResult})">
            <summary>
            List addresses on the current account.
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAddresses(Twilio.AddressListRequest,System.Action{Twilio.AddressResult})">
            <summary>
            List addresses on the current account, with filters.
            </summary>
            <param name="options">Filters to pass into the list request</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListDependentPhoneNumbers(System.String,System.Action{Twilio.DependentPhoneNumberResult})">
            <summary>
            List incoming phone numbers on the current account that depend on the specified Address.
            </summary>
            <param name="addressSid">Sid of the address to retrieve numbers for</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddAddress(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Action{Twilio.Address})">
            <summary>
            Create a new Address.
            </summary>
            <param name="friendlyName">Friendly name (optional)</param>
            <param name="customerName">Customer name.</param>
            <param name="street">Street.</param>
            <param name="city">City.</param>
            <param name="region">Region.</param>
            <param name="postalCode">Postal code.</param>
            <param name="isoCountry">Iso country.</param>
            <param name="callback">Method to call upon successful completion.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateAddress(System.String,Twilio.AddressOptions,System.Action{Twilio.Address})">
            <summary>
            Update an address on the current account.
            </summary>
            <param name="addressSid">Sid of the address to update</param>
            <param name="options">Attributes to update. Only properties with a value set will be updated.</param>
            <param name="callback">Method to call upon successful completion.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteAddress(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Delete an address from the current account.
            </summary>
            <param name="addressSid">Sid of the address to delete</param>
            <param name="callback">Method to call upon completion; should accept a DeleteStatus object indicating whether the request succeeded.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetAddress(System.String)">
            <summary>
            Retrieve the details for an address instance. Makes a GET request to an Address Instance resource.
            </summary>
            <param name="addressSid">The Sid of the address to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAddresses">
            <summary>
            List Addresses on the current account.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAddresses(Twilio.AddressListRequest)">
            <summary>
            List Addresses on the current account, with filters.
            </summary>
            <param name="options">Filters to be applied to the request.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListDependentPhoneNumbers(System.String)">
            <summary>
            List the current account's incoming phone numbers that depend on a specific address.
            </summary>
            <param name="addressSid">Sid of the address to retrieve dependent phone numbers for.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddAddress(System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
            <summary>
            Create a new Address.
            </summary>
            <returns>The address.</returns>
            <param name="friendlyName">Friendly name (optional)</param>
            <param name="customerName">Customer name</param>
            <param name="street">Number and street of the address</param>
            <param name="city">City name for the address</param>
            <param name="region">The state or region</param>
            <param name="postalCode">Postal code</param>
            <param name="isoCountry">ISO 3166-1 2-letter country code</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateAddress(System.String,Twilio.AddressOptions)">
            <summary>
            Update an Address. All attributes of the address except for the IsoCountry can be updated.
            </summary>
            <returns>Updated Address object.</returns>
            <param name="addressSid">The sid of the Address to update.</param>
            <param name="options">Which properties to update. Only properties with values set will be updated.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteAddress(System.String)">
            <summary>
            Delete an Address.
            </summary>
            <returns>A DeleteStatus object indicating whether the request succeeded.</returns>
            <param name="addressSid">The sid of the Address to be deleted.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetApplication(System.String)">
            <summary>
            Retrieve the details for an application instance. Makes a GET request to an Application Instance resource.
            </summary>
            <param name="applicationSid">The Sid of the application to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListApplications">
            <summary>
            List applications on current account
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListApplications(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            List applications on current account with filters
            </summary>
            <param name="friendlyName">Optional friendly name to match</param>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddApplication(System.String,Twilio.ApplicationOptions)">
            <summary>
            Create a new application
            </summary>
            <param name="friendlyName">The friendly name to name the application</param>
            <param name="options">Optional parameters to use when purchasing number</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateApplication(System.String,System.String,Twilio.ApplicationOptions)">
            <summary>
            Tries to update the application's properties, and returns the updated resource representation if successful.
            </summary>
            <param name="applicationSid">The Sid of the application to update</param>
            <param name="friendlyName">The friendly name to rename the application to (optional, null to leave as-is)</param>
            <param name="options">Which settings to update. Only properties with values set will be updated.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteApplication(System.String)">
            <summary>
            Delete this application. If this application's sid is assigned to any IncomingPhoneNumber resources as a VoiceApplicationSid or SmsApplicationSid it will be removed.
            </summary>
            <param name="applicationSid">The Sid of the number to remove</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetAuthorizedConnectApp(System.String,System.Action{Twilio.AuthorizedConnectApp})">
            <summary>
            Retrieve the details for an AuthorizedConnectApp instance. Makes a GET request to an AuthorizedConnectApp Instance resource.
            </summary>
            <param name="authorizedConnectAppSid">The Sid of the AuthorizedConnectApp to retrieve</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAuthorizedConnectApps(System.Action{Twilio.AuthorizedConnectAppResult})">
            <summary>
            List AuthorizedConnectApps on current account
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAuthorizedConnectApps(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Action{Twilio.AuthorizedConnectAppResult})">
            <summary>
            List AuthorizedConnectApps on current account with filters
            </summary>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetAuthorizedConnectApp(System.String)">
            <summary>
            Retrieve the details for an AuthorizedConnectApp instance. Makes a GET request to an AuthorizedConnectApp Instance resource.
            </summary>
            <param name="authorizedConnectAppSid">The Sid of the AuthorizedConnectApp to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAuthorizedConnectApps">
            <summary>
            List AuthorizedConnectApps on current account
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAuthorizedConnectApps(System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            List AuthorizedConnectApps on current account with filters
            </summary>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAvailableLocalPhoneNumbers(System.String,Twilio.AvailablePhoneNumberListRequest)">
            <summary>
            Search available local phone numbers. Makes a GET request to the AvailablePhoneNumber List resource.
            </summary>
            <param name="isoCountryCode">Two-character ISO country code (US or CA)</param>
            <param name="options">Search filter options. Only properties with values set will be used.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAvailableTollFreePhoneNumbers(System.String)">
            <summary>
            Search available toll-free phone numbers.  Makes a GET request to the AvailablePhoneNumber List resource.
            </summary>
            <param name="isoCountryCode">Two-character ISO country code (US or CA)</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAvailableTollFreePhoneNumbers(System.String,System.String)">
            <summary>
            Search available toll-free phone numbers.  Makes a GET request to the AvailablePhoneNumber List resource.
            </summary>
            <param name="isoCountryCode">Two-character ISO country code (US or CA)</param>
            <param name="contains">Value to use when filtering search. Accepts numbers or characters.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAvailableTollFreePhoneNumbers(System.String,Twilio.AvailablePhoneNumberListRequest)">
            <summary>
            Search available toll-free phone numbers.  Makes a GET request to the AvailablePhoneNumber List resource.
            </summary>
            <param name="isoCountryCode">Two-character ISO country code (US or CA)</param>
            <param name="contains">Value to use when filtering search. Accepts numbers or characters.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAvailableMobilePhoneNumbers(System.String,Twilio.AvailablePhoneNumberListRequest)">
            <summary>
            Search available mobile phone numbers.  Makes a GET request to the AvailablePhoneNumber List resource.
            </summary>
            <param name="isoCountryCode">Two-character ISO country code (US or CA)</param>
            <param name="options">Search filter options. Only properties with values set will be used.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAvailableLocalPhoneNumbers(System.String,Twilio.AvailablePhoneNumberListRequest,System.Action{Twilio.AvailablePhoneNumberResult})">
            <summary>
            Search available local phone numbers
            </summary>
            <param name="isoCountryCode">Two-character ISO country code (US or CA)</param>
            <param name="options">Search filter options. Only properties with values set will be used.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAvailableTollFreePhoneNumbers(System.String,System.Action{Twilio.AvailablePhoneNumberResult})">
            <summary>
            Search available toll-free phone numbers
            </summary>
            <param name="isoCountryCode">Two-character ISO country code (US or CA)</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAvailableTollFreePhoneNumbers(System.String,System.String,System.Action{Twilio.AvailablePhoneNumberResult})">
            <summary>
            Search available toll-free phone numbers
            </summary>
            <param name="isoCountryCode">Two-character ISO country code (US or CA)</param>
            <param name="contains">Value to use when filtering search. Accepts numbers or characters.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAvailableTollFreePhoneNumbers(System.String,Twilio.AvailablePhoneNumberListRequest,System.Action{Twilio.AvailablePhoneNumberResult})">
            <summary>
            Search available toll-free phone numbers
            </summary>
            <param name="isoCountryCode">Two-character ISO country code (US or CA)</param>
            <param name="contains">Value to use when filtering search. Accepts numbers or characters.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListAvailableMobilePhoneNumbers(System.String,Twilio.AvailablePhoneNumberListRequest,System.Action{Twilio.AvailablePhoneNumberResult})">
            <summary>
            Search available mobile phone numbers.  Makes a GET request to the AvailablePhoneNumber List resource.
            </summary>
            <param name="isoCountryCode">Two-character ISO country code (US or CA)</param>
            <param name="options">Search filter options. Only properties with values set will be used.</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCalls">
            <summary>
            Returns a paged list of phone calls made to and from the account.
            Makes a GET request to the Calls List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCalls(Twilio.CallListRequest)">
            <summary>
            Returns a paged list of phone calls made to and from the account.
            Makes a GET request to the Calls List resource.
            </summary>
            <param name="options">List filter options. If an property is set the list will be filtered by that value.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetCall(System.String)">
            <summary>
            Returns the single Call resource identified by {CallSid}
             Makes a GET request to a Call Instance resource.
            </summary>
            <param name="callSid">The Sid of the Call resource to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteCall(System.String)">
            <summary>
            Deletes the single Call resource identified by {callSid}.
            </summary>
            <param name="callSid">The Sid of the Call resource to delete.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.InitiateOutboundCall(System.String,System.String,System.String)">
            <summary>
            Initiates a new phone call. Makes a POST request to the Calls List resource.
            </summary>
            <param name="from">The phone number to use as the caller id. Format with a '+' and country code e.g., +16175551212 (E.164 format). Must be a Twilio number or a valid outgoing caller id for your account.</param>
            <param name="to">The number to call formatted with a '+' and country code e.g., +16175551212 (E.164 format). Twilio will also accept unformatted US numbers e.g., (415) 555-1212, 415-555-1212.</param>
            <param name="url">The fully qualified URL that should be consulted when the call connects. Just like when you set a URL for your inbound calls. URL should return TwiML.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.InitiateOutboundCall(System.String,System.String,System.String,System.String)">
            <summary>
            Initiates a new phone call. Makes a POST request to the Calls List resource.
            </summary>
            <param name="from">The phone number to use as the caller id. Format with a '+' and country code e.g., +16175551212 (E.164 format). Must be a Twilio number or a valid outgoing caller id for your account.</param>
            <param name="to">The number to call formatted with a '+' and country code e.g., +16175551212 (E.164 format). Twilio will also accept unformatted US numbers e.g., (415) 555-1212, 415-555-1212.</param>
            <param name="url">The fully qualified URL that should be consulted when the call connects. Just like when you set a URL for your inbound calls. URL should return TwiML.</param>
            <param name="statusCallback">A URL that Twilio will request when the call ends to notify your app.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.InitiateOutboundCall(Twilio.CallOptions)">
            <summary>
            Initiates a new phone call. Makes a POST request to the Calls List resource.
            </summary>
            <param name="options">Call settings. Only properties with values set will be used.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.HangupCall(System.String,Twilio.HangupStyle)">
            <summary>
            Hangs up a call in progress. Makes a POST request to a Call Instance resource.
            </summary>
            <param name="callSid">The Sid of the call to hang up.</param>
            <param name="style">'Canceled' will attempt to hangup calls that are queued or ringing but not affect calls already in progress. 'Completed' will attempt to hang up a call even if it's already in progress.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.RedirectCall(System.String,System.String,System.String)">
            <summary>
            Redirect a call in progress to a new TwiML URL.  Makes a POST request to a Call Instance resource.
            </summary>
            <param name="callSid">The Sid of the call to redirect</param>
            <param name="redirectUrl">The URL to redirect the call to.</param>
            <param name="redirectMethod">The HTTP method to use when requesting the redirectUrl</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.RedirectCall(System.String,Twilio.CallOptions)">
            <summary>
            Redirect a call in progress to a new TwiML URL.  Makes a POST request to a Call Instance resource.
            </summary>
            <param name="callSid">The Sid of the call to redirect</param>
            <param name="options">Call settings. Only Url, Method, FallbackUrl, FallbackMethod, StatusCallback and StatusCallbackMethod properties with values set will be used.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConferences">
            <summary>
            Returns a list of conferences within an account. 
            The list includes paging information.
            Makes a GET request to the Conferences List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConferences(Twilio.ConferenceListRequest)">
            <summary>
            Returns a list of conferences within an account. 
            The list includes paging information.
            Makes a POST request to the Conferences List resource.
            </summary>
            <param name="options">List filter options. Only properties with values are included in request.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetConference(System.String)">
            <summary>
            Retrieve details for specific conference. Makes a GET request to a Conference Instance resource.
            </summary>
            <param name="conferenceSid">The Sid of the conference to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConferenceParticipants(System.String,System.Nullable{System.Boolean})">
            <summary>
            Retrieve a list of conference participants. Makes a GET request to a Conference Participants List resource.
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="muted">Set to null to retrieve all, true to retrieve muted, false to retrieve unmuted</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConferenceParticipants(System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Retrieve a list of conference participants. Makes a GET request to a Conference Participants List resource.
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="muted">Set to null to retrieve all, true to retrieve muted, false to retrieve unmuted</param>
            <param name="pageNumber">Which page number to start retrieving from</param>
            <param name="count">How many participants to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetConferenceParticipant(System.String,System.String)">
            <summary>
            Retrieve a single conference participant by their CallSid. Makes a GET request to a Conference Participant Instance resource.
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="callSid">The Sid of the call instance</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.MuteConferenceParticipant(System.String,System.String)">
            <summary>
            Change a participant of a conference to be muted. Makes a GET request to a Conference Participant Instance resource.
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="callSid">The Sid of the call to mute</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UnmuteConferenceParticipant(System.String,System.String)">
            <summary>
            Change a participant of a conference to be unmuted. Makes a GET request to a Conference Participant Instance resource.
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="callSid">The Sid of the call to unmute</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.KickConferenceParticipant(System.String,System.String)">
            <summary>
            Remove a caller from a conference. Makes a DELETE request to a Conference Participant Instance resource.
            </summary>
            <param name="conferenceSid">The Sid of the conference</param>
            <param name="callSid">The Sid of the call to remove</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.#ctor(System.String,System.String)">
            <summary>
            Initializes a new client with the specified credentials.
            </summary>
            <param name="accountSid">The AccountSid to authenticate with</param>
            <param name="authToken">The AuthToken to authenticate with</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.#ctor(System.String,System.String,System.String)">
            <summary>
            Initializes a new client with the specified credentials.
            </summary>
            <param name="accountSid">The AccountSid to authenticate with</param>
            <param name="authToken">The AuthToken to authenticate with</param>
            <param name="accountResourceSid"></param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetConnectApp(System.String)">
            <summary>
            Retrieve the details for an ConnectApp instance. Makes a GET request to an ConnectApp Instance resource.
            </summary>
            <param name="connectAppSid">The Sid of the ConnectApp to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConnectApps">
            <summary>
            List ConnectApps on current account
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListConnectApps(System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            List ConnectApps on current account with filters
            </summary>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateConnectApp(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
            <summary>
            Tries to update the ConnectApp's properties, and returns the updated resource representation if successful.
            </summary>
            <param name="connectAppSid">The Sid of the ConnectApp to update</param>
            <param name="friendlyName">A human readable description of the Connect App, with maximum length 64 characters. (optional, null to leave as-is)</param>
            <param name="authorizeRedirectUrl">The URL the user's browser will redirect to after Twilio authenticates the user and obtains authorization for this Connect App. (optional, null to leave as-is)</param>
            <param name="deauthorizeCallbackUrl">The URL to which Twilio will send a request when a user de-authorizes this Connect App. (optional, null to leave as-is)</param>
            <param name="deauthorizeCallbackMethod">The HTTP method to be used when making a request to the DeauthorizeCallbackUrl. Either GET or POST. (optional, null to leave as-is)</param>
            <param name="permissions">A comma-separated list of permssions you will request from users of this ConnectApp. Valid permssions are get-all or post-all. (optional, null to leave as-is)</param>
            <param name="description">A more detailed human readable description of the Connect App. (optional, null to leave as-is)</param>
            <param name="companyName">The company name for this Connect App. (optional, null to leave as-is)</param>
            <param name="homepageUrl">The public URL where users can obtain more information about this Connect App. (optional, null to leave as-is)</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetFeedback(System.String)">
            <summary>
            Retrieve the Feedback for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedback(System.String,System.Int32)">
            <summary>
            Creates a new feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedback(System.String,System.Int32,System.String)">
            <summary>
            Creates a new feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedback(System.String,System.Int32,System.Collections.Generic.List{System.String})">
            <summary>
            Creates a new feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateFeedback(System.String,System.Int32)">
            <summary>
            Updates the current Feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateFeedback(System.String,System.Int32,System.String)">
            <summary>
            Updates the current Feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateFeedback(System.String,System.Int32,System.Collections.Generic.List{System.String})">
            <summary>
            Updates the current Feedback entry for a specific CallSid.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteFeedback(System.String)">
            <summary>
            Deletes a Feedback entry for a specific call
            </summary>
            <param name="callSid">The Sid of the Call to delete the Feedback entry from</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedbackSummary(System.DateTime,System.DateTime,System.Action{Twilio.FeedbackSummary})">
            <summary>
            Creates a feedback summary.
            </summary>
            <param name="startDate">Start date.</param>
            <param name="endDate">End date.</param>
            <param name="callback">Asynchronous callback.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedbackSummary(System.DateTime,System.DateTime,System.Boolean,System.Action{Twilio.FeedbackSummary})">
            <summary>
            Creates a feedback summary.
            </summary>
            <param name="startDate">Start date.</param>
            <param name="endDate">End date.</param>
            <param name="includeSubaccounts">If set to <c>true</c> include subaccounts.</param>
            <param name="callback">Asynchronous callback.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedbackSummary(System.DateTime,System.DateTime,System.Boolean,System.String,System.String,System.Action{Twilio.FeedbackSummary})">
            <summary>
            Creates a feedback summary.
            </summary>
            <param name="startDate">Start date.</param>
            <param name="endDate">End date.</param>
            <param name="includeSubaccounts">If set to <c>true</c> include subaccounts.</param>
            <param name="statusCallback">Status callback.</param>
            <param name="statusCallbackMethod">Status callback method.</param>
            <param name="callback">Asynchronous callback.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteFeedbackSummary(System.String,System.Action{Twilio.DeleteStatus})">
            <summary>
            Deletes a feedback summary.
            </summary>
            <param name="feedbackSummarySid">Feedback summary sid.</param>
            <param name="callback">Asynchronous callback.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetFeedbackSummary(System.String,System.Action{Twilio.FeedbackSummary})">
            <summary>
            Gets a feedback summary.
            </summary>
            <param name="feedbackSummarySid">Feedback summary sid.</param>
            <param name="callback">Asynchronous callback.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedbackSummary(System.DateTime,System.DateTime)">
            <summary>
            Creates a feedback summary.
            </summary>
            <returns>A feedback summary.</returns>
            <param name="startDate">Start date.</param>
            <param name="endDate">End date.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedbackSummary(System.DateTime,System.DateTime,System.Boolean)">
            <summary>
            Creates a feedback summary.
            </summary>
            <returns>A feedback summary.</returns>
            <param name="startDate">Start date.</param>
            <param name="endDate">End date.</param>
            <param name="includeSubaccounts">If set to <c>true</c> include subaccounts.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateFeedbackSummary(System.DateTime,System.DateTime,System.Boolean,System.String,System.String)">
            <summary>
            Creates a feedback summary.
            </summary>
            <returns>A feedback summary.</returns>
            <param name="startDate">Start date.</param>
            <param name="endDate">End date.</param>
            <param name="includeSubaccounts">If set to <c>true</c> include subaccounts.</param>
            <param name="statusCallback">Status callback URL.</param>
            <param name="statusCallbackMethod">Status callback URL method. Either GET or POST.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteFeedbackSummary(System.String)">
            <summary>
            Deletes a feedback summary.
            </summary>
            <returns>Deletion status.</returns>
            <param name="feedbackSummarySid">Feedback summary sid.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetFeedbackSummary(System.String)">
            <summary>
            Gets a feedback summary.
            </summary>
            <returns>A feedback summary.</returns>
            <param name="feedbackSummarySid">Feedback summary sid.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetIncomingPhoneNumber(System.String)">
            <summary>
            Retrieve the details for an incoming phone number
            </summary>
            <param name="incomingPhoneNumberSid">The Sid of the number to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingPhoneNumbers">
            <summary>
            List all incoming phone numbers on current account
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingPhoneNumbers(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            List incoming phone numbers on current account with filters
            </summary>
            <param name="phoneNumber">Optional phone number to match</param>
            <param name="friendlyName">Optional friendly name to match</param>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingLocalPhoneNumbers">
            <summary>
            List all incoming local phone numbers on current account
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingLocalPhoneNumbers(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            List incoming local phone numbers on current account with filters
            </summary>
            <param name="phoneNumber">Optional phone number to match</param>
            <param name="friendlyName">Optional friendly name to match</param>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingTollFreePhoneNumbers">
            <summary>
            List all incoming toll free phone numbers on current account
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingTollFreePhoneNumbers(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            List incoming toll free phone numbers on current account with filters
            </summary>
            <param name="phoneNumber">Optional phone number to match</param>
            <param name="friendlyName">Optional friendly name to match</param>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingMobilePhoneNumbers">
            <summary>
            List all incoming mobile phone numbers on current account
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIncomingMobilePhoneNumbers(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            List incoming mobile phone numbers on current account with filters
            </summary>
            <param name="phoneNumber">Optional phone number to match</param>
            <param name="friendlyName">Optional friendly name to match</param>
            <param name="pageNumber">Page number to start retrieving results from</param>
            <param name="count">How many results to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddIncomingPhoneNumber(Twilio.PhoneNumberOptions)">
            <summary>
            Purchase/provision a phone number
            </summary>
            <param name="options">Optional parameters to use when purchasing number</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddIncomingLocalPhoneNumber(Twilio.PhoneNumberOptions)">
            <summary>
            Purchase/provision a local phone number
            </summary>
            <param name="options">Optional parameters to use when purchasing number</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddIncomingTollFreePhoneNumber(Twilio.PhoneNumberOptions)">
            <summary>
            Purchase/provision a toll free phone number
            </summary>
            <param name="options">Optional parameters to use when purchasing number</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateIncomingPhoneNumber(System.String,Twilio.PhoneNumberOptions)">
            <summary>
            Update the settings of an incoming phone number
            </summary>
            <param name="incomingPhoneNumberSid">The Sid of the phone number to update</param>
            <param name="options">Which settings to update. Only properties with values set will be updated.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.TransferIncomingPhoneNumber(System.String,System.String,System.String)">
            <summary>
            Transfer phone numbes between master and sub accounts
            </summary>
            <param name="incomingPhoneNumberSid">The Sid of the phone number to move</param>
            <param name="sourceAccountSid">The AccountSid of the current owning account to move the phone number from</param>
            <param name="targetAccountSid">The AccountSid of the account to move the phone number to</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteIncomingPhoneNumber(System.String)">
            <summary>
            Remove (deprovision) a phone number from the current account
            </summary>
            <param name="incomingPhoneNumberSid">The Sid of the number to remove</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetMedia(System.String,System.String)">
            <summary>
            Get the details for a specific Media instance.
            </summary>
            <param name="mediaSid">The Sid of the media resource</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListMedia(System.String)">
            <summary>
            Retrieve a list of Media objects with no list filters
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListMedia(System.String,Twilio.MediaListRequest)">
            <summary>
            Return a filtered list of Media objects. The list includes paging
            information.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListMessageMedia(System.String,Twilio.MediaListRequest)">
            <summary>
            List all media for a particular message
            </summary>
            <param name="messageSid">The message sid to filter on</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteMedia(System.String,System.String)">
            <summary>
            Delete the specified media instance. Makes a DELETE request to a 
            Media Instance resource.
            </summary>
            <param name="mediaSid">The Sid of the media to delete</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetMessage(System.String)">
            <summary>
            Retrieve the details for a specific Message instance.
            Makes a GET request to an Message Instance resource.
            </summary>
            <param name="messageSid">The Sid of the message to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteMessage(System.String)">
            <summary>
            Deletes the single Message resource specified by messageSid.
            </summary>
            <param name="messageSid">The Sid of the message to delete</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListMessages">
            <summary>
            Returns a list of Messages.
            The list includes paging information.
            Makes a GET request to the Message List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListMessages(Twilio.MessageListRequest)">
            <summary>
            Returns a filtered list of Messages. The list includes paging information.
            Makes a GET request to the Messages List resource.
            </summary>
            <param name="options">The list filters for the request</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String)">
            <summary>
            Send a new Message to the specified recipients.
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to.</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String,System.String)">
            <summary>
            Send a new Message to the specified recipients.
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to.</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the MessageSid as well as MessageStatus=sent or MessageStatus=failed</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String[])">
            <summary>
            Send a new Message to the specified recipients.
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to.</param>
            <param name="mediaUrls">An array of URLs where each member of the array points to a media file to be sent with the message.  You can include a maximum of 10 media URLs</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String,System.String[])">
            <summary>
            Send a new Message to the specified recipients.
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to.</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="mediaUrls">An array of URLs where each member of the array points to a media file to be sent with the message.  You can include a maximum of 10 media URLs</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String,System.String[],System.String)">
            <summary>
            Send a new Message to the specified recipients
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="mediaUrls">An array of URLs where each member of the array points to a media file to be sent with the message.  You can include a maximum of 10 media URLs</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the MessageSid as well as MessageStatus=sent or MessageStatus=failed</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String,System.String[],System.String,System.String)">
            <summary>
            Send a new Message to the specified recipients
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="mediaUrls">An array of URLs where each member of the array points to a media file to be sent with the message.  You can include a maximum of 10 media URLs</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the MessageSid as well as MessageStatus=sent or MessageStatus=failed</param>
            <param name="applicationSid"></param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendMessage(System.String,System.String,System.String,System.String[],System.String,System.String,System.Nullable{System.Boolean})">
            <summary>
            Send a new Message to the specified recipients
            Makes a POST request to the Messages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="mediaUrls">An array of URLs where each member of the array points to a media file to be sent with the message.  You can include a maximum of 10 media URLs</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the MessageSid as well as MessageStatus=sent or MessageStatus=failed</param>
            <param name="applicationSid"></param>
            <param name="mmsOnly">Doesn't fallback to SMS if set to true</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetNotification(System.String)">
            <summary>
            Retrieve the details of a specific notification. Makes a GET request to a Notification Instance resource.
            </summary>
            <param name="notificationSid">The Sid of the notification to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListNotifications">
            <summary>
            Returns a list of notifications generated for an account. 
            The list includes paging information.
            Makes a GET request to a Notifications List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListNotifications(System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Returns a filtered list of notifications generated for an account. 
            The list includes paging information.
            Makes a GET request to a Notifications List resource.
            </summary>
            <param name="log">Only show notifications for this log, using the integer log values: 0 is ERROR, 1 is WARNING</param>
            <param name="messageDate">Only show notifications for this date (in GMT)</param>
            <param name="pageNumber">The page number to start retrieving results from</param>
            <param name="count">How many notifications to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteNotification(System.String)">
            <summary>
            Deletes a notification from your account. Makes a DELETE request to a Notification Instance resource.
            </summary>
            <param name="notificationSid">The Sid of the notification to delete</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetOutgoingCallerId(System.String)">
            <summary>
            Retrieve the details for an existing validated Outgoing Caller ID entry.
            Makes a GET request to an OutgoingCallerId Instance resource.
            </summary>
            <param name="outgoingCallerIdSid">The Sid of the entry to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListOutgoingCallerIds">
            <summary>
            Returns a list of validated outgoing caller IDs. The list includes paging information.
            Makes a GET request to an OutgoingCallerIds List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListOutgoingCallerIds(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Returns a filtered list of validated outgoing caller IDs. The list includes paging information.
            Makes a GET request to an OutgoingCallerIds List resource.
            </summary>
            <param name="phoneNumber">If present, filter the list by the value provided</param>
            <param name="friendlyName">If present, filter the list by the value provided</param>
            <param name="pageNumber">If present, start the results from the specified page</param>
            <param name="count">If present, return the specified number of results, up to 1000</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddOutgoingCallerId(System.String,System.String,System.Nullable{System.Int32},System.String)">
            <summary>
            Adds a new validated CallerID to your account. 
            After making this request, Twilio will return to you a validation code and dial the phone number given to perform validation. 
            The code returned must be entered via the phone before the CallerID will be added to your account.
            Makes a POST request to an OutgoingCallerIds List resource.
            </summary>
            <param name="phoneNumber">The phone number to verify. Should be formatted with a '+' and country code e.g., +16175551212 (E.164 format). Twilio will also accept unformatted US numbers e.g., (415) 555-1212, 415-555-1212.</param>
            <param name="friendlyName">A human readable description for the new caller ID with maximum length 64 characters. Defaults to a nicely formatted version of the number.</param>
            <param name="callDelay">The number of seconds, between 0 and 60, to delay before initiating the validation call. Defaults to 0.</param>
            <param name="extension">Digits to dial after connecting the validation call.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.AddOutgoingCallerId(System.String,Twilio.OutgoingCallerIdOptions)">
            <summary>
            Adds a new validated CallerID to your account. 
            After making this request, Twilio will return to you a validation code and dial the phone number given to perform validation. 
            The code returned must be entered via the phone before the CallerID will be added to your account.
            Makes a POST request to an OutgoingCallerIds List resource.
            </summary>
            <param name="phoneNumber">The phone number to verify. Should be formatted with a '+' and country code e.g., +16175551212 (E.164 format). Twilio will also accept unformatted US numbers e.g., (415) 555-1212, 415-555-1212.</param>
            <param name="options">Optional parameters to use when purchasing number</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateOutgoingCallerIdName(System.String,System.String)">
            <summary>
            Update the FriendlyName associated with a validated outgoing caller ID entry.
            Makes a POST request to an OutgoingCallerId Instance resource.
            </summary>
            <param name="outgoingCallerIdSid">The Sid of the outgoing caller ID entry</param>
            <param name="friendlyName">The name to update the FriendlyName to</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteOutgoingCallerId(System.String)">
            <summary>
            Remove a validated outgoing caller ID from the current account.
            Makes a DELETE request to an OutgoingCallerId Instance resource.
            </summary>
            <param name="outgoingCallerIdSid">The Sid to remove</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListQueues">
            <summary>
            Return a list of all Queue resources
            </summary>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateQueue(System.String)">
            <summary>
            Creates a new Queue resource
            </summary>
            <param name="friendlyName">The name of the Queue</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateQueue(System.String,System.Int32)">
            <summary>
            Creates a new Queue resource
            </summary>
            <param name="friendlyName">The name of the Queue</param>
            <param name="maxSize">The maximum number of calls allowed in the queue</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetQueue(System.String)">
            <summary>
            Locates and returns a specific Queue resource
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateQueue(System.String,System.String,System.Int32)">
            <summary>
            Updates a specific Queue resource
            </summary>
            <param name="queueSid">The Sid of the Queue to update</param>
            <param name="friendlyName">The name of the Queue</param>
            <param name="maxSize">The maximum number of calls allowed in the queue</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteQueue(System.String)">
            <summary>
            Deletes a Queue resource
            </summary>
            <param name="queueSid">The Sid of the Queue to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListQueueMembers(System.String)">
            <summary>
            Return a List of all Calls currently in the the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetFirstQueueMember(System.String)">
            <summary>
            Returns the Call in the first position of the wait Queue for the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetQueueMember(System.String,System.String)">
            <summary>
            Locate and return a specific Call in the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to search</param>
            <param name="callSid">The Sid of the Call to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DequeueFirstQueueMember(System.String,System.String)">
            <summary>
            Dequeues the Caller in the first wait position for the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <param name="url">A Url containing TwiML intructions to execute when the call is dequeued</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DequeueFirstQueueMember(System.String,System.String,System.String)">
            <summary>
            Dequeues the Caller in the first wait position for the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <param name="url">A Url containing TwiML intructions to execute when the call is dequeued</param>
            <param name="method">The method to use to request the Url</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DequeueQueueMember(System.String,System.String,System.String)">
            <summary>
            Dequeues a specific Caller in the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <param name="callSid">The Sid of the Caller to dequeue</param>
            <param name="url">A Url containing TwiML intructions to execute when the call is dequeued</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DequeueQueueMember(System.String,System.String,System.String,System.String)">
            <summary>
            Dequeues a specific Caller in the specified Queue
            </summary>
            <param name="queueSid">The Sid of the Queue to locate</param>
            <param name="callSid">The Sid of the Caller to dequeue</param>
            <param name="url">A Url containing TwiML intructions to execute when the call is dequeued</param>
            <param name="method">The method to use to request the Url</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListRecordings">
            <summary>
            Returns a list of Recordings, each representing a recording generated during the course of a phone call. 
            The list includes paging information.
            Makes a GET request to the Recordings List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListRecordings(System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Returns a filtered list of Recordings, each representing a recording generated during the course of a phone call. 
            The list includes paging information.
            Makes a GET request to the Recordings List resource.
            </summary>
            <param name="callSid">(Optional) The CallSid to retrieve recordings for</param>
            <param name="dateCreated">(Optional) The date the recording was created (GMT)</param>
            <param name="pageNumber">The page to start retrieving results from</param>
            <param name="count">How many results to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetRecording(System.String)">
            <summary>
            Retrieve the details for the specified recording instance.
            Makes a GET request to a Recording Instance resource.
            </summary>
            <param name="recordingSid">The Sid of the recording to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteRecording(System.String)">
            <summary>
            Delete the specified recording instance. Makes a DELETE request to a Recording Instance resource.
            </summary>
            <param name="recordingSid">The Sid of the recording to delete</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetRecordingText(System.String)">
            <summary>
            Retrieves the transcription text for the specified recording, if it was transcribed. 
            Makes a GET request to a Recording Instance resource.
            </summary>
            <param name="recordingSid">The Sid of the recording to retreive the transcription for</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetSandbox">
            <summary>
            Returns the Sandbox resource associated with the account identified by {YourAccountSid}. 
            Twilio accounts upgraded prior to February 2010 may not have a Sandbox resource, and in this case you will receive a 404 (Not Found) response.
            Makes a GET request to the Sandbox Instance resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateSandbox(System.String,System.String,System.String,System.String)">
            <summary>
            Update the TwiML voice and SMS URLs associated with the sandbox number.
            Makes a POST request to the Sandbox Instance resource.
            </summary>
            <param name="voiceUrl">The URL to use for incoming calls to your sandbox number.</param>
            <param name="voiceMethod">The HTTP method to use for incoming calls to your sandbox number.</param>
            <param name="smsUrl">The URL to use for incoming SMS text messages sent to your sandbox number.</param>
            <param name="smsMethod">The HTTP method to use for incoming text messages sent to your sandbox number.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetSmsMessage(System.String)">
            <summary>
            Retrieve the details for a specific SMS message instance.
            Makes a GET request to an SMSMessage Instance resource.
            </summary>
            <param name="smsMessageSid">The Sid of the message to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListSmsMessages">
            <summary>
            Returns a list of SMS messages. 
            The list includes paging information.
            Makes a GET request to the SMSMessage List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListSmsMessages(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Returns a filtered list of SMS messages. The list includes paging information.
            Makes a GET request to the SMSMessages List resource.
            </summary>
            <param name="to">(Optional) The phone number of the message recipient</param>
            <param name="from">(Optional) The phone number of the message sender</param>
            <param name="dateSent">(Optional) The date the message was sent (GMT)</param>
            <param name="pageNumber">(Optional) The page to start retrieving results from</param>
            <param name="count">(Optional) The number of results to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendSmsMessage(System.String,System.String,System.String)">
            <summary>
            Send a new SMS message to the specified recipients.
            Makes a POST request to the SMSMessages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendSmsMessage(System.String,System.String,System.String,System.String)">
            <summary>
            Send a new SMS message to the specified recipients
            Makes a POST request to the SMSMessages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the SmsSid as well as SmsStatus=sent or SmsStatus=failed</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.SendSmsMessage(System.String,System.String,System.String,System.String,System.String)">
            <summary>
            Send a new SMS message to the specified recipients
            Makes a POST request to the SMSMessages List resource.
            </summary>
            <param name="from">The phone number to send the message from. Must be a Twilio-provided or ported local (not toll-free) number. Validated outgoing caller IDs cannot be used.</param>
            <param name="to">The phone number to send the message to. If using the Sandbox, this number must be a validated outgoing caller ID</param>
            <param name="body">The message to send. Must be 160 characters or less.</param>
            <param name="statusCallback">A URL that Twilio will POST to when your message is processed. Twilio will POST the SmsSid as well as SmsStatus=sent or SmsStatus=failed</param>
            <param name="applicationSid">Twilio will POST SmsSid as well as SmsStatus=sent or SmsStatus=failed to the URL in the SmsStatusCallback property of this Application. If the StatusCallback parameter above is also passed, the Application's SmsStatusCallback parameter will take precedence.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetShortCode(System.String)">
            <summary>
            Retrieve the details for a specific ShortCode instance.
            Makes a GET request to a ShortCode Instance resource.
            </summary>
            <param name="shortCodeSid">The Sid of the ShortCode resource to return</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateShortCode(System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
            <summary>
            Tries to update the shortcode's properties, and returns the updated resource representation if successful.
            Makes a POST request to the ShortCode instance resource.
            </summary>
            <param name="shortCodeSid">The Sid of the ShortCode instance to update</param>
            <param name="friendlyName">A human readable description of the short code, with maximum length 64 characters.</param>
            <param name="apiVersion">SMSs to this short code will start a new TwiML session with this API version.</param>
            <param name="smsUrl">The URL that Twilio should request when somebody sends an SMS to the short code.</param>
            <param name="smsMethod">The HTTP method that should be used to request the SmsUrl. Either GET or POST.</param>
            <param name="smsFallbackUrl">A URL that Twilio will request if an error occurs requesting or executing the TwiML at the SmsUrl.</param>
            <param name="smsFallbackMethod">The HTTP method that should be used to request the SmsFallbackUrl. Either GET or POST.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListShortCodes(System.String,System.String)">
            <summary>
            Returns a list of ShortCode resource representations, each representing a short code within your account.
            </summary>
            <param name="shortCode">Only show the ShortCode resources that match this pattern. You can specify partial numbers and use '*' as a wildcard for any digit.</param>
            <param name="friendlyName">Only show the ShortCode resources with friendly names that exactly match this name.</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateToken(System.Int32,System.Action{Twilio.Token})">
            <summary>
            Create a new token
            </summary>
            <param name="ttl">The time in seconds before this token expires</param>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateToken(System.Action{Twilio.Token})">
            <summary>
            Create a new token
            </summary>
            <param name="callback">Method to call upon successful completion</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateToken(System.Int32)">
            <summary>
            Create a new token
            </summary>
            <param name="ttl">The friendly name to name the application</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateToken">
            <summary>
            Create a new token
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListTranscriptions">
            <summary>
            Returns a set of Transcriptions that includes paging information.
            Makes a GET request to the Transcriptions List resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListTranscriptions(System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Returns a paged set of Transcriptions that includes paging information.
            Makes a GET request to the Transcriptions List resource.
            </summary>
            <param name="pageNumber">The page to start retrieving results from</param>
            <param name="count">The number of results to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListTranscriptions(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Returns a set of Transcriptions for a specific recording that includes paging information.
            Makes a GET request to a Recording Transcriptions List resource.
            </summary>
            <param name="recordingSid">The Sid of the recording to retrieve transcriptions for</param>
            <param name="pageNumber">The page to start retrieving results from</param>
            <param name="count">The number of results to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetTranscription(System.String)">
            <summary>
            Retrieve the details of a single transcription. 
            Makes a GET request to a Transcription Instance resource.
            </summary>
            <param name="transcriptionSid">The Sid of the transcription to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetTranscriptionText(System.String)">
            <summary>
            Retrieve the text of a single transcription.
            Makes a GET request to a Transcription Instance resource.
            </summary>
            <param name="transcriptionSid">The Sid of the transcription to retrieve</param>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteTranscription(System.String)">
            <summary>
            Delete the specified transcription instance. Makes a DELETE request to a Transcription Instance resource.
            </summary>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage">
            <summary>
            Returns a list of all usage resources
            </summary>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage(System.String)">
            <summary>
            Returns a list of usage resources for a specific usage category
            </summary>
            <param name="category">The category used to filter the usage data</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage(System.String,System.String)">
            <summary>
            Returns a list of usage resources for a specific category, where the data grouped using a specific interval
            </summary>
            <param name="category">The category used to filter the usage data</param>
            <param name="interval">The time interval used to group the usage data</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
            <summary>
            Returns a list of usage resources for a specific category, within a specific date range
            </summary>
            <param name="category">The category used to filter the usage data</param>
            <param name="startDate">The start date of the filter range</param>
            <param name="endDate">The end date of the filter range</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
            <summary>
            Returns a list of usage resources for a specific category, within a specific date range, grouped by a specific time interval
            </summary>
            <param name="category">The category used to filter the usage data</param>
            <param name="interval">The time interval used to group the usage data</param>
            <param name="startDate">The start date of the filter range</param>
            <param name="endDate">The end date of the filter range</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsage(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Returns a list of usage resources for a specific category, within a specific date range, grouped by a specific time interval
            </summary>
            <param name="category">The category used to filter the usage data</param>
            <param name="interval">The time interval used to group the usage data</param>
            <param name="startDate">The start date of the filter range</param>
            <param name="endDate">The end date of the filter range</param>
            <param name="pageNumber">(Optional) The page to start retrieving results from</param>
            <param name="count">(Optional) The number of results to retrieve</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsageTriggers">
            <summary>
            Returns a list of usage triggers
            </summary>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListUsageTriggers(System.String,System.String,System.String)">
            <summary>
            Returns a list of usage triggers
            </summary>
            <param name="recurring">A string defining the recurrance interval for this trigger</param>
            <param name="usageCategory">The usage category this trigger watches</param>
            <param name="triggerBy">The value at which the trigger will fire</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetUsageTrigger(System.String)">
            <summary>
            Locates and returns a specific Usage Trigger resource
            </summary>
            <param name="usageTriggerSid">The Sid of the Usage Trigger to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateUsageTrigger(System.String,System.String,System.String)">
            <summary>
            Creates a new Usage Trigger resource
            </summary>
            <param name="usageCategory">The usage category to trigger on</param>
            <param name="triggerValue">The value to trigger on</param>
            <param name="callbackUrl">The URL to call once a trigger value has been met</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateUsageTrigger(Twilio.UsageTriggerOptions)">
            <summary>
            Creates a new Usage Trigger resource
            </summary>
            <param name="options">A UsageTriggerOption object that defines the different trigger options</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateUsageTrigger(System.String,System.String,System.String,System.String)">
            <summary>
            Updates a specific UsageTrigger resource
            </summary>
            <param name="usageTriggerSid">The Sid of the UsageTrigger to update</param>
            <param name="friendlyName">The friendly name of the trigger</param>
            <param name="callbackUrl">The URL to call once a trigger value has been met</param>
            <param name="callbackMethod">The HTTP method used when requesting the callback URL</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteUsageTrigger(System.String)">
            <summary>
            Deletes a UsageTrigger resource
            </summary>
            <param name="usageTriggerSid">The Sid of the UsageTrigger to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetDomain(System.String)">
            <summary>
            Locates and returns a specific SIP Domain resource
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListDomains">
            <summary>
            Return a list of all SIP Domain resources
            </summary>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListDomains(System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Return a list of all SIP Domain resources
            </summary>
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateDomain(System.String)">
            <summary>
            Creates a new SIP Domain resource
            </summary>
            <param name="domainName">The name of the SIP Domain to create.  You must pick a unique domain name that ends in ".sip.twilio.com"</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateDomain(Twilio.DomainOptions)">
            <summary>
            Creates a new SIP Domain resource
            </summary>
            <param name="options">Optional parameters to use when creating a new SIP domain.  DomainName is required and you must pick a unique domain name that ends in ".sip.twilio.com"</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateDomain(System.String,Twilio.DomainOptions)">
            <summary>
            Updates a specific SIP Domain resource
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to update</param>
            <param name="options">Optional parameters for a SIP domain</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteDomain(System.String)">
            <summary>
            Deletes a specific SIP Domain resource
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetIpAccessControlListMapping(System.String,System.String)">
            <summary>
            Gets a specific IpAccessControlList mapping for a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the mapped SIP Domain</param>
            <param name="ipAccessControlListMappingSid">The Sid of the mapped IpAccessControlList</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAccessControlListMappings(System.String)">
            <summary>
            Lists all IpAccessControlLists mapped to a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to list mappings for</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAccessControlListMappings(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Lists all IpAccessControlLists mapped to a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to list mappings for</param>
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateIpAccessControlListMapping(System.String,System.String)">
            <summary>
            Maps an IpAccessControlList to a specific SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to map to</param>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList to map to</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteIpAccessControlListMapping(System.String,System.String)">
            <summary>
            Deletes a IpAccessControlListMapping from a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain</param>
            <param name="ipAccessControlListMappingSid">The Sid of the IpAccessControlListMapping to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetCredentialListMapping(System.String,System.String)">
            <summary>
            Gets a specific CredentialList mapping for a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the mapped SIP Domain</param>
            <param name="credentialListMappingSid">The Sid of the mapped CredentialList</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentialListMappings(System.String)">
            <summary>
            Lists all CredentialLists mapped to a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to list mappings for</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentialListMappings(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Lists all IpAccessControlLists mapped to a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to list mappings for</param>
            <param name="pageNumber"></param>        
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateCredentialListMapping(System.String,System.String)">
            <summary>
            Maps a CredentialList to a specific SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain to map to</param>
            <param name="credentialListSid">The Sid of the CredentialList to map to</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteCredentialListMapping(System.String,System.String)">
            <summary>
            Deletes a CredentialListMapping from a SIP Domain
            </summary>
            <param name="domainSid">The Sid of the SIP Domain</param>
            <param name="credentialListMappingSid">The Sid of the CredentialListMapping to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetIpAccessControlList(System.String)">
            <summary>
            Gets a specific IpAccessControlList resource
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList resource</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAccessControlLists">
            <summary>
            Lists all IpAccessControlLists for this account
            </summary>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAccessControlLists(System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Lists all IpAccessControlLists for this account
            </summary>
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateIpAccessControlList(System.String)">
            <summary>
            Creates a new IpAccessControlList resource
            </summary>
            <param name="friendlyName">The name of the IpAccessControlList to create.</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateIpAccessControlList(System.String,System.String)">
            <summary>
            Updates a specific IpAccessControlList resource
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList to update</param>
            <param name="friendlyName">The name of the IpAccessControlList</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteIpAccessControlList(System.String)">
            <summary>
            Deletes a specific IpAccessControlList resource
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList Domain to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetIpAddress(System.String,System.String)">
            <summary>
            Locates and returns a specific IpAddress resource located in an IpAccessControlList
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList</param>
            <param name="ipAddressSid">The Sid of the IpAddress to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAddresses(System.String)">
            <summary>
            Return a lists all IpAddresses associated with an IpAccessControlList
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListIpAddresses(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Return a lists all IpAddresses associated with an IpAccessControlList
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList</param>
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateIpAddress(System.String,System.String,System.String)">
            <summary>
            Creates a new IpAddress resource
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControList to add the IpAddress to</param>
            <param name="friendlyName">The name of the IpAddress to create.</param>
            <param name="ipAddress">The address value of the IpAddress</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateIpAddress(System.String,System.String,System.String,System.String)">
            <summary>
            Updates a specific IpAddress resource
            </summary>
            <param name="ipAccessControlListSid">The Sid of the IpAccessControlList</param>
            <param name="ipAddressSid">The Sid of the IpAddress to update</param>
            <param name="friendlyName">The name of the IpAddress</param>
            <param name="ipAddress">The address value of the IpAddress</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteIpAddress(System.String,System.String)">
            <summary>
            Deletes a specific IpAddress resource
            </summary>
            <param name="domainSid">The Sid of the IpAddress to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetCredentialList(System.String)">
            <summary>
            Locates and returns a specific CredentialList resource
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentialLists">
            <summary>
            Return a list all CredentialsList resources
            </summary>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentialLists(System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Return a list all CredentialsList resources
            </summary>
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateCredentialList(System.String)">
            <summary>
            Creates a new CredentialList resource
            </summary>
            <param name="friendlyName">The name of the CredentialList to create.</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateCredentialList(System.String,System.String)">
            <summary>
            Updates a specific CredentialList resource
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList</param>
            <param name="friendlyName">The name of the CredentialList</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteCredentialList(System.String)">
            <summary>
            Deletes a specific CredentialList resource
            </summary>
            <param name="domainSid">The Sid of the CredentialList to delete</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.GetCredential(System.String,System.String)">
            <summary>
            Locates and returns a specific Credential in a CredentialList resource
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList</param>
            <param name="credentialSid">The Sid of the Credential to locate</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentials(System.String)">
            <summary>
            List all Credentials for a CredentialList
            </summary>
            <param name="credentialListSid"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.ListCredentials(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            List all Credentials for a CredentialList
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList</param>
            <param name="pageNumber"></param>
            <param name="count"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.CreateCredential(System.String,System.String,System.String)">
            <summary>
            Create a new Credential resource in a CredentialList
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList to add the new Credential to</param>
            <param name="username">The Credential Username</param>
            <param name="password">The Credential Password</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.UpdateCredential(System.String,System.String,System.String,System.String)">
            <summary>
            Updates a specific Credential resource
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList that contains the Credential</param>
            <param name="credentialSid">The Sid of the Credential to update</param>
            <param name="username"></param>
            <param name="password"></param>
            <returns></returns>
        </member>
        <member name="M:Twilio.TwilioRestClient.DeleteCredential(System.String,System.String)">
            <summary>
            Deletes a Credential from a CredentialList
            </summary>
            <param name="credentialListSid">The Sid of the CredentialList to delete from</param>
            <param name="credentialSid">The Sid of the Credential to delete</param>
            <returns></returns>
        </member>
        <member name="T:Twilio.Address">
            <summary>
            An Address resource represents a single address to be associated with Twilio Phone Numbers.
            </summary>
        </member>
        <member name="T:Twilio.TwilioBase">
            <summary>
            Base class for all Twilio resource types
            </summary>
        </member>
        <member name="P:Twilio.TwilioBase.RestException">
            <summary>
            Exception encountered during API request
            </summary>
        </member>
        <member name="P:Twilio.TwilioBase.Uri">
            <summary>
            The URI for this resource, relative to https://api.twilio.com
            </summary>
        </member>
        <member name="P:Twilio.Address.Sid">
            <summary>
            A 34 character string that uniquely identifies this address.
            </summary>
        </member>
        <member name="P:Twilio.Address.AccountSid">
            <summary>
            The unique id of the Account responsible for creating this address.
            </summary>
        </member>
        <member name="P:Twilio.Address.FriendlyName">
            <summary>
            A user provided string that identifies this address.
            </summary>
        </member>
        <member name="P:Twilio.Address.CustomerName">
            <summary>
            Gets or sets the name of the customer.
            </summary>
            <value>The name of the customer.</value>
        </member>
        <member name="P:Twilio.Address.Street">
            <summary>
            Gets or sets the street component of the address.
            </summary>
            <value>The street number and name.</value>
        </member>
        <member name="P:Twilio.Address.City">
            <summary>
            Gets or sets the city.
            </summary>
            <value>The city.</value>
        </member>
        <member name="P:Twilio.Address.Region">
            <summary>
            Gets or sets the region.
            </summary>
            <value>The region.</value>
        </member>
        <member name="P:Twilio.Address.PostalCode">
            <summary>
            Gets or sets the postal code.
            </summary>
            <value>The postal code.</value>
        </member>
        <member name="P:Twilio.Address.IsoCountry">
            <summary>
            The ISO country code for this address.
            </summary>
            <value>An ISO-3166-1 alpha-2 (two-letter) country code.</value>
        </member>
        <member name="P:Twilio.Address.DateCreated">
            <summary>
            The date that this address was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.Address.DateUpdated">
            <summary>
            The date that this address was last updated, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.AddressListRequest.FriendlyName">
            <summary>
            Only show Addresses with this friendly name.
            </summary>
        </member>
        <member name="P:Twilio.AddressListRequest.CustomerName">
            <summary>
            Only show Addresses with this customer name.
            </summary>
        </member>
        <member name="P:Twilio.AddressListRequest.IsoCountry">
            <summary>
            Only show Addresses located in this country.
            </summary>
        </member>
        <member name="P:Twilio.AddressOptions.FriendlyName">
            <summary>
            An optional string that identifies this address. 64 characters maximum.
            </summary>
        </member>
        <member name="P:Twilio.AddressOptions.CustomerName">
            <summary>
            You or your customer's name or business name.
            </summary>
        </member>
        <member name="P:Twilio.AddressOptions.Street">
            <summary>
            The number and street address where you or your customer are located.
            </summary>	
        </member>
        <member name="P:Twilio.AddressOptions.City">
            <summary>
            The city in which you or your customer are located.
            </summary>
            <value>The city.</value>
        </member>
        <member name="P:Twilio.AddressOptions.Region">
            <summary>
            The state or region in which you or your customer are located.
            </summary>
            <value>The region.</value>
        </member>
        <member name="P:Twilio.AddressOptions.PostalCode">
            <summary>
            The postal code in which you or your customer are located.
            </summary>
            <value>The postal code.</value>
        </member>
        <member name="T:Twilio.AddressResult">
            <summary>
            Twilio API call result with paging information.
            </summary>
        </member>
        <member name="T:Twilio.TwilioListBase">
            <summary>
            Base class for list resource data
            </summary>
        </member>
        <member name="P:Twilio.TwilioListBase.Page">
            <summary>
            The current page number. Zero-indexed, so the first page is 0.
            </summary>
        </member>
        <member name="P:Twilio.TwilioListBase.NumPages">
            <summary>
            The total number of pages.
            </summary>
        </member>
        <member name="P:Twilio.TwilioListBase.PageSize">
            <summary>
            How many items are in each page
            </summary>
        </member>
        <member name="P:Twilio.TwilioListBase.Total">
            <summary>
            The total number of items in the list.
            </summary>
        </member>
        <member name="P:Twilio.TwilioListBase.Start">
            <summary>
            The position in the overall list of the first item in this page.
            </summary>
        </member>
        <member name="P:Twilio.TwilioListBase.End">
            <summary>
            The position in the overall list of the last item in this page.
            </summary>
        </member>
        <member name="P:Twilio.TwilioListBase.FirstPageUri">
            <summary>
            The URI for the first page of this list.
            </summary>
        </member>
        <member name="P:Twilio.TwilioListBase.NextPageUri">
            <summary>
            The URI for the next page of this list.
            </summary>
        </member>
        <member name="P:Twilio.TwilioListBase.PreviousPageUri">
            <summary>
            The URI for the previous page of this list.
            </summary>
        </member>
        <member name="P:Twilio.TwilioListBase.LastPageUri">
            <summary>
            The URI for the last page of this list.
            </summary>
        </member>
        <member name="P:Twilio.AddressResult.Addresses">
            <summary>
            List of Address results returned from Twilio API call.
            </summary>
        </member>
        <member name="T:Twilio.DependentPhoneNumber">
            <summary>
            Represents a phone number object that depends on a particular Address.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.DateCreated">
            <summary>
            The date that this resource was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.DateUpdated">
            <summary>
            The date that this resource was last updated, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.FriendlyName">
            <summary>
            A human readable descriptive text for this resource, up to 64 characters long. By default, the FriendlyName is a nicely formatted version of the phone number.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.AccountSid">
            <summary>
            The unique id of the Account responsible for this phone number.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.PhoneNumber">
            <summary>
            The incoming phone number. e.g., +16175551212 (E.164 format)
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.ApiVersion">
            <summary>
            Calls to this phone number will start a new TwiML session with this API version.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.VoiceCallerIdLookup">
            <summary>
            Look up the caller's caller-ID name from the CNAM database (additional charges apply)
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.VoiceUrl">
            <summary>
            The URL Twilio will request when this phone number receives a call.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.VoiceMethod">
            <summary>
            The HTTP method Twilio will use when requesting the above Url. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.VoiceFallbackUrl">
            <summary>
            The URL that Twilio will request if an error occurs retrieving or executing the TwiML requested by Url.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.VoiceFallbackMethod">
            <summary>
            The HTTP method Twilio will use when requesting the VoiceFallbackUrl. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.StatusCallback">
            <summary>
            The URL that Twilio will request to pass status parameters (such as call ended) to your application.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.StatusCallbackMethod">
            <summary>
            The HTTP method Twilio will use to make requests to the StatusCallbackUrl. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.SmsUrl">
            <summary>
            The URL Twilio will request when receiving an incoming SMS message to this number.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.SmsMethod">
            <summary>
            The HTTP method Twilio will use when making requests to the SmsUrl. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.SmsFallbackUrl">
            <summary>
            The URL that Twilio will request if an error occurs retrieving or executing the TwiML from SmsUrl.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.SmsFallbackMethod">
            <summary>
            The HTTP method Twilio will use when requesting the above URL. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.SmsApplicationSid">
            <summary>
            The ApplicationSid assigned to this number for SMS requests
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.VoiceApplicationSid">
            <summary>
            The ApplicationSid assigned to this number for voice requests
            </summary>
        </member>
        <member name="P:Twilio.DependentPhoneNumber.AddressRequirements">
            <summary>
            Indicates whether this number requires an associated physical address.
            One of "any", "local", "foreign", or "none".
            </summary>
        </member>
        <member name="T:Twilio.DependentPhoneNumberResult">
            <summary>
            Twilio API call result with paging information.
            </summary>
        </member>
        <member name="P:Twilio.Feedback.QualityScore">
            <summary>
            1 to 5 quality score where 1 represents imperfect experience and 5 represents a perfect call
            </summary>
        </member>
        <member name="P:Twilio.Feedback.Issues">
            <summary>
            A list of issues experienced during the call.
            </summary>
            <remarks>Issues can be: imperfect-audio, dropped-call,  incorrect-caller-id,  post-dial-delay,  digits-not-captured, audio-latency, or one-way-audio</remarks>
        </member>
        <member name="P:Twilio.Feedback.DateCreated">
            <summary>
            The date that this resource was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.Feedback.DateUpdated">
            <summary>
            The date that this resource was last updated, given as GMT 
            </summary>
        </member>
        <member name="T:Twilio.FeedbackSummary">
            <summary>
            An FeedbackSummary instance resource represents a single Twilio call FeedbackSummary.
            </summary>
        </member>
        <member name="P:Twilio.FeedbackSummary.Sid">
            <summary>
            A 34 character string that uniquely identifies this feedback summary.
            </summary>
        </member>
        <member name="P:Twilio.FeedbackSummary.StartDate">
            <summary>
            The feedback summary start date.
            </summary>
        </member>
        <member name="P:Twilio.FeedbackSummary.EndDate">
            <summary>
            The feedback summary start date.
            </summary>
        </member>
        <member name="P:Twilio.FeedbackSummary.AccountSid">
            <summary>
            The feedback summary AccountSid.
            </summary>
        </member>
        <member name="P:Twilio.FeedbackSummary.IncludeSubaccounts">
            <summary>
            Gets or sets a value indicating whether this <see cref="T:Twilio.FeedbackSummary"/> include subaccounts.
            </summary>
            <value><c>true</c> if include subaccounts; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Twilio.FeedbackSummary.Status">
            <summary>
            Gets or sets the status.
            </summary>
            <value>The status.</value>
        </member>
        <member name="P:Twilio.FeedbackSummary.CallCount">
            <summary>
            Gets or sets the call count.
            </summary>
            <value>The call count.</value>
        </member>
        <member name="P:Twilio.FeedbackSummary.CallFeedbackCount">
            <summary>
            Gets or sets the call feedback count.
            </summary>
            <value>The call feedback count.</value>
        </member>
        <member name="P:Twilio.FeedbackSummary.QualityScoreAverage">
            <summary>
            Gets or sets the quality score average.
            </summary>
            <value>The quality score average.</value>
        </member>
        <member name="P:Twilio.FeedbackSummary.QualityScoreMedian">
            <summary>
            Gets or sets the quality score median.
            </summary>
            <value>The quality score median.</value>
        </member>
        <member name="P:Twilio.FeedbackSummary.QualityScoreStandardDeviation">
            <summary>
            Gets or sets the quality score standard deviation.
            </summary>
            <value>The quality score standard deviation.</value>
        </member>
        <member name="P:Twilio.FeedbackSummary.Issues">
            <summary>
            List of issues present in this feedback summary.
            </summary>
        </member>
        <member name="P:Twilio.FeedbackSummary.DateCreated">
            <summary>
            The date that this feedback summary was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.FeedbackSummary.DateUpdated">
            <summary>
            The date that this feedback summary was last updated, given as GMT
            </summary>
        </member>
        <member name="T:Twilio.Issue">
            <summary>
            Feedback summary issue.
            </summary>
        </member>
        <member name="P:Twilio.Issue.Description">
            <summary>
            The issue name
            </summary>
        </member>
        <member name="P:Twilio.Issue.Count">
            <summary>
            The number of occurrences of this issue
            </summary>
        </member>
        <member name="P:Twilio.Issue.PercentageOfTotalCalls">
            <summary>
            The percentage of calls that experienced this issue
            </summary>
        </member>
        <member name="P:Twilio.Model.ListMeta.Key">
            <summary>
            The plural name of this resource collection
            </summary>
        </member>
        <member name="P:Twilio.Model.ListMeta.Page">
            <summary>
            Page number of this result page, counting from 0
            </summary>
        </member>
        <member name="P:Twilio.Model.ListMeta.PageSize">
            <summary>
            The size of this result page
            </summary>
        </member>
        <member name="P:Twilio.Model.ListMeta.NextPageUrl">
            <summary>
            URL of the next page in this list
            </summary>
        </member>
        <member name="P:Twilio.Model.ListMeta.PreviousPageUrl">
            <summary>
            URL of the previous page in this list
            </summary>
        </member>
        <member name="P:Twilio.Model.ListMeta.FirstPageUrl">
            <summary>
            URL of the first page in this list
            </summary>
        </member>
        <member name="P:Twilio.Model.ListMeta.Url">
            <summary>
            URL for this page
            </summary>
        </member>
        <member name="T:Twilio.MediaListRequest">
            <summary>
            Search filter options for a list of Media 
            </summary>
        </member>
        <member name="P:Twilio.MediaListRequest.ParentSid">
            <summary>
            Only show media with a parent Message Sid matching this sid.
            </summary>
        </member>
        <member name="P:Twilio.MediaListRequest.DateCreated">
            <summary>
            Only show media that were created on this date
            </summary>
        </member>
        <member name="P:Twilio.MediaListRequest.DateCreatedComparison">
            <summary>
            Comparison type for created date
            </summary>
        </member>
        <member name="P:Twilio.MediaListRequest.PageNumber">
            <summary>
            What page number to start retrieving results from
            </summary>
        </member>
        <member name="P:Twilio.MediaListRequest.Count">
            <summary>
            How many results to retrieve
            </summary>
        </member>
        <member name="P:Twilio.Model.NextGenListBase.Meta">
            <summary>
            Metadata about this list resource representation.
            Includes resource name and paging information.
            </summary>
        </member>
        <member name="T:Twilio.Permission">
            <summary>
            A single Connect App permission
            </summary>
        </member>
        <member name="P:Twilio.Permission.Value">
            <summary>
            The value of the Permission.  Valid values are get-all or post-all.
            </summary>
        </member>
        <member name="P:Twilio.Token.AccountSid">
            <summary>
            The account sid that requested this token.
            </summary>
        </member>
        <member name="P:Twilio.Token.Username">
            <summary>
            The username for this token.
            </summary>
        </member>
        <member name="P:Twilio.Token.Password">
            <summary>
            The password for this token.
            </summary>
        </member>
        <member name="P:Twilio.Token.IceServers">
            <summary>
            The IceServers for this token.
            </summary>
        </member>
        <member name="P:Twilio.Token.Ttl">
            <summary>
            How long this token is good for in seconds.
            </summary>
        </member>
        <member name="P:Twilio.Token.DateCreated">
            <summary>
            The date that this resource was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.Token.DateUpdated">
            <summary>
            The date that this resource was last updated, given as GMT 
            </summary>
        </member>
        <member name="T:Twilio.Account">
            <summary>
            An Account instance resource represents a single Twilio Account.
            </summary>
        </member>
        <member name="P:Twilio.Account.Sid">
            <summary>
            A 34 character string that uniquely identifies this account.
            </summary>
        </member>
        <member name="P:Twilio.Account.DateCreated">
            <summary>
            The date that this account was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.Account.DateUpdated">
            <summary>
            The date that this account was last updated, given in as GMT
            </summary>
        </member>
        <member name="P:Twilio.Account.FriendlyName">
            <summary>
            A human readable description of this account, up to 64 characters long. By default the FriendlyName is your email address.
            </summary>
        </member>
        <member name="P:Twilio.Account.Status">
            <summary>
            The status of this account. Usually active, but can be suspended if you've been bad.
            </summary>
        </member>
        <member name="P:Twilio.Account.AuthToken">
            <summary>
            The authorization token for this account. This token should be kept a secret, so no sharing.
            </summary>
        </member>
        <member name="T:Twilio.AccountResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.AccountResult.Accounts">
            <summary>
            List of accounts returned by API
            </summary>
        </member>
        <member name="T:Twilio.AccountStatus">
            <summary>
            The status of an <see cref="T:Twilio.Account">Account</see>
            </summary>
        </member>
        <member name="F:Twilio.AccountStatus.Active">
            <summary>
            Available to be used
            </summary>
        </member>
        <member name="F:Twilio.AccountStatus.Suspended">
            <summary>
            Temporarily suspended
            </summary>
        </member>
        <member name="F:Twilio.AccountStatus.Closed">
            <summary>
            Closed forever
            </summary>
        </member>
        <member name="T:Twilio.Application">
            <summary>
            An Application instance resource represents a single Twilio Application.
            </summary>
        </member>
        <member name="P:Twilio.Application.Sid">
            <summary>
            A 34 character string that uniquely identifies this account.
            </summary>
        </member>
        <member name="P:Twilio.Application.DateCreated">
            <summary>
            The date that this account was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.Application.DateUpdated">
            <summary>
            The date that this account was last updated, given in as GMT
            </summary>
        </member>
        <member name="P:Twilio.Application.FriendlyName">
            <summary>
            A human readable description of this account, up to 64 characters long. By default the FriendlyName is your email address.
            </summary>
        </member>
        <member name="P:Twilio.Application.AccountSid">
            <summary>
            The unique id of the Account responsible for this phone number.
            </summary>
        </member>
        <member name="P:Twilio.Application.ApiVersion">
            <summary>
            Calls to this phone number will start a new TwiML session with this API version.
            </summary>
        </member>
        <member name="P:Twilio.Application.VoiceCallerIdLookup">
            <summary>
            Look up the caller's caller-ID name from the CNAM database (additional charges apply)
            </summary>
        </member>
        <member name="P:Twilio.Application.VoiceUrl">
            <summary>
            The URL Twilio will request when this phone number receives a call.
            </summary>
        </member>
        <member name="P:Twilio.Application.VoiceMethod">
            <summary>
            The HTTP method Twilio will use when requesting the above Url. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.Application.VoiceFallbackUrl">
            <summary>
            The URL that Twilio will request if an error occurs retrieving or executing the TwiML requested by Url.
            </summary>
        </member>
        <member name="P:Twilio.Application.VoiceFallbackMethod">
            <summary>
            The HTTP method Twilio will use when requesting the VoiceFallbackUrl. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.Application.StatusCallback">
            <summary>
            The URL that Twilio will request to pass status parameters (such as call ended) to your application.
            </summary>
        </member>
        <member name="P:Twilio.Application.SmsStatusCallback">
            <summary>
            The URL that Twilio will request to pass status parameters (such as call ended) to your application.
            </summary>
        </member>
        <member name="P:Twilio.Application.StatusCallbackMethod">
            <summary>
            Twilio will make a POST request to this URL to pass status parameters (such as sent or failed) to your application if you specify this application's Sid as the ApplicationSid on an outgoing SMS request.
            </summary>
        </member>
        <member name="P:Twilio.Application.SmsUrl">
            <summary>
            The URL Twilio will request when receiving an incoming SMS message to this number.
            </summary>
        </member>
        <member name="P:Twilio.Application.SmsMethod">
            <summary>
            The HTTP method Twilio will use when making requests to the SmsUrl. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.Application.SmsFallbackUrl">
            <summary>
            The URL that Twilio will request if an error occurs retrieving or executing the TwiML from SmsUrl.
            </summary>
        </member>
        <member name="P:Twilio.Application.SmsFallbackMethod">
            <summary>
            The HTTP method Twilio will use when requesting the above URL. Either GET or POST.
            </summary>
        </member>
        <member name="T:Twilio.ApplicationResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.ApplicationResult.Applications">
            <summary>
            List of Application instances returned by API
            </summary>
        </member>
        <member name="T:Twilio.ApplicationOptions">
            <summary>
            Available options when creating a Twilio Application via the API. 
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.VoiceUrl">
            <summary>
            The URL that Twilio should request when somebody dials the a phone number using this application.
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.VoiceMethod">
            <summary>
            The HTTP method that should be used to request the VoiceUrl. Must be either GET or POST. Defaults to POST.
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.VoiceFallbackUrl">
            <summary>
            A URL that Twilio will request if an error occurs requesting or executing the TwiML at Url.
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method that should be used to request the VoiceFallbackUrl. Either GET or POST. Defaults to POST.
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.SmsUrl">
            <summary>
            The URL that Twilio should request when somebody sends an SMS to the phone number using this application.
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.SmsMethod">
            <summary>
            The HTTP method that should be used to request the SmsUrl. Must be either GET or POST. Defaults to POST.
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.SmsFallbackUrl">
            <summary>
            A URL that Twilio will request if an error occurs requesting or executing the TwiML defined by SmsUrl.
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.SmsFallbackMethod">
            <summary>
            The HTTP method that should be used to request the SmsFallbackUrl. Must be either GET or POST. Defaults to POST.
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.VoiceCallerIdLookup">
            <summary>
            Do a lookup of a caller's name from the CNAM database and post it to your app. Either true or false. Defaults to false.
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.StatusCallback">
            <summary>
            The URL that Twilio will request to pass status parameters (such as call ended) to your application.
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.SmsStatusCallback">
            <summary>
            Twilio will make a POST request to this URL to pass status parameters (such as sent or failed) to your application if you specify this application's Sid as the ApplicationSid on an outgoing SMS request.
            </summary>
        </member>
        <member name="P:Twilio.ApplicationOptions.StatusCallbackMethod">
            <summary>
            The HTTP method Twilio will use to make requests to the StatusCallback URL. Either GET or POST. Defaults to POST.
            </summary>
        </member>
        <member name="T:Twilio.AvailablePhoneNumber">
            <summary>
            An AvailablePhoneNumber instance resource represents a single AvailablePhoneNumber.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumber.FriendlyName">
            <summary>
            A nicely-formatted version of the phone number.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumber.PhoneNumber">
            <summary>
            The phone number, in E.164 (i.e. "+1") format.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumber.Lata">
            <summary>
            The LATA of this phone number.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumber.RateCenter">
            <summary>
            The rate center of this phone number.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumber.Latitude">
            <summary>
            The latitude coordinate of this phone number.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumber.Longitude">
            <summary>
            The longitude coordinate of this phone number.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumber.Region">
            <summary>
            The two-letter state or province abbreviation of this phone number.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumber.PostalCode">
            <summary>
            The postal (zip) code of this phone number.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumber.IsoCountry">
            <summary>
            The ISO country code of this phone number.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumber.AddressRequirements">
            <summary>
            Indicates whether this number requires an associated physical address.
            One of "any", "local", "foreign", or "none".
            </summary>
            XXX does this want to be an enum of some sort?
        </member>
        <member name="P:Twilio.AvailablePhoneNumber.Capabilities">
            <summary>
            Gets or sets the capabilities.
            </summary>
        </member>
        <member name="T:Twilio.AvailablePhoneNumberResult">
            <summary>
            Twilio API call result
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberResult.AvailablePhoneNumbers">
            <summary>
            List of AvailablePhoneNumbers search results
            </summary>
        </member>
        <member name="T:Twilio.AuthorizedConnectApp">
            <summary>
            An AuthorizedConnectApp instance
            </summary>
        </member>
        <member name="P:Twilio.AuthorizedConnectApp.Sid">
            <summary>
            A 34 character string that uniquely identifies this authorized app.
            </summary>
        </member>
        <member name="P:Twilio.AuthorizedConnectApp.AccountSid">
            <summary>
            The AccountSid of the SubAccount this Connect App has access to.
            </summary>
        </member>
        <member name="P:Twilio.AuthorizedConnectApp.DateCreated">
            <summary>
            The date that this account was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.AuthorizedConnectApp.DateUpdated">
            <summary>
            The date that this account was last updated, given in as GMT
            </summary>
        </member>
        <member name="P:Twilio.AuthorizedConnectApp.Permissions">
            <summary>
            The set of permissions that you have authorized for this Connect App. Valid permisisons are get-all or post-all.
            </summary>
        </member>
        <member name="P:Twilio.AuthorizedConnectApp.FriendlyName">
            <summary>
            A human readable name for the Connect App.
            </summary>
        </member>
        <member name="P:Twilio.AuthorizedConnectApp.Description">
            <summary>
            A more detailed human readable description of the Connect App.
            </summary>
        </member>
        <member name="P:Twilio.AuthorizedConnectApp.CompanyName">
            <summary>
            The company name set for this Connect App.
            </summary>
        </member>
        <member name="P:Twilio.AuthorizedConnectApp.HomepageUrl">
            <summary>
            The public URL for this Connect App.
            </summary>
        </member>
        <member name="T:Twilio.AuthorizedConnectAppResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.AuthorizedConnectAppResult.AuthorizedConnectApps">
            <summary>
            List of AuthorizedConnectApp instances returned by API
            </summary>
        </member>
        <member name="T:Twilio.ConnectApp">
            <summary>
            An ConnectApp instance resource.
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.Sid">
            <summary>
            A 34 character string that uniquely identifies this account.
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.AccountSid">
            <summary>
            The AccountSid of the SubAccount this Connect App has access to.
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.DateCreated">
            <summary>
            The date that this account was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.DateUpdated">
            <summary>
            The date that this account was last updated, given in as GMT
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.Permissions">
            <summary>
            The set of permissions that you have authorized for this Connect App. Valid permisisons are get-all or post-all.
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.FriendlyName">
            <summary>
            A human readable name for the Connect App.
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.Description">
            <summary>
            A more detailed human readable description of the Connect App.
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.CompanyName">
            <summary>
            The company name set for this Connect App.
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.HomepageUrl">
            <summary>
            The public URL where users can obtain more information about this Connect App.
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.AuthorizeRedirectUrl">
            <summary>
            The URL the user's browser will redirect to after Twilio authenticates the user and obtains authorization for this Connect App.
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.DeauthorizeCallbackUrl">
            <summary>
            The URL to which Twilio will send a request when a user de-authorizes this Connect App.
            </summary>
        </member>
        <member name="P:Twilio.ConnectApp.DeauthorizeCallbackMethod">
            <summary>
            The HTTP method to be used when making a request to the DeauthorizeCallbackUrl.
            </summary>
        </member>
        <member name="T:Twilio.ConnectAppResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.ConnectAppResult.ConnectApps">
            <summary>
            List of ConnectApp instances returned by API
            </summary>
        </member>
        <member name="P:Twilio.CredentialListMapping.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.CredentialListMapping.FriendlyName">
            <summary>
            The friendly name of this credential list mapping
            </summary>
        </member>
        <member name="T:Twilio.MessageResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.MessageResult.Messages">
            <summary>
            List of Message resources returned by API
            </summary>  
        </member>
        <member name="T:Twilio.DequeueStatus">
            <summary>
            Status of a Dequeue request
            </summary>
        </member>
        <member name="F:Twilio.DequeueStatus.Success">
            <summary>
            The Dequeue was successful
            </summary>
        </member>
        <member name="F:Twilio.DequeueStatus.Failed">
            <summary>
            The Dequeue failed
            </summary>
        </member>
        <member name="P:Twilio.Media.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Media.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Media.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Media.AccountSid">
            <summary>
            The unique id of the Account that sent this Message.
            </summary>
        </member>
        <member name="P:Twilio.Media.ParentSid">
            <summary>
            A 34 character string that uniquely identifies the parent message of
            this media.
            </summary>
        </member>
        <member name="P:Twilio.Media.ContentType">
            <summary>
            The content type of the media (usually for jpg or gif extensions)
            </summary>
        </member>
        <member name="T:Twilio.MediaResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.MediaResult.Medias">
            <summary>
            List of Media resources returned by API
            </summary>  
        </member>
        <member name="P:Twilio.Message.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Message.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Message.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Message.DateSent">
            <summary>
            The date that the Message was sent
            </summary>
        </member>
        <member name="P:Twilio.Message.AccountSid">
            <summary>
            The unique id of the Account that sent this Message.
            </summary>
        </member>
        <member name="P:Twilio.Message.From">
            <summary>
            The phone number that initiated the message in E.164 format. For
            incoming messages, this will be the remote phone. For outgoing messages,
            this will be one of your Twilio phone numbers.
            </summary>
        </member>
        <member name="P:Twilio.Message.To">
            <summary>
            The phone number that received the message in E.164 format. For 
            incoming messages, this will be one of your Twilio phone numbers. 
            For outgoing messages, this will be the remote phone.
            </summary>
        </member>
        <member name="P:Twilio.Message.Body">
            <summary>
            The text body of the Message.
            </summary>
        </member>
        <member name="P:Twilio.Message.NumSegments">
            <summary>
            The number of body segments associated with this message. In
            a common case, an ASCII message of 180 characters will be split into
            one segment with 160 characters and one with 20 characters, so
            NumSegments would be 2 for that message.
            </summary>
        </member>
        <member name="P:Twilio.Message.NumImages">
            <summary>
            The number of images associated with this MMS
            </summary>
        </member>
        <member name="P:Twilio.Message.Status">
            <summary>
            The status of this Message. Either queued, sending, sent, or failed.
            </summary>
        </member>
        <member name="P:Twilio.Message.Direction">
            <summary>
            The direction of this Message. incoming for incoming messages,
            outbound-api for messages initiated via the REST API, outbound-call
            for messages initiated during a call or outbound-reply for messages
            initiated in response to an incoming Message.
            </summary>
        </member>
        <member name="P:Twilio.Message.Price">
            <summary>
            The amount billed for the Message.
            </summary>
        </member>
        <member name="P:Twilio.Message.ApiVersion">
            <summary>
            The version of the Twilio API used to process the Message.
            </summary>
        </member>
        <member name="P:Twilio.Message.ErrorCode">
            <summary>
            The error code of this message. If the message was unable to be delivered
            this property will contain the error code.  Error codes are listed in
            the Message docs: https://www.twilio.com/docs/api/rest/message.
            </summary>
        </member>
        <member name="P:Twilio.Message.ErrorMessage">
            <summary>
            The error message for this message. If the message was unable to be delivered
            this property will contain the error message.
            </summary>
        </member>
        <member name="T:Twilio.MessageListRequest">
            <summary>
            Search filter options for a list of Messages 
            </summary>
        </member>
        <member name="P:Twilio.MessageListRequest.From">
            <summary>
            Only show messages from this phone number.
            </summary>
        </member>
        <member name="P:Twilio.MessageListRequest.To">
            <summary>
            Only show messages to this phone number.
            </summary>
        </member>
        <member name="P:Twilio.MessageListRequest.DateSent">
            <summary>
            Only show messages that were sent on this date
            </summary>
        </member>
        <member name="P:Twilio.MessageListRequest.DateSentComparison">
            <summary>
            Comparison type for sent date
            </summary>
        </member>
        <member name="P:Twilio.MessageListRequest.PageNumber">
            <summary>
            What page number to start retrieving results from
            </summary>
        </member>
        <member name="P:Twilio.MessageListRequest.Count">
            <summary>
            How many results to retrieve
            </summary>
        </member>
        <member name="T:Twilio.OutgoingCallerIdOptions">
            <summary>
            Available options when verifying a new Outgoing Caller ID. 
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerIdOptions.FriendlyName">
            <summary>
            A human readable description for the new caller ID with maximum length 64 characters. Defaults to a nicely formatted version of the number.
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerIdOptions.CallDelay">
            <summary>
            The number of seconds, between 0 and 60, to delay before initiating the validation call. Defaults to 0.
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerIdOptions.Extension">
            <summary>
            Digits to dial after connecting the validation call.
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerIdOptions.StatusCallback">
            <summary>
            A URL that Twilio will request when the verification call ends to notify your app if the verification process was successful or not.
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerIdOptions.StatusCallbackMethod">
            <summary>
            The HTTP method Twilio should use when requesting the above URL. Defaults to POST.
            </summary>
        </member>
        <member name="T:Twilio.Queue">
            <summary>
            An Queue instance resource
            </summary>
        </member>
        <member name="P:Twilio.Queue.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Queue.FriendlyName">
            <summary>
            A user provided string that identifies this queue.
            </summary>
        </member>
        <member name="P:Twilio.Queue.CurrentSize">
            <summary>
            A count of the current number of calls in the Queue
            </summary>
        </member>
        <member name="P:Twilio.Queue.AverageWaitTime">
            <summary>
            The average (in seconds) that all calls in the queue have waited
            </summary>
        </member>
        <member name="P:Twilio.Queue.MaxSize">
            <summary>
            The maximum number of calls allowed in this queue
            </summary>
        </member>
        <member name="P:Twilio.Queue.DateCreated">
            <summary>
            The date that this resource was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.Queue.DateUpdated">
            <summary>
            The date that this resource was last updated, given as GMT 
            </summary>
        </member>
        <member name="T:Twilio.QueueMember">
            <summary>
            A QueueMember represents a single member of a Twilio Queue
            </summary>
        </member>
        <member name="P:Twilio.QueueMember.CallSid">
            <summary>
            A 34 character string that identifies the caller
            </summary>
        </member>
        <member name="P:Twilio.QueueMember.DateEnqueued">
            <summary>
            The DateTime when the caller was enqueued
            </summary>
        </member>
        <member name="P:Twilio.QueueMember.WaitTime">
            <summary>
            The time in seconds that the caller has been queued
            </summary>
        </member>
        <member name="P:Twilio.QueueMember.Position">
            <summary>
            The callers current position in the Queue
            </summary>
        </member>
        <member name="T:Twilio.QueueMemberResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.QueueMemberResult.QueueMembers">
            <summary>
            List of QueueMember instances returned by the API
            </summary>
        </member>
        <member name="T:Twilio.QueueResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.QueueResult.Queues">
            <summary>
            List of Queue instances returned by the API
            </summary>
        </member>
        <member name="T:Twilio.SmsShortCodeResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.SmsShortCodeResult.ShortCodes">
            <summary>
            List of ShortCode resources returned by API
            </summary>
        </member>
        <member name="T:Twilio.DeleteStatus">
            <summary>
            The status of the Delete request
            </summary>
        </member>
        <member name="F:Twilio.DeleteStatus.Success">
            <summary>
            The Delete was successful
            </summary>
        </member>
        <member name="F:Twilio.DeleteStatus.Failed">
            <summary>
            The Delete failed
            </summary>
        </member>
        <member name="T:Twilio.SMSShortCode">
            <summary>
            Represents a single ShortCode Instance resource
            </summary>
        </member>
        <member name="P:Twilio.SMSShortCode.Sid">
            <summary>
            A 34 character string that uniquely idetifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.SMSShortCode.AccountSid">
            <summary>
            The unique id of the Account that owns this short code.
            </summary>
        </member>
        <member name="P:Twilio.SMSShortCode.FriendlyName">
            <summary>
            A human readable descriptive text for this resource, up to 64 characters long. By default, the FriendlyName is just the short code.
            </summary>
        </member>
        <member name="P:Twilio.SMSShortCode.ShortCode">
            <summary>
            The short code. e.g., 894546.
            </summary>
        </member>
        <member name="P:Twilio.SMSShortCode.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.SMSShortCode.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="P:Twilio.SMSShortCode.SmsUrl">
            <summary>
            The URL Twilio will request when receiving an incoming SMS message to this short code.
            </summary>
        </member>
        <member name="P:Twilio.SMSShortCode.SmsMethod">
            <summary>
            The HTTP method Twilio will use when making requests to the SmsUrl. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.SMSShortCode.SmsFallbackUrl">
            <summary>
            The URL that Twilio will request if an error occurs retrieving or executing the TwiML from SmsUrl.
            </summary>
        </member>
        <member name="P:Twilio.SMSShortCode.SmsFallbackMethod">
            <summary>
            The HTTP method Twilio will use when requesting the above URL. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.SMSShortCode.ApiVersion">
            <summary>
            SMSs to this short code will start a new TwiML session with this API version.
            </summary>
        </member>
        <member name="T:Twilio.UsageRecord">
            <summary>
            The UsageRecords resource provides usage data during any time period and by any usage category
            </summary>
        </member>
        <member name="P:Twilio.UsageRecord.AccountSid">
            <summary>
            The Account that accrued the usage
            </summary>
        </member>
        <member name="P:Twilio.UsageRecord.Category">
            <summary>
            The category of usage. See Usage Categories.
            </summary>
        </member>
        <member name="P:Twilio.UsageRecord.Description">
            <summary>
            A human-readable description of the usage category
            </summary>
        </member>
        <member name="P:Twilio.UsageRecord.StartDate">
            <summary>
            The first date for which usage is included in this UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.UsageRecord.EndDate">
            <summary>
            The last date for which usage is included in this UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.UsageRecord.Count">
            <summary>
            The number of usage events (e.g. the number of calls)
            </summary>
        </member>
        <member name="P:Twilio.UsageRecord.CountUnit">
            <summary>
            The units in which Count is measured. For example calls for calls, messages for SMS
            </summary>
        </member>
        <member name="P:Twilio.UsageRecord.Usage">
            <summary>
            The amount of usage (e.g. the number of call minutes).
            </summary>
            <remarks>This is frequently the same as Count, but may be different for certain usage categories like calls, where Count represents the number of calls and Usage represents the number of minutes</remarks>
        </member>
        <member name="P:Twilio.UsageRecord.UsageUnit">
            <summary>
            The units in which Usage is measured. For example minutes for calls, messages for SMS
            </summary>
        </member>
        <member name="P:Twilio.UsageRecord.Price">
            <summary>
            The total price of the usage, in USD
            </summary>
        </member>
        <member name="P:Twilio.UsageRecord.PriceUnits">
            <summary>
            The currency in which Price is measured. Always USD
            </summary>
        </member>
        <member name="T:Twilio.UsageResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.UsageResult.UsageRecords">
            <summary>
            List of Usage resources returned by API
            </summary>
        </member>
        <member name="T:Twilio.UsageTrigger">
            <summary>
            Usage triggers are webhooks that notify your application of usage thresholds
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.Sid">
            <summary>
            The trigger's unique Sid
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.DateCreated">
            <summary>
            The date the trigger was created
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.DateUpdated">
            <summary>
            The date the trigger was last updated
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.AccountSid">
            <summary>
            The account this trigger monitors
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.FriendlyName">
            <summary>
            A user-specified, human-readable name for the trigger
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.Recurring">
            <summary>
            How this trigger recurs. Empty for non-recurring triggers, or one of daily, monthly, or yearly. A trigger will only fire once during each recurring period
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.UsageCategory">
            <summary>
            The usage category the trigger watches. One of the supported usage categories
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.TriggerBy">
            <summary>
            The field in the UsageRecord that fires the trigger. One of count, usage, or price, as described in the UsageRecords documentation
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.TriggerValue">
            <summary>
            The value at which the trigger will fire. Must be a positive numeric value
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.CurrentValue">
            <summary>
            The current value of the field the trigger is watching
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.UsageRecordUri">
            <summary>
            The URI of the UsageRecord this trigger is watching
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.CallbackUrl">
            <summary>
            Twilio will make a request to this url when the trigger fires
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.CallbackMethod">
            <summary>
            The HTTP method Twilio will use when making a request to the CallbackUrl. GET or POST
            </summary>
        </member>
        <member name="P:Twilio.UsageTrigger.DateFired">
            <summary>
            The date the trigger was last fired
            </summary>
        </member>
        <member name="T:Twilio.UsageTriggerOptions">
            <summary>
            Available options when creating new Usage Triggers via the API
            </summary>
        </member>
        <member name="P:Twilio.UsageTriggerOptions.UsageCategory">
            <summary>
            The trigger will watch this usage category
            </summary>
        </member>
        <member name="P:Twilio.UsageTriggerOptions.TriggerValue">
            <summary>
            The trigger will fire when usage reaches this value
            </summary>
        </member>
        <member name="P:Twilio.UsageTriggerOptions.CallbackUrl">
            <summary>
            Twilio will make a request to this url when the trigger fires
            </summary>
        </member>
        <member name="P:Twilio.UsageTriggerOptions.FriendlyName">
            <summary>
            A human readable description of the new trigger. Maximum 64 characters
            </summary>
        </member>
        <member name="P:Twilio.UsageTriggerOptions.TriggerBy">
            <summary>
            The field in the UsageRecord that will fire the trigger. One of 'count', 'usage', or 'price' as described in the UsageRecords documentation. The default is 'usage'.
            </summary>        
        </member>
        <member name="P:Twilio.UsageTriggerOptions.Recurring">
            <summary>
            The interval the trigger will count over. Must be one of: 'daily', 'monthly', or 'yearly'. Omit this to create a non-recurring trigger.
            </summary>
        </member>
        <member name="P:Twilio.UsageTriggerOptions.CallbackMethod">
            <summary>
            Twilio will use this HTTP method when making a request to the CallbackUrl. GET or POST. The default is POST.
            </summary>
        </member>
        <member name="T:Twilio.UsageTriggerResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.UsageTriggerResult.UsageTriggers">
            <summary>
            List of UsageTrigger resources returned by API
            </summary>
        </member>
        <member name="T:Twilio.Call">
            <summary>
            An Call instance resource represents a single Twilio Call.
            </summary>
        </member>
        <member name="P:Twilio.Call.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Call.ParentCallSid">
            <summary>
            A 34 character string that uniquely identifies the call that created this leg.
            </summary>
        </member>
        <member name="P:Twilio.Call.DateCreated">
            <summary>
            The date that this resource was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.Call.DateUpdated">
            <summary>
            The date that this resource was last updated, given as GMT 
            </summary>
        </member>
        <member name="P:Twilio.Call.AccountSid">
            <summary>
            The unique Sid of the Account responsible for creating this call.
            </summary>
        </member>
        <member name="P:Twilio.Call.To">
            <summary>
            The phone number that received this call. e.g., +16175551212 (E.164 format)
            </summary>
        </member>
        <member name="P:Twilio.Call.From">
            <summary>
            The phone number that made this call. e.g., +16175551212 (E.164 format)
            </summary>
        </member>
        <member name="P:Twilio.Call.PhoneNumberSid">
            <summary>
            If the call was inbound, this is the Sid of the IncomingPhoneNumber that received the call. If the call was outbound, it is the Sid of the OutgoingCallerId from which the call was placed.
            </summary>
        </member>
        <member name="P:Twilio.Call.Status">
            <summary>
            A string representing the status of the call. May be queued, ringing, in-progress, completed, failed, busy or no-answer.
            </summary>
        </member>
        <member name="P:Twilio.Call.StartTime">
            <summary>
            The start time of the call, given as GMT in RFC 2822 format. Empty if the call has not yet been dialed.
            </summary>
        </member>
        <member name="P:Twilio.Call.EndTime">
            <summary>
            The end time of the call, given as GMT in RFC 2822 format. Empty if the call did not complete successfully.
            </summary>
        </member>
        <member name="P:Twilio.Call.Duration">
            <summary>
            The length of the call in seconds. This value is empty for busy, failed, unanswered or ongoing calls.
            </summary>
        </member>
        <member name="P:Twilio.Call.Price">
            <summary>
            The charge for this call in USD. Populated after the call is completed. May not be immediately available.
            </summary>
        </member>
        <member name="P:Twilio.Call.Direction">
            <summary>
            A string describing the direction of the call. inbound for inbound calls, outbound-api for calls initiated via the REST API or outbound-dial for calls initiated by a Dial verb.
            </summary>
        </member>
        <member name="P:Twilio.Call.AnsweredBy">
            <summary>
            If this call was initiated with answering machine detection, either human or machine. Empty otherwise.
            </summary>
        </member>
        <member name="P:Twilio.Call.ForwardedFrom">
            <summary>
            If this call was an incoming call forwarded from another number, the forwarding phone number (depends on carrier supporting forwarding). Empty otherwise.
            </summary>
        </member>
        <member name="P:Twilio.Call.CallerName">
            <summary>
            If this call was an incoming call from a phone number with Caller ID Lookup enabled, the caller's name. Empty otherwise.
            </summary>
        </member>
        <member name="T:Twilio.CallResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.CallResult.Calls">
            <summary>
            List of Calls returned from API request
            </summary>
        </member>
        <member name="T:Twilio.CallListRequest">
            <summary>
            Search filter options for Call list request
            </summary>
        </member>
        <member name="P:Twilio.CallListRequest.From">
            <summary>
            Only show calls from this phone number.
            </summary>
        </member>
        <member name="P:Twilio.CallListRequest.To">
            <summary>
            Only show calls to this phone number.
            </summary>
        </member>
        <member name="P:Twilio.CallListRequest.Status">
            <summary>
            Only show calls currently in this status. May be queued, ringing, in-progress, completed, failed, busy, or no-answer.
            </summary>
        </member>
        <member name="P:Twilio.CallListRequest.StartTime">
            <summary>
            Only show calls that started on this date
            </summary>
        </member>
        <member name="P:Twilio.CallListRequest.StartTimeComparison">
            <summary>
            Comparison type for start time
            </summary>
        </member>
        <member name="P:Twilio.CallListRequest.EndTime">
            <summary>
            Only show calls that ended on this date
            </summary>
        </member>
        <member name="P:Twilio.CallListRequest.EndTimeComparison">
            <summary>
            Comparison type for end time
            </summary>
        </member>
        <member name="P:Twilio.CallListRequest.PageNumber">
            <summary>
            What page number to start retrieving results from
            </summary>
        </member>
        <member name="P:Twilio.CallListRequest.Count">
            <summary>
            How many results to retrieve
            </summary>
        </member>
        <member name="P:Twilio.CallListRequest.ParentCallSid">
            <summary>
            Only show calls that belong to this parent call (e.g. Dial legs)
            </summary>
        </member>
        <member name="T:Twilio.CallOptions">
            <summary>
            Available options to include when initiating a phone call
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.From">
            <summary>
            The phone number to use as the caller id. Format with a '+' and country code e.g., +16175551212 (E.164 format). Must be a Twilio number or a valid outgoing caller id for your account.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.To">
            <summary>
            The number to call formatted with a '+' and country code e.g., +16175551212 (E.164 format). Twilio will also accept unformatted US numbers e.g., (415) 555-1212, 415-555-1212.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.Url">
            <summary>
            The fully qualified URL that should be consulted when the call connects. Just like when you set a URL for your inbound calls.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.ApplicationSid">
            <summary>
            The 34 character sid of the application Twilio should use to handle this phone call. If this parameter is present, Twilio will ignore all of the voice URLs passed and use the URLs set on the application.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.StatusCallback">
            <summary>
            A URL that Twilio will request when the call ends to notify your app.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.StatusCallbackMethod">
            <summary>
            The HTTP method Twilio should use when requesting the above URL. Defaults to POST.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.Method">
            <summary>
            The HTTP method Twilio should use when requesting the required Url parameter's value above. Defaults to POST.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.SendDigits">
            <summary>
            A string of keys to dial after connecting to the number. Valid digits in the string include: any digit (0-9), '#' and '*'. For example, if you connected to a company phone number, and wanted to dial extension 1234 and then the pound key, use SendDigits=1234#. Remember to URL-encode this string, since the '#' character has special meaning in a URL.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.IfMachine">
            <summary>
            Tell Twilio to try and determine if a machine (like voicemail) or a human has answered the call. Possible values are Continue and Hangup.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.Timeout">
            <summary>
            The integer number of seconds that Twilio should allow the phone to ring before assuming there is no answer. Default is 60 seconds, the maximum is 999 seconds. Note, you could set this to a low value, such as 15, to hangup before reaching an answering machine or voicemail.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.FallbackUrl">
            <summary>
            A URL that Twilio will request if an error occurs requesting or executing the TwiML at Url.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.FallbackMethod">
            <summary>
            The HTTP method that Twilio should use to request the FallbackUrl. Must be either GET or POST. Defaults to POST.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.Record">
            <summary>
            Set this parameter to 'true' to record the entirety of a phone call. The RecordingUrl will be sent to the StatusCallback URL. Defaults to 'false'.
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.SipAuthUsername">
            <summary>
            If this is a Sip call, set the authorization username for your Sip
            endpoint
            </summary>
        </member>
        <member name="P:Twilio.CallOptions.SipAuthPassword">
            <summary>
            If this is a Sip call, set the authorization password for your Sip
            endpoint
            </summary>
        </member>
        <member name="T:Twilio.AvailablePhoneNumberListRequest">
            <summary>
            Search filter options for AvailablePhoneNumber search
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.AreaCode">
            <summary>
            Find phone numbers in the specified Area Code. Only available for North American numbers.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.Contains">
            <summary>
            A pattern to match phone numbers on. Valid characters are '*' and [0-9a-zA-Z]. The '*' character will match any single digit.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.InRegion">
            <summary>
            Limit results to a particular region (i.e. State/Province). Given a phone number, search within the same Region as that number.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.InPostalCode">
            <summary>
            Limit results to a particular postal code. Given a phone number, search within the same postal code as that number.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.NearLatLong">
            <summary>
            Given a latitude/longitude pair lat,long find geographically close numbers within Distance miles.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.Distance">
            <summary>
            Specifies the search radius for a Near- query in miles. If not specified this defaults to 25 miles.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.NearNumber">
            <summary>
            Given a phone number, find a geographically close number within Distance miles. Distance defaults to 25 miles.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.InLata">
            <summary>
            Limit results to a specific Local access and transport area (LATA). Given a phone number, search within the same LATA as that number.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.InRateCenter">
            <summary>
            Limit results to a specific rate center, or given a phone number search within the same rate center as that number. Requires InLata to be set as well.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.SmsEnabled">
            <summary>
            Set to 'true' or 'false'. If true, the response will contain SMS
            enabled phone numbers. The voice capability is independent of
            the SMS capability
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.VoiceEnabled">
            <summary>
            Set to 'true' or 'false'. If true, the response will contain Voice 
            enabled phone numbers. The SMS capability is independent of the 
            Voice capability.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.MmsEnabled">
            <summary>
            Set to 'true' or 'false'. If true, the response will contain MMS 
            enabled phone numbers. The MMS capability is independent of the
            SMS capability.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.ExcludeAllAddressRequired">
            <summary>
            Indicates whether the response includes phone numbers which require any Address.
            Defaults to 'false', meaning results could include phone numbers with an Address
            required.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.ExcludeForeignAddressRequired">
            <summary>
            Indicates whether the response includes phone numbers which require a local Address.
            Defaults to 'false', meaning results could include phone numbers with a local Address required.
            </summary>
        </member>
        <member name="P:Twilio.AvailablePhoneNumberListRequest.ExcludeLocalAddressRequired">
            <summary>
            Indicates whether the response includes phone numbers which require a foreign Address.
            Defaults to 'false', meaning results could include phone numbers with a foreign Address required.
            </summary>
        </member>
        <member name="T:Twilio.ComparisonType">
            <summary>
            Available types of range selections
            </summary>
        </member>
        <member name="F:Twilio.ComparisonType.EqualTo">
            <summary>
            Selects items equal to value
            </summary>
        </member>
        <member name="F:Twilio.ComparisonType.GreaterThanOrEqualTo">
            <summary>
            Selects items greater than or equal to value
            </summary>
        </member>
        <member name="F:Twilio.ComparisonType.LessThanOrEqualTo">
            <summary>
            Selects items less than or equal to value
            </summary>
        </member>
        <member name="T:Twilio.Conference">
            <summary>
            An Conference instance resource represents a single Twilio Conference.
            </summary>
        </member>
        <member name="P:Twilio.Conference.Sid">
            <summary>
            A 34 character string that uniquely identifies this conference.
            </summary>
        </member>
        <member name="P:Twilio.Conference.AccountSid">
            <summary>
            The unique id of the Account responsible for creating this conference.
            </summary>
        </member>
        <member name="P:Twilio.Conference.FriendlyName">
            <summary>
            A user provided string that identifies this conference room.
            </summary>
        </member>
        <member name="P:Twilio.Conference.Status">
            <summary>
            A string representing the status of the conference. May be init, in-progress, or completed.
            </summary>
        </member>
        <member name="P:Twilio.Conference.DateCreated">
            <summary>
            The date that this conference was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.Conference.DateUpdated">
            <summary>
            The date that this conference was last updated, given as GMT
            </summary>
        </member>
        <member name="T:Twilio.ConferenceResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.ConferenceResult.Conferences">
            <summary>
            List of Conference instances returned from API call
            </summary>
        </member>
        <member name="T:Twilio.ConferenceListRequest">
            <summary>
            Options for filtering list of Conference instances from API
            </summary>
        </member>
        <member name="P:Twilio.ConferenceListRequest.Status">
            <summary>
            Only show conferences currently in with this status. May be init, in-progress, or completed.
            </summary>
        </member>
        <member name="P:Twilio.ConferenceListRequest.FriendlyName">
            <summary>
            List conferences who's FriendlyName is the exact match of this string.
            </summary>
        </member>
        <member name="P:Twilio.ConferenceListRequest.DateCreated">
            <summary>
            Only show conferences that started on this date. For comparison options, specify DateCreatedComparison value.
            </summary>
        </member>
        <member name="P:Twilio.ConferenceListRequest.DateCreatedComparison">
            <summary>
            Type of comparison to perform with DateCreated filter parameter
            </summary>
        </member>
        <member name="P:Twilio.ConferenceListRequest.DateUpdated">
            <summary>
            Only show conferences that were last updated on this date. For comparison options, specify DateUpdatedComparison value.
            </summary>
        </member>
        <member name="P:Twilio.ConferenceListRequest.DateUpdatedComparison">
            <summary>
            Type of comparison to perform with DateUpdated filter parameter
            </summary>
        </member>
        <member name="P:Twilio.ConferenceListRequest.PageNumber">
            <summary>
            Which page to view. Zero-indexed, so the first page is 0. The default is 0.
            </summary>
        </member>
        <member name="P:Twilio.ConferenceListRequest.Count">
            <summary>
            How many resources to return in each list page. The default is 50, and the maximum is 1000.
            </summary>
        </member>
        <member name="T:Twilio.Sandbox">
            <summary>
            An Call instance resource represents a single Twilio Call.
            </summary>
        </member>
        <member name="P:Twilio.Sandbox.AccountSid">
            <summary>
            The unique Sid of the Account responsible for creating this call.
            </summary>
        </member>
        <member name="P:Twilio.Sandbox.Pin">
            <summary>
            An 8 digit number that gives access to this sandbox.
            </summary>
        </member>
        <member name="P:Twilio.Sandbox.PhoneNumber">
            <summary>
            The phone number of the sandbox. Formatted with a '+' and country code e.g., +16175551212 (E.164 format).
            </summary>
        </member>
        <member name="P:Twilio.Sandbox.VoiceUrl">
            <summary>
            The URL Twilio will request when the sandbox number is called.
            </summary>
        </member>
        <member name="P:Twilio.Sandbox.VoiceMethod">
            <summary>
            The HTTP method to use when requesting the above URL. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.Sandbox.SmsUrl">
            <summary>
            The URL Twilio will request when receiving an incoming SMS message to the sandbox number.
            </summary>
        </member>
        <member name="P:Twilio.Sandbox.SmsMethod">
            <summary>
            The HTTP method to use when requesting the sms URL. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.Sandbox.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Sandbox.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="T:Twilio.HangupStyle">
            <summary>
            Options for handling call hangups
            </summary>
        </member>
        <member name="F:Twilio.HangupStyle.Canceled">
            <summary>
             Specifying canceled will attempt to hangup calls that are queued or ringing but not affect calls already in progress.
            </summary>
        </member>
        <member name="F:Twilio.HangupStyle.Completed">
            <summary>
            Specifying completed will attempt to hang up a call even if it's already in progress.
            </summary>
        </member>
        <member name="T:Twilio.IncomingPhoneNumber">
            <summary>
            An IncomingPhoneNumber instance resource represents a single Twilio IncomingPhoneNumber.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.Sid">
            <summary>
            A 34 character string that uniquely idetifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.DateCreated">
            <summary>
            The date that this resource was created, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.DateUpdated">
            <summary>
            The date that this resource was last updated, given as GMT
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.FriendlyName">
            <summary>
            A human readable descriptive text for this resource, up to 64 characters long. By default, the FriendlyName is a nicely formatted version of the phone number.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.AccountSid">
            <summary>
            The unique id of the Account responsible for this phone number.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.PhoneNumber">
            <summary>
            The incoming phone number. e.g., +16175551212 (E.164 format)
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.ApiVersion">
            <summary>
            Calls to this phone number will start a new TwiML session with this API version.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.VoiceCallerIdLookup">
            <summary>
            Look up the caller's caller-ID name from the CNAM database (additional charges apply)
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.VoiceUrl">
            <summary>
            The URL Twilio will request when this phone number receives a call.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.VoiceMethod">
            <summary>
            The HTTP method Twilio will use when requesting the above Url. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.VoiceFallbackUrl">
            <summary>
            The URL that Twilio will request if an error occurs retrieving or executing the TwiML requested by Url.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.VoiceFallbackMethod">
            <summary>
            The HTTP method Twilio will use when requesting the VoiceFallbackUrl. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.StatusCallback">
            <summary>
            The URL that Twilio will request to pass status parameters (such as call ended) to your application.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.StatusCallbackMethod">
            <summary>
            The HTTP method Twilio will use to make requests to the StatusCallbackUrl. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.SmsUrl">
            <summary>
            The URL Twilio will request when receiving an incoming SMS message to this number.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.SmsMethod">
            <summary>
            The HTTP method Twilio will use when making requests to the SmsUrl. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.SmsFallbackUrl">
            <summary>
            The URL that Twilio will request if an error occurs retrieving or executing the TwiML from SmsUrl.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.SmsFallbackMethod">
            <summary>
            The HTTP method Twilio will use when requesting the above URL. Either GET or POST.
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.SmsApplicationSid">
            <summary>
            The ApplicationSid assigned to this number for SMS requests
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.VoiceApplicationSid">
            <summary>
            The ApplicationSid assigned to this number for voice requests
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumber.AddressRequirements">
            <summary>
            Indicates whether this number requires an associated physical address.
            One of "any", "local", "foreign", or "none".
            </summary>
        </member>
        <member name="T:Twilio.IncomingPhoneNumberResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.IncomingPhoneNumberResult.IncomingPhoneNumbers">
            <summary>
            List of IncomingPhoneNumber instances returned by API
            </summary>
        </member>
        <member name="T:Twilio.Notification">
            <summary>
            An Notification instance resource represents a single Twilio Notification.
            </summary>
        </member>
        <member name="P:Twilio.Notification.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Notification.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.Notification.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="P:Twilio.Notification.AccountSid">
            <summary>
            The unique id of the Account responsible for this notification.
            </summary>
        </member>
        <member name="P:Twilio.Notification.CallSid">
            <summary>
            CallSid is the unique id of the call during which the notification was generated. Empty if the notification was generated by the REST API without regard to a specific phone call.
            </summary>
        </member>
        <member name="P:Twilio.Notification.ApiVersion">
            <summary>
            The version of the Twilio in use when this notification was generated.
            </summary>
        </member>
        <member name="P:Twilio.Notification.Log">
            <summary>
            An integer log level corresponding to the type of notification: 0 is ERROR, 1 is WARNING.
            </summary>
        </member>
        <member name="P:Twilio.Notification.ErrorCode">
            <summary>
            A unique error code for the error condition.
            </summary>
        </member>
        <member name="P:Twilio.Notification.MoreInfo">
            <summary>
            A URL for more information about the error condition. 
            </summary>
        </member>
        <member name="P:Twilio.Notification.MessageText">
            <summary>
            The text of the notification.
            </summary>
        </member>
        <member name="P:Twilio.Notification.MessageDate">
            <summary>
            The date the notification was actually generated. Due to buffering, this may be slightly different than the DateCreated date.
            </summary>
        </member>
        <member name="P:Twilio.Notification.RequestUrl">
            <summary>
            The URL of the resource that generated the notification. 
            If the notification was generated during a phone call: 
            This is the URL of the resource on YOUR SERVER that caused the notification. 
            If the notification was generated by your use of the REST API:
            This is the URL of the REST resource you were attempting to request on Twilio's servers.
            </summary>
        </member>
        <member name="P:Twilio.Notification.RequestMethod">
            <summary>
            The HTTP method in use for the request that generated the notification. 
            If the notification was generated during a phone call: 
            The HTTP Method use to request the resource on your server. 
            If the notification was generated by your use of the REST API: 
            This is the HTTP method used in your request to the REST resource on Twilio's servers.
            </summary>
        </member>
        <member name="P:Twilio.Notification.RequestVariables">
            <summary>
            The Twilio-generated HTTP GET or POST variables sent to your server. Alternatively, if the notification was generated by the REST API, this field will include any HTTP POST or PUT variables you sent to the REST API.
            </summary>
        </member>
        <member name="P:Twilio.Notification.ResponseHeaders">
            <summary>
            The HTTP headers returned by your server.
            </summary>
        </member>
        <member name="P:Twilio.Notification.ResponseBody">
            <summary>
            The HTTP body returned by your server.
            </summary>
        </member>
        <member name="T:Twilio.NotificationResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.NotificationResult.Notifications">
            <summary>
            List of Notification instances returned by API
            </summary>
        </member>
        <member name="T:Twilio.OutgoingCallerId">
            <summary>
            An OutgoingCallerId instance resource represents a single Twilio OutgoingCallerId.
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerId.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerId.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerId.DateUpdated">
            <summary>
            The date that this resource last updated
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerId.FriendlyName">
            <summary>
            A human readable descriptive text for this resource, up to 64 characters long. By default, the FriendlyName is a nicely formatted version of the phone number.
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerId.AccountSid">
            <summary>
            The unique id of the Account responsible for this Caller Id.
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerId.PhoneNumber">
            <summary>
            The incoming phone number. Formatted with a '+' and country code e.g., +16175551212 (E.164 format).
            </summary>
        </member>
        <member name="T:Twilio.OutgoingCallerIdResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.OutgoingCallerIdResult.OutgoingCallerIds">
            <summary>
            List of OutgoingCallerId instances returned by API
            </summary>
        </member>
        <member name="T:Twilio.Participant">
            <summary>
            An Participant instance resource represents a single Twilio conference Participant.
            </summary>
        </member>
        <member name="P:Twilio.Participant.ConferenceSid">
            <summary>
            A 34 character string that identifies the conference this participant is in
            </summary>
        </member>
        <member name="P:Twilio.Participant.AccountSid">
            <summary>
            The unique id of the Account that created this conference
            </summary>
        </member>
        <member name="P:Twilio.Participant.CallSid">
            <summary>
            A 34 character string that uniquely identifies the call that is connected to this conference
            </summary>
        </member>
        <member name="P:Twilio.Participant.Muted">
            <summary>
            true if this participant is currently muted. false otherwise.
            </summary>
        </member>
        <member name="P:Twilio.Participant.StartConferenceOnEnter">
            <summary>
            Was the startConferenceOnEnter attribute set on this participant (true or false)?
            </summary>
        </member>
        <member name="P:Twilio.Participant.EndConferenceOnExit">
            <summary>
            Was the endConferenceOnExit attribute set on this participant (true or false)?
            </summary>
        </member>
        <member name="P:Twilio.Participant.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Participant.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="T:Twilio.ParticipantResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.ParticipantResult.Participants">
            <summary>
            List of conference Participant resources returned by API
            </summary>
        </member>
        <member name="T:Twilio.PhoneNumberOptions">
            <summary>
            Available options when purchasing phone numbers via the API. NOTE: you can only request phone numbers with a full Twilio account, not in the Twilio Free Trial. If you would like to buy a Twilio phone number, you must upgrade your account.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.AccountSid">
            <summary>
            The AccountSid to assign this number to. Only used for moving phone numbers betweeen subaccounts.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.ApiVersion">
            <summary>
            The Twilio REST API version to use for incoming calls made to this number.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.AreaCode">
            <summary>
            The area code in which you'd like a new incoming phone number. Any three digit, US area code is valid. Twilio will provision a random phone number within this area code for you. You must include either this or a PhoneNumber parameter to have your POST succeed.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.PhoneNumber">
            <summary>
            The phone number you want to purchase. The number should be formated starting with a '+' followed by the country code and the number in E.164 format e.g., '+15105555555'. You must include either this or an AreaCode parameter to have your POST succeed.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.FriendlyName">
            <summary>
            A human readable description of the new incoming phone number. Maximum 64 characters. Defaults to a formatted version of the number.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.SmsApplicationSid">
            <summary>
            The 34 character sid of the application Twilio should use to handle SMSs sent to this number. If a SmsApplicationSid is present, Twilio will ignore all of the SMS urls above and use those set on the application.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.VoiceApplicationSid">
            <summary>
            The 34 character sid of the application Twilio should use to handle phone calls to this number. If a VoiceApplicationSid is present, Twilio will ignore all of the voice urls above and use those set on the application.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.VoiceUrl">
            <summary>
            The URL that Twilio should request when somebody dials the new phone number.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.VoiceMethod">
            <summary>
            The HTTP method that should be used to request the VoiceUrl. Must be either GET or POST. Defaults to POST.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.VoiceFallbackUrl">
            <summary>
            A URL that Twilio will request if an error occurs requesting or executing the TwiML at Url.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method that should be used to request the VoiceFallbackUrl. Either GET or POST. Defaults to POST.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.SmsUrl">
            <summary>
            The URL that Twilio should request when somebody sends an SMS to the phone number.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.SmsMethod">
            <summary>
            The HTTP method that should be used to request the SmsUrl. Must be either GET or POST. Defaults to POST.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.SmsFallbackUrl">
            <summary>
            A URL that Twilio will request if an error occurs requesting or executing the TwiML defined by SmsUrl.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.SmsFallbackMethod">
            <summary>
            The HTTP method that should be used to request the SmsFallbackUrl. Must be either GET or POST. Defaults to POST.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.VoiceCallerIdLookup">
            <summary>
            Do a lookup of a caller's name from the CNAM database and post it to your app. Either true or false. Defaults to false.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.StatusCallback">
            <summary>
            The URL that Twilio will request to pass status parameters (such as call ended) to your application.
            </summary>
        </member>
        <member name="P:Twilio.PhoneNumberOptions.StatusCallbackMethod">
            <summary>
            The HTTP method Twilio will use to make requests to the StatusCallback URL. Either GET or POST. Defaults to POST.
            </summary>
        </member>
        <member name="T:Twilio.Recording">
            <summary>
            An Recording instance resource represents a single Twilio Recording.
            </summary>
        </member>
        <member name="P:Twilio.Recording.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Recording.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Recording.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Recording.AccountSid">
            <summary>
            The unique id of the Account responsible for this recording.
            </summary>
        </member>
        <member name="P:Twilio.Recording.CallSid">
            <summary>
            The call during which the recording was made.
            </summary>
        </member>
        <member name="P:Twilio.Recording.Duration">
            <summary>
            The length of the recording, in seconds.
            </summary>
        </member>
        <member name="P:Twilio.Recording.ApiVersion">
            <summary>
            The version of the API in use during the recording.
            </summary>
        </member>
        <member name="P:Twilio.Recording.Price">
            <summary>
            The charge for this recording in USD. Populated after the recording is completed. May not be immediately available. 
            Doesn't include storage charge.
            </summary>
        </member>
        <member name="T:Twilio.RecordingResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.RecordingResult.Recordings">
            <summary>
            List of Recording instances returned by API
            </summary>
        </member>
        <member name="T:Twilio.RestException">
            <summary>
            Exceptions returned in the HTTP response body when something goes wrong.
            </summary>
        </member>
        <member name="P:Twilio.RestException.Status">
            <summary>
            The HTTP status code for the exception.
            </summary>
        </member>
        <member name="P:Twilio.RestException.MoreInfo">
            <summary>
            (Conditional) The URL of Twilio's documentation for the error code.
            </summary>
        </member>
        <member name="P:Twilio.RestException.Code">
            <summary>
            (Conditional) An error code to find help for the exception.
            </summary>
        </member>
        <member name="P:Twilio.RestException.Message">
            <summary>
            A more descriptive message regarding the exception.
            </summary>
        </member>
        <member name="T:Twilio.SMSMessage">
            <summary>
            An SMSMessage instance resource represents a single Twilio SMSMessage.
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.DateSent">
            <summary>
            The date that the SMS was sent
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.AccountSid">
            <summary>
            The unique id of the Account that sent this SMS message.
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.From">
            <summary>
            The phone number that initiated the message in E.164 format. For incoming messages, this will be the remote phone. For outgoing messages, this will be one of your Twilio phone numbers.
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.To">
            <summary>
            The phone number that received the message in E.164 format. For incoming messages, this will be one of your Twilio phone numbers. For outgoing messages, this will be the remote phone.
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.Body">
            <summary>
            The text body of the SMS message. Up to 160 characters long.
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.Status">
            <summary>
            The status of this SMS message. Either queued, sending, sent, or failed.
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.Direction">
            <summary>
            The direction of this SMS message. incoming for incoming messages, outbound-api for messages initiated via the REST API, outbound-call for messages initiated during a call or outbound-reply for messages initiated in response to an incoming SMS.
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.Price">
            <summary>
            The amount billed for the message.
            </summary>
        </member>
        <member name="P:Twilio.SMSMessage.ApiVersion">
            <summary>
            The version of the Twilio API used to process the SMS message.
            </summary>
        </member>
        <member name="T:Twilio.SmsMessageResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.SmsMessageResult.SMSMessages">
            <summary>
            List of SMSMessage resources returned by API
            </summary>
        </member>
        <member name="T:Twilio.Transcription">
            <summary>
            An Transcription instance resource represents a single Twilio Transcription.
            </summary>
        </member>
        <member name="P:Twilio.Transcription.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Transcription.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Transcription.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Transcription.AccountSid">
            <summary>
            The unique id of the Account responsible for this transcription.
            </summary>
        </member>
        <member name="P:Twilio.Transcription.Status">
            <summary>
            A string representing the status of the transcription: in-progress, completed or failed.
            </summary>
        </member>
        <member name="P:Twilio.Transcription.RecordingSid">
            <summary>
            The unique id of the Recording this Transcription was made of.
            </summary>
        </member>
        <member name="P:Twilio.Transcription.Duration">
            <summary>
            The duration of the transcribed audio, in seconds.
            </summary>
        </member>
        <member name="P:Twilio.Transcription.TranscriptionText">
            <summary>
            The text content of the transcription.
            </summary>
        </member>
        <member name="P:Twilio.Transcription.Price">
            <summary>
            The charge for this transcript in USD. Populated after the transcript is completed. Note, this value may not be immediately available.
            </summary>
        </member>
        <member name="T:Twilio.TranscriptionResult">
            <summary>
            Twilio API call result with paging information
            </summary>
        </member>
        <member name="P:Twilio.TranscriptionResult.Transcriptions">
            <summary>
            List of Transcription resources returned by API
            </summary>
        </member>
        <member name="T:Twilio.ValidationRequestResult">
            <summary>
            Result of making a request to validate an OutgoingCallerId
            </summary>
        </member>
        <member name="P:Twilio.ValidationRequestResult.AccountSid">
            <summary>
            The unique id of the Account to which the Validation Request belongs.
            </summary>
        </member>
        <member name="P:Twilio.ValidationRequestResult.CallSid">
            <summary>
            The unique id of the Call created for this validation attempt
            </summary>
        </member>
        <member name="P:Twilio.ValidationRequestResult.FriendlyName">
            <summary>
            The friendly name you provided, if any.
            </summary>
        </member>
        <member name="P:Twilio.ValidationRequestResult.PhoneNumber">
            <summary>
            The incoming phone number being validated, formatted with a '+' and country code e.g., +16175551212 (E.164 format).
            </summary>
        </member>
        <member name="P:Twilio.ValidationRequestResult.ValidationCode">
            <summary>
            The 6 digit validation code that must be entered via the phone to validate this phone number for Caller ID.
            </summary>
        </member>
    </members>
</doc>

Youez - 2016 - github.com/yon3zu
LinuXploit