<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Twilio</name>
    </assembly>
    <members>
        <member name="T:Twilio.Base.IOptions`1">
            <summary>
            Interface to wrap parameters of a resource
            </summary>
            <typeparam name="T">Resource type</typeparam>
        </member>
        <member name="M:Twilio.Base.IOptions`1.GetParams">
             <summary>
             Generate the list of parameters for the request
             </summary>
            
             <returns>List of parameters for the request</returns>
        </member>
        <member name="T:Twilio.Base.ReadOptions`1">
            <summary>
            Parameters that are passed when reading resources
            </summary>
            <typeparam name="T">Resource type</typeparam>
        </member>
        <member name="P:Twilio.Base.ReadOptions`1.PageSize">
            <summary>
            Page size to read
            </summary>
        </member>
        <member name="P:Twilio.Base.ReadOptions`1.Limit">
            <summary>
            Maximum number of records to read
            </summary>
        </member>
        <member name="M:Twilio.Base.ReadOptions`1.GetParams">
             <summary>
             Generate the list of parameters for the request
             </summary>
            
             <returns>List of parameters for the request</returns>
        </member>
        <member name="T:Twilio.Base.Page`1">
            <summary>
            Page of resources
            </summary>
            <typeparam name="T">Resource type</typeparam>
        </member>
        <member name="P:Twilio.Base.Page`1.Records">
            <summary>
            Records for this page
            </summary>
        </member>
        <member name="P:Twilio.Base.Page`1.PageSize">
            <summary>
            Page size
            </summary>
        </member>
        <member name="M:Twilio.Base.Page`1.GetFirstPageUrl(Twilio.Rest.Domain,System.String)">
            <summary>
            Generate the first page URL
            </summary>
            <param name="domain">Twilio subdomain</param>
            <param name="region">Twilio region</param>
            <returns>URL for the first page of results</returns>
        </member>
        <member name="M:Twilio.Base.Page`1.GetNextPageUrl(Twilio.Rest.Domain,System.String)">
            <summary>
            Get the next page URL
            </summary>
            <param name="domain">Twilio subdomain</param>
            <param name="region">Twilio region</param>
            <returns>URL for the next page of results</returns>
        </member>
        <member name="M:Twilio.Base.Page`1.GetPreviousPageUrl(Twilio.Rest.Domain,System.String)">
            <summary>
            Get the previous page URL
            </summary>
            <param name="domain">Twilio subdomain</param>
            <param name="region">Twilio region</param>
            <returns>URL for the previous page of results</returns>
        </member>
        <member name="M:Twilio.Base.Page`1.GetUrl(Twilio.Rest.Domain,System.String)">
            <summary>
            Get the URL for the current page
            </summary>
            <param name="domain">Twilio subdomain</param>
            <param name="region">Twilio region</param>
            <returns>URL for the current page of results</returns>
        </member>
        <member name="M:Twilio.Base.Page`1.HasNextPage">
            <summary>
            Determines if there is another page of results
            </summary>
            <returns>true if there is a next page; false otherwise</returns>
        </member>
        <member name="M:Twilio.Base.Page`1.FromJson(System.String,System.String)">
            <summary>
            Converts a JSON payload to a Page of results
            </summary>
            <param name="recordKey">JSON key where the records are</param>
            <param name="json">JSON payload</param>
            <returns>Page of results</returns>
        </member>
        <member name="T:Twilio.Base.ResourceSet`1">
             <summary>
             A collection of resources of type T
             </summary>
            
             <typeparam name="T">Resource Type</typeparam>
        </member>
        <member name="P:Twilio.Base.ResourceSet`1.AutoPaging">
            <summary>
            Automatically iterate through pages of results
            </summary>
        </member>
        <member name="M:Twilio.Base.ResourceSet`1.#ctor(Twilio.Base.Page{`0},Twilio.Base.ReadOptions{`0},Twilio.Clients.ITwilioRestClient)">
             <summary>
             Create a new resource set
             </summary>
            
             <param name="page">Page of resources</param>
             <param name="options">Read options</param>
             <param name="client">Client to make requests</param>
        </member>
        <member name="M:Twilio.Base.ResourceSet`1.GetEnumerator">
             <summary>
             Get iterator for resources
             </summary>
            
             <returns>IEnumerator of resources</returns>
        </member>
        <member name="M:Twilio.Base.ResourceSet`1.System#Collections#IEnumerable#GetEnumerator">
             <summary>
             Get iterator for resources
             </summary>
            
             <returns>IEnumerator of resources</returns>
        </member>
        <member name="T:Twilio.Clients.ITwilioRestClient">
            <summary>
            Interface for a Twilio Client
            </summary>
        </member>
        <member name="P:Twilio.Clients.ITwilioRestClient.AccountSid">
            <summary>
            Get the account sid all requests are made against
            </summary>
        </member>
        <member name="P:Twilio.Clients.ITwilioRestClient.Region">
            <summary>
            Get the region requests are made against
            </summary>
        </member>
        <member name="P:Twilio.Clients.ITwilioRestClient.HttpClient">
            <summary>
            Get the http client that makes requests
            </summary>
        </member>
        <member name="M:Twilio.Clients.ITwilioRestClient.Request(Twilio.Http.Request)">
             <summary>
             Make a request to Twilio
             </summary>
            
             <param name="request">Request to make</param>
             <returns>response of the request</returns>
        </member>
        <member name="M:Twilio.Clients.ITwilioRestClient.RequestAsync(Twilio.Http.Request)">
             <summary>
             Make a request to Twilio
             </summary>
            
             <param name="request">Request to make</param>
             <returns>response of the request</returns>
        </member>
        <member name="T:Twilio.Clients.TwilioRestClient">
            <summary>
            Implementation of a TwilioRestClient.
            </summary>
        </member>
        <member name="P:Twilio.Clients.TwilioRestClient.HttpClient">
            <summary>
            Client to make HTTP requests
            </summary>
        </member>
        <member name="P:Twilio.Clients.TwilioRestClient.AccountSid">
            <summary>
            Account SID to use for requests
            </summary>
        </member>
        <member name="P:Twilio.Clients.TwilioRestClient.Region">
            <summary>
            Twilio region to make requests to
            </summary>
        </member>
        <member name="M:Twilio.Clients.TwilioRestClient.#ctor(System.String,System.String,System.String,System.String,Twilio.Http.HttpClient)">
             <summary>
             Constructor for a TwilioRestClient
             </summary>
            
             <param name="username">username for requests</param>
             <param name="password">password for requests</param>
             <param name="accountSid">account sid to make requests for</param>
             <param name="region">region to make requests for</param>
             <param name="httpClient">http client used to make the requests</param>
        </member>
        <member name="M:Twilio.Clients.TwilioRestClient.Request(Twilio.Http.Request)">
             <summary>
             Make a request to the Twilio API
             </summary>
            
             <param name="request">request to make</param>
             <returns>response of the request</returns>
        </member>
        <member name="M:Twilio.Clients.TwilioRestClient.RequestAsync(Twilio.Http.Request)">
             <summary>
             Make a request to the Twilio API
             </summary>
            
             <param name="request">request to make</param>
             <returns>Task that resolves to the response of the request</returns>
        </member>
        <member name="M:Twilio.Clients.TwilioRestClient.ValidateSslCertificate">
            <summary>
            Test that this application can use updated SSL certificates on
            api.twilio.com:8443. It's a bit easier to call this method from
            TwilioClient.ValidateSslCertificate().
            </summary>
        </member>
        <member name="M:Twilio.Clients.TwilioRestClient.ValidateSslCertificate(Twilio.Http.HttpClient)">
             <summary>
             Test that this application can use updated SSL certificates on
             api.twilio.com:8443. Generally, you'll want to use the version of this
             function that takes no parameters unless you have a reason not to.
             </summary>
            
             <param name="client">HTTP Client to use for testing the request</param>
        </member>
        <member name="T:Twilio.Converters.HttpMethodConverter">
            <summary>
            Convert between strings and HttpMethod
            </summary>
        </member>
        <member name="M:Twilio.Converters.HttpMethodConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
             <summary>
             Write the HTTP method out to json
             </summary>
            
             <param name="writer">json writer</param>
             <param name="value">value to write serialize</param>
             <param name="serializer">json serialize</param>
        </member>
        <member name="M:Twilio.Converters.HttpMethodConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
             <summary>
             Deserialize a string into a HttpMethod
             </summary>
            
             <param name="reader">json reader</param>
             <param name="objectType">type of object</param>
             <param name="existingValue"></param>
             <param name="serializer"></param>
            
             <returns>Deserialized HttpMethod</returns>
        </member>
        <member name="M:Twilio.Converters.HttpMethodConverter.CanConvert(System.Type)">
             <summary>
             Determine if an object can be converted to HttpMethod
             </summary>
            
             <param name="objectType">object type</param>
             <returns>true if the type is an HttpMethod; false otherwise</returns>
        </member>
        <member name="T:Twilio.Converters.MarshalConverter">
            <summary>
            Convert strings to objects
            </summary>
        </member>
        <member name="M:Twilio.Converters.MarshalConverter.DateTimeFromString(System.String)">
            <summary>
            Convert a date time string to a DateTime object
            </summary>
            <param name="dateTimeString">date time string to convert</param>
            <returns>Converted DateTime object</returns>
        </member>
        <member name="T:Twilio.Converters.PhoneNumberConverter">
            <summary>
            Convert between strings and a PhoneNumber
            </summary>
        </member>
        <member name="M:Twilio.Converters.PhoneNumberConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
            <summary>
            Write value to JsonWriter
            </summary>
            <param name="writer">Writer to write to</param>
            <param name="value">Value to write</param>
            <param name="serializer">unsued</param>
        </member>
        <member name="M:Twilio.Converters.PhoneNumberConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
            <summary>
            Convert a string to a PhoneNumber
            </summary>
            <param name="reader">JsonReader to read from</param>
            <param name="objectType">unused</param>
            <param name="existingValue">unused</param>
            <param name="serializer">unsued</param>
            <returns>Converted PhoneNumber</returns>
        </member>
        <member name="M:Twilio.Converters.PhoneNumberConverter.CanConvert(System.Type)">
            <summary>
            Determines if an object converted to a PhoneNumber
            </summary>
            <param name="objectType">Type of object</param>
            <returns>true if an object can be converted; false otherwise</returns>
        </member>
        <member name="T:Twilio.Converters.PrefixedCollapsibleMap">
            <summary>
            Flatten nested maps and give all entries a prefix
            </summary>
        </member>
        <member name="M:Twilio.Converters.PrefixedCollapsibleMap.Serialize(System.Collections.Generic.Dictionary{System.String,System.Object},System.String)">
            <summary>
            Flatten Dictionary separating nested keys with a .
            </summary>
            <param name="inputDict">Dictionary to flatten</param>
            <param name="prefix">Prefix to give all entries</param>
            <returns>Flattened Dictionary</returns>
        </member>
        <member name="T:Twilio.Converters.Promoter">
            <summary>
            Promote objects
            </summary>
        </member>
        <member name="M:Twilio.Converters.Promoter.UriFromString(System.String)">
            <summary>
            Convert a string URL to a Uri object
            </summary>
            <param name="url">URL to convert</param>
            <returns>Converted Uri</returns>
        </member>
        <member name="M:Twilio.Converters.Promoter.ListOfOne``1(``0)">
            <summary>
            Promote a single entry to a List of one
            </summary>
            <param name="one">single entry to promote</param>
            <returns>List of the single object</returns>
        </member>
        <member name="T:Twilio.Converters.Serializers">
            <summary>
            Serialization methods for various datatypes before making requests to the API
            </summary>
        </member>
        <member name="M:Twilio.Converters.Serializers.JsonObject(System.Object)">
            <summary>
            Produce a json string from input if possible
            </summary>
            <param name="input">Object to serialize to json</param>
            <returns>A json string</returns>
        </member>
        <member name="M:Twilio.Converters.Serializers.DateTimeIso8601(System.Nullable{System.DateTime})">
            <summary>
            Produce a ISO 8601 UTC compatible string from input if possible
            </summary>
            <param name="input">DateTime instance to serialize to string</param>
            <returns>A string</returns>
        </member>
        <member name="T:Twilio.Converters.StringEnumConverter">
            <summary>
            Converts between enums and strings
            </summary>
        </member>
        <member name="M:Twilio.Converters.StringEnumConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
            <summary>
            Writes value to a JsonWriter
            </summary>
            <param name="writer">JsonWriter to use</param>
            <param name="value">value to write</param>
            <param name="serializer">unused</param>
        </member>
        <member name="M:Twilio.Converters.StringEnumConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
            <summary>
            Converts string to an enum
            </summary>
            <param name="reader">JsonReader to read from</param>
            <param name="objectType">unused</param>
            <param name="existingValue">unused</param>
            <param name="serializer">unused</param>
            <returns>Converted object</returns>
        </member>
        <member name="M:Twilio.Converters.StringEnumConverter.CanConvert(System.Type)">
            <summary>
            Determines if an object can be converted
            </summary>
            <param name="objectType">Object type to convert</param>
            <returns>true if it can be converted; false otherwise</returns>
        </member>
        <member name="T:Twilio.Exceptions.ApiException">
            <summary>
            POCO to represent an API Exception
            </summary>
        </member>
        <member name="P:Twilio.Exceptions.ApiException.Code">
            <summary>
            Twilio error code
            </summary>
        </member>
        <member name="P:Twilio.Exceptions.ApiException.Status">
            <summary>
            HTTP status code
            </summary>
        </member>
        <member name="P:Twilio.Exceptions.ApiException.MoreInfo">
            <summary>
            More info if any was provided
            </summary>
        </member>
        <member name="M:Twilio.Exceptions.ApiException.#ctor(System.String)">
            <summary>
            Create a ApiException with message
            </summary>
            <param name="message">Exception message</param>
        </member>
        <member name="M:Twilio.Exceptions.ApiException.#ctor(System.String,System.Exception)">
            <summary>
            Create an ApiException from another Exception
            </summary>
            <param name="message">Exception message</param>
            <param name="exception">Exception to copy detatils from</param>
        </member>
        <member name="M:Twilio.Exceptions.ApiException.#ctor(System.Int32,System.Int32,System.String,System.String,System.Exception)">
            <summary>
            Create an ApiException
            </summary>
            <param name="code">Twilio error code</param>
            <param name="status">HTTP status code</param>
            <param name="message">Error message</param>
            <param name="moreInfo">More info if provided</param>
            <param name="exception">Original exception</param>
        </member>
        <member name="T:Twilio.Exceptions.CertificateValidationException">
            <summary>
            Error thrown specifically when validating SSL connection
            </summary>
        </member>
        <member name="P:Twilio.Exceptions.CertificateValidationException.Request">
            <summary>
            Request object that triggered the exception
            </summary>
        </member>
        <member name="P:Twilio.Exceptions.CertificateValidationException.Response">
            <summary>
            Response object that triggered the exception, if available
            </summary>
        </member>
        <member name="M:Twilio.Exceptions.CertificateValidationException.#ctor(System.String,Twilio.Http.Request,Twilio.Http.Response)">
            <summary>
            Construct a CertificateValidationException
            </summary>
            <param name="message">Error message</param>
            <param name="request">The Request that triggered the exception</param>
            <param name="response">The Response (if available) that triggered the exception</param>
        </member>
        <member name="M:Twilio.Exceptions.CertificateValidationException.#ctor(System.String,System.Exception,Twilio.Http.Request)">
            <summary>
            Construct a CertificateValidationException
            </summary>
            <param name="message">Error message</param>
            <param name="exception">The parent exception</param>
            <param name="request">The Request that triggered the exception</param>
        </member>
        <member name="T:Twilio.Exceptions.RestException">
            <summary>
            Exception from Twilio API
            </summary>
        </member>
        <member name="P:Twilio.Exceptions.RestException.Code">
            <summary>
            Twilio error code
            </summary>
        </member>
        <member name="P:Twilio.Exceptions.RestException.Status">
            <summary>
            HTTP status code
            </summary>
        </member>
        <member name="P:Twilio.Exceptions.RestException.Message">
            <summary>
            Error message
            </summary>
        </member>
        <member name="P:Twilio.Exceptions.RestException.MoreInfo">
            <summary>
            More info if provided
            </summary>
        </member>
        <member name="M:Twilio.Exceptions.RestException.#ctor">
            <summary>
            Create an empty RestException
            </summary>
        </member>
        <member name="M:Twilio.Exceptions.RestException.FromJson(System.String)">
            <summary>
            Create a RestException from a JSON payload
            </summary>
            <param name="json">JSON string to parse</param>
        </member>
        <member name="T:Twilio.Exceptions.TwilioException">
            <summary>
            Base TwilioException
            </summary>
        </member>
        <member name="M:Twilio.Exceptions.TwilioException.#ctor">
            <summary>
            Create an empty TwilioException
            </summary>
        </member>
        <member name="M:Twilio.Exceptions.TwilioException.#ctor(System.String)">
            <summary>
            Create a TwilioException from an error message
            </summary>
            <param name="message">Error message</param>
        </member>
        <member name="M:Twilio.Exceptions.TwilioException.#ctor(System.String,System.Exception)">
            <summary>
            Create a TwilioException from message and another exception
            </summary>
            <param name="message">Error message</param>
            <param name="exception">Original Exception</param>
        </member>
        <member name="T:Twilio.Exceptions.ApiConnectionException">
            <summary>
            Exception related to connection errors
            </summary>
        </member>
        <member name="M:Twilio.Exceptions.ApiConnectionException.#ctor(System.String)">
            <summary>
            Create an ApiConnectionException from a message
            </summary>
            <param name="message">Error message</param>
        </member>
        <member name="M:Twilio.Exceptions.ApiConnectionException.#ctor(System.String,System.Exception)">
            <summary>
            Create an ApiConnectionException from a message and another Exception
            </summary>
            <param name="message">Error message</param>
            <param name="exception">Original Exception</param>
        </member>
        <member name="T:Twilio.Exceptions.AuthenticationException">
            <summary>
            Exception related to Authentication Errors
            </summary>
        </member>
        <member name="M:Twilio.Exceptions.AuthenticationException.#ctor(System.String)">
            <summary>
            Create AuthenticationException from an error messsage
            </summary>
            <param name="message">Error message</param>
        </member>
        <member name="T:Twilio.Http.HttpClient">
            <summary>
            Base http client used to make Twilio requests
            </summary>
        </member>
        <member name="P:Twilio.Http.HttpClient.LastRequest">
            <summary>
            The last request made by this client
            </summary>
        </member>
        <member name="P:Twilio.Http.HttpClient.LastResponse">
            <summary>
            The last response received by this client
            </summary>
        </member>
        <member name="M:Twilio.Http.HttpClient.MakeRequest(Twilio.Http.Request)">
             <summary>
             Make a request to Twilio, returns non-2XX responses as well
             </summary>
            
             <param name="request">request to make</param>
             <exception>throws exception on network or connection errors.</exception>
             <returns>response of the request</returns>
        </member>
        <member name="M:Twilio.Http.HttpClient.MakeRequestAsync(Twilio.Http.Request)">
             <summary>
             Make an async request to Twilio, returns non-2XX responses as well
             </summary>
            
             <param name="request">request to make</param>
             <exception>throws exception on network or connection errors.</exception>
             <returns>response of the request</returns>
        </member>
        <member name="M:Twilio.Http.HttpClient.Authentication(System.String,System.String)">
             <summary>
             Set the authentication string for the request
             </summary>
            
             <param name="username">username of the request</param>
             <param name="password">password of the request</param>
             <returns>authentication string</returns>
        </member>
        <member name="T:Twilio.Http.HttpMethod">
            <summary>
            Represents an HTTP Method
            </summary>
        </member>
        <member name="F:Twilio.Http.HttpMethod.Get">
            <summary>
            Constant for GET method
            </summary>
        </member>
        <member name="F:Twilio.Http.HttpMethod.Post">
            <summary>
            Constant for POST method
            </summary>
        </member>
        <member name="F:Twilio.Http.HttpMethod.Put">
            <summary>
            Constant for PUT method
            </summary>
        </member>
        <member name="F:Twilio.Http.HttpMethod.Delete">
            <summary>
            Constant for DELETE method
            </summary>
        </member>
        <member name="M:Twilio.Http.HttpMethod.#ctor(System.String)">
            <summary>
            Create a method from a string
            </summary>
            <param name="method">Method name</param>
        </member>
        <member name="M:Twilio.Http.HttpMethod.op_Implicit(System.String)~Twilio.Http.HttpMethod">
            <summary>
            Convert from string to HttpMethod
            </summary>
            <param name="value">value to convert</param>
        </member>
        <member name="M:Twilio.Http.HttpMethod.Equals(System.Object)">
            <summary>
            Compare HttpMethod
            </summary>
            <param name="obj">object to compare with</param>
            <returns>true if the HttpMethod are equal; false otherwise</returns>
        </member>
        <member name="M:Twilio.Http.HttpMethod.GetHashCode">
            <summary>
            Get the hash code of the HttpMethod
            </summary>
            <returns>the hash code of the HttpMethod</returns>
        </member>
        <member name="M:Twilio.Http.HttpMethod.ToString">
            <summary>
            Get the string representation of the HttpMethod
            </summary>
            <returns>string representation of the HttpMethod</returns>
        </member>
        <member name="T:Twilio.Http.Request">
            <summary>
            Twilio request object
            </summary>
        </member>
        <member name="P:Twilio.Http.Request.Method">
            <summary>
            HTTP Method
            </summary>
        </member>
        <member name="P:Twilio.Http.Request.Username">
            <summary>
            Auth username
            </summary>
        </member>
        <member name="P:Twilio.Http.Request.Password">
            <summary>
            Auth password
            </summary>
        </member>
        <member name="P:Twilio.Http.Request.PostParams">
            <summary>
            Post params
            </summary>
        </member>
        <member name="M:Twilio.Http.Request.#ctor(Twilio.Http.HttpMethod,System.String)">
            <summary>
            Create a new Twilio request
            </summary>
            <param name="method">HTTP Method</param>
            <param name="url">Request URL</param>
        </member>
        <member name="M:Twilio.Http.Request.#ctor(Twilio.Http.HttpMethod,Twilio.Rest.Domain,System.String,System.String,System.Collections.Generic.List{System.Collections.Generic.KeyValuePair{System.String,System.String}},System.Collections.Generic.List{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
            <summary>
            Create a new Twilio request
            </summary>
            <param name="method">HTTP method</param>
            <param name="domain">Twilio subdomain</param>
            <param name="uri">Request URI</param>
            <param name="region">Twilio region</param>
            <param name="queryParams">Query parameters</param>
            <param name="postParams">Post data</param>
        </member>
        <member name="M:Twilio.Http.Request.ConstructUrl">
            <summary>
            Construct the request URL
            </summary>
            <returns>Built URL including query parameters</returns>
        </member>
        <member name="M:Twilio.Http.Request.SetAuth(System.String,System.String)">
            <summary>
            Set auth for the request
            </summary>
            <param name="username">Auth username</param>
            <param name="password">Auth password</param>
        </member>
        <member name="M:Twilio.Http.Request.EncodePostParams">
            <summary>
            Encode POST data for transfer
            </summary>
            <returns>Encoded byte array</returns>
        </member>
        <member name="M:Twilio.Http.Request.AddQueryParam(System.String,System.String)">
            <summary>
            Add query parameter to request
            </summary>
            <param name="name">name of parameter</param>
            <param name="value">value of parameter</param>
        </member>
        <member name="M:Twilio.Http.Request.AddPostParam(System.String,System.String)">
            <summary>
            Add a parameter to the request payload
            </summary>
            <param name="name">name of parameter</param>
            <param name="value">value of parameter</param>
        </member>
        <member name="M:Twilio.Http.Request.Equals(System.Object)">
            <summary>
            Compare request
            </summary>
            <param name="obj">object to compare to</param>
            <returns>true if requests are equal; false otherwise</returns>
        </member>
        <member name="M:Twilio.Http.Request.GetHashCode">
            <summary>
            Generate hash code for request
            </summary>
            <returns>generated hash code</returns>
        </member>
        <member name="T:Twilio.Http.Response">
            <summary>
            Twilio response
            </summary>
        </member>
        <member name="P:Twilio.Http.Response.StatusCode">
            <summary>
            HTTP status code
            </summary>
        </member>
        <member name="P:Twilio.Http.Response.Content">
            <summary>
            Content string
            </summary>
        </member>
        <member name="M:Twilio.Http.Response.#ctor(System.Net.HttpStatusCode,System.String)">
            <summary>
            Create a new Response 
            </summary>
            <param name="statusCode">HTTP status code</param>
            <param name="content">Content string</param>
        </member>
        <member name="T:Twilio.Http.SystemNetHttpClient">
            <summary>
            Sample client to make HTTP requests
            </summary>
        </member>
        <member name="M:Twilio.Http.SystemNetHttpClient.#ctor(System.Net.Http.HttpClient)">
            <summary>
            Create new HttpClient
            </summary>
            <param name="httpClient">HTTP client to use</param>
        </member>
        <member name="M:Twilio.Http.SystemNetHttpClient.MakeRequest(Twilio.Http.Request)">
            <summary>
            Make a synchronous request
            </summary>
            <param name="request">Twilio request</param>
            <returns>Twilio response</returns>
        </member>
        <member name="M:Twilio.Http.SystemNetHttpClient.MakeRequestAsync(Twilio.Http.Request)">
            <summary>
            Make an asynchronous request
            </summary>
            <param name="request">Twilio response</param>
            <returns>Task that resolves to the response</returns>
        </member>
        <member name="T:Twilio.Jwt.AccessToken.ChatGrant">
            <summary>
            Grant to use for Twilio Chat
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.ChatGrant.ServiceSid">
            <summary>
            Service SID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.ChatGrant.EndpointId">
            <summary>
            Endpoint ID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.ChatGrant.DeploymentRoleSid">
            <summary>
            Deployment role SID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.ChatGrant.PushCredentialSid">
            <summary>
            Push credential SID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.ChatGrant.Key">
             <summary>
             Get the grant name
             </summary>
            
             <returns>name of the grant</returns>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.ChatGrant.Payload">
             <summary>
             Get the grant payload
             </summary>
            
             <returns>payload of the grant</returns>
        </member>
        <member name="T:Twilio.Jwt.AccessToken.ConversationsGrant">
            <summary>
            Grant to use for Twilio Conversations
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.ConversationsGrant.ConfigurationProfileSid">
            <summary>
            Configuration profile SID for the grant
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.ConversationsGrant.Key">
             <summary>
             Get the grant key
             </summary>
            
             <returns>grant key</returns>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.ConversationsGrant.Payload">
             <summary>
             Get the grant payload
             </summary>
            
             <returns>grant payload</returns>
        </member>
        <member name="T:Twilio.Jwt.AccessToken.IGrant">
            <summary>
            Grant used in Access Tokens
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.IGrant.Key">
             <summary>
             Get the name of the grant.
             </summary>
            
             <returns>String - the name of the grant</returns>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.IGrant.Payload">
             <summary>
             Get the data of the grant
             </summary>
            
             <returns>Object - the data of the grant</returns>
        </member>
        <member name="T:Twilio.Jwt.AccessToken.IpMessagingGrant">
            <summary>
            Grant to use for IP Messaging
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.IpMessagingGrant.ServiceSid">
            <summary>
            Service SID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.IpMessagingGrant.EndpointId">
            <summary>
            Endpoint ID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.IpMessagingGrant.DeploymentRoleSid">
            <summary>
            Deployment role SID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.IpMessagingGrant.PushCredentialSid">
            <summary>
            Push credential SID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.IpMessagingGrant.Key">
             <summary>
             Get the grant name
             </summary>
            
             <returns>name of the grant</returns>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.IpMessagingGrant.Payload">
             <summary>
             Get the grant payload
             </summary>
            
             <returns>payload of the grant</returns>
        </member>
        <member name="T:Twilio.Jwt.AccessToken.SyncGrant">
            <summary>
            Grant for Twilio Sync
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.SyncGrant.ServiceSid">
            <summary>
            Sync service SID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.SyncGrant.EndpointId">
            <summary>
            Endpoint ID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.SyncGrant.Key">
             <summary>
             Get the grant key
             </summary>
            
             <returns>the grant key</returns>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.SyncGrant.Payload">
             <summary>
             Get the grant payload
             </summary>
            
             <returns>the grant payload</returns>
        </member>
        <member name="T:Twilio.Jwt.AccessToken.Token">
            <summary>
            Access Token for Twilio resources
            </summary>
        </member>
        <member name="M:Twilio.Jwt.AccessToken.Token.#ctor(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Collections.Generic.HashSet{Twilio.Jwt.AccessToken.IGrant})">
            <summary>
            Create a new Access Token
            </summary>
            <param name="accountSid">Account SID</param>
            <param name="signingKeySid">Signing key SID</param>
            <param name="secret">Secret to encode with</param>
            <param name="identity">Token identity</param>
            <param name="expiration">Token expiration</param>
            <param name="nbf">Token nbf</param>
            <param name="grants">Token grants</param>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.Token.Id">
            <summary>
            Token ID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.Token.Subject">
            <summary>
            Access token subject
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.Token.Nbf">
            <summary>
            Token not before time
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.Token.Headers">
            <summary>
            Headers for an Access Token
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.Token.Claims">
            <summary>
            Populate claims for the Access Token
            </summary>
            <returns></returns>
        </member>
        <member name="T:Twilio.Jwt.AccessToken.VideoGrant">
            <summary>
            Grant to expose Twilio Video
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.VideoGrant.ConfigurationProfileSid">
            <summary>
            Configuration profile SID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.VideoGrant.Room">
            <summary>
            Roome SID or name
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.VideoGrant.Key">
             <summary>
             Get the Video grant key
             </summary>
            
             <returns>the video grant key</returns>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.VideoGrant.Payload">
             <summary>
             Get the video grant payload
             </summary>
            
             <returns>the video grant payload</returns>
        </member>
        <member name="T:Twilio.Jwt.AccessToken.VoiceGrant">
            <summary>
            Grant to expose Twilio Voice
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.VoiceGrant.IncomingAllow">
            <summary>
            Whether incoming connections are allowed (JS Client)
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.VoiceGrant.OutgoingApplicationSid">
            <summary>
            Outgoing application SID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.VoiceGrant.OutgoingApplicationParams">
            <summary>
            Parameters to send to the outgoing application
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.VoiceGrant.PushCredentialSid">
            <summary>
            Push credential SID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.VoiceGrant.EndpointId">
            <summary>
            Endpoint ID
            </summary>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.VoiceGrant.Key">
             <summary>
             Get the grant key
             </summary>
            
             <returns>the grant key</returns>
        </member>
        <member name="P:Twilio.Jwt.AccessToken.VoiceGrant.Payload">
             <summary>
             Get the grant payload
             </summary>
            
             <returns>the grant payload</returns>
        </member>
        <member name="T:Twilio.Jwt.BaseJwt">
            <summary>
            Base JWT implementation
            </summary>
        </member>
        <member name="P:Twilio.Jwt.BaseJwt.Id">
            <summary>
            Unique identifier for the JWT
            </summary>
        </member>
        <member name="P:Twilio.Jwt.BaseJwt.Subject">
            <summary>
            Subject of the JWT
            </summary>
        </member>
        <member name="P:Twilio.Jwt.BaseJwt.Nbf">
            <summary>
            Not before time of the JWT
            </summary>
        </member>
        <member name="P:Twilio.Jwt.BaseJwt.Headers">
            <summary>
            JWT headers
            </summary>
        </member>
        <member name="P:Twilio.Jwt.BaseJwt.Claims">
            <summary>
            JWT claims
            </summary>
        </member>
        <member name="M:Twilio.Jwt.BaseJwt.#ctor(System.String,System.String,System.DateTime)">
            <summary>
            Create a new JWT
            </summary>
            <param name="secret">JWT secret</param>
            <param name="issuer">JWT issuer</param>
            <param name="expiration">Expiration time</param>
        </member>
        <member name="M:Twilio.Jwt.BaseJwt.ToJwt">
            <summary>
            Convert to JWT string
            </summary>
            <returns>JWT string</returns>
        </member>
        <member name="M:Twilio.Jwt.BaseJwt.ConvertToUnixTimestamp(System.DateTime)">
            <summary>
            Get seconds since epoch
            </summary>
            <param name="date">time to diff against</param>
            <returns>seconds since epoch</returns>
        </member>
        <member name="T:Twilio.Jwt.ClientCapability">
            <summary>
            JWT for Twilio Client
            </summary>
        </member>
        <member name="M:Twilio.Jwt.ClientCapability.#ctor(System.String,System.String,System.Nullable{System.DateTime},System.Collections.Generic.HashSet{Twilio.Jwt.IScope})">
            <summary>
            Create a new Client JWT
            </summary>
            <param name="accountSid">Twilio Account SID</param>
            <param name="authToken">Twilio auth token</param>
            <param name="expiration">JWT expiration</param>
            <param name="scopes">Scopes to give access to</param>
        </member>
        <member name="P:Twilio.Jwt.ClientCapability.Headers">
            <summary>
            JWT headers
            </summary>
        </member>
        <member name="P:Twilio.Jwt.ClientCapability.Claims">
            <summary>
            Get the JWT claims in JSON format
            </summary>
        </member>
        <member name="T:Twilio.Jwt.Client.EventStreamScope">
            <summary>
            Event stream scope for client capabilites
            </summary>
        </member>
        <member name="M:Twilio.Jwt.Client.EventStreamScope.#ctor(System.Collections.Generic.Dictionary{System.String,System.String})">
            <summary>
            Create a new EventStreamScope
            </summary>
            <param name="filters">filters to use</param>
        </member>
        <member name="P:Twilio.Jwt.Client.EventStreamScope.Payload">
            <summary>
            Generate scope payload
            </summary>
        </member>
        <member name="T:Twilio.Jwt.Client.IncomingClientScope">
            <summary>
            Incoming client scope for client capabilites
            </summary>
        </member>
        <member name="M:Twilio.Jwt.Client.IncomingClientScope.#ctor(System.String)">
            <summary>
            Create a new IncomingClientScope
            </summary>
            <param name="clientName">Client name</param>
        </member>
        <member name="P:Twilio.Jwt.Client.IncomingClientScope.Payload">
            <summary>
            Generate scope payload
            </summary>
        </member>
        <member name="T:Twilio.Jwt.Client.OutgoingClientScope">
            <summary>
            Scope capability
            </summary>
        </member>
        <member name="M:Twilio.Jwt.Client.OutgoingClientScope.#ctor(System.String,System.String,System.Collections.Generic.Dictionary{System.String,System.String})">
            <summary>
            Create a new OutgoingClientScope
            </summary>
            <param name="applicationSid">Twilio Application SID</param>
            <param name="clientName">Name of client</param>
            <param name="parameters">Parameters to pass</param>
        </member>
        <member name="P:Twilio.Jwt.Client.OutgoingClientScope.Payload">
            <summary>
            Generate scope payload
            </summary>
        </member>
        <member name="T:Twilio.Jwt.IScope">
            <summary>
            Scope interface of client capabilities
            </summary>
        </member>
        <member name="P:Twilio.Jwt.IScope.Payload">
            <summary>
            Generate the scope payload
            </summary>
        </member>
        <member name="T:Twilio.Jwt.Taskrouter.Policy">
            <summary>
            Policy for a TaskRouter token
            </summary>
        </member>
        <member name="T:Twilio.Jwt.Taskrouter.Policy.FilterRequirement">
            <summary>
            Filter requirements for a TaskRouter policy
            </summary>
        </member>
        <member name="F:Twilio.Jwt.Taskrouter.Policy.FilterRequirement.Required">
            <summary>
            Parameter is required
            </summary>
        </member>
        <member name="F:Twilio.Jwt.Taskrouter.Policy.FilterRequirement.Optional">
            <summary>
            Parameter is optional
            </summary>
        </member>
        <member name="M:Twilio.Jwt.Taskrouter.Policy.#ctor(System.String,Twilio.Http.HttpMethod,System.Collections.Generic.Dictionary{System.String,Twilio.Jwt.Taskrouter.Policy.FilterRequirement},System.Collections.Generic.Dictionary{System.String,Twilio.Jwt.Taskrouter.Policy.FilterRequirement},System.Boolean)">
            <summary>
            Create a new Policy
            </summary>
            <param name="url">TaskRouter URL</param>
            <param name="method">HTTP method</param>
            <param name="queryFilter">Query param filters</param>
            <param name="postFilter">POST data filters</param>
            <param name="allowed">Allow the JWT to access</param>
        </member>
        <member name="M:Twilio.Jwt.Taskrouter.Policy.ToDict">
            <summary>
            Returns dictionary representation of the Policy
            </summary>
            <returns>Dictionary representation of the Policy</returns>
        </member>
        <member name="T:Twilio.Jwt.Taskrouter.PolicyUtils">
            <summary>
            Utility class for generating Policies
            </summary>
        </member>
        <member name="M:Twilio.Jwt.Taskrouter.PolicyUtils.DefaultEventBridgePolicies(System.String,System.String)">
            <summary>
            Generate default event bridge policies
            </summary>
            <param name="accountSid">Twilio account SID</param>
            <param name="channelId">TaskRouter channel ID</param>
            <returns>Default event bridge policies</returns>
        </member>
        <member name="T:Twilio.Jwt.Taskrouter.TaskRouterCapability">
            <summary>
            JWT for TaskRouter use
            </summary>
        </member>
        <member name="M:Twilio.Jwt.Taskrouter.TaskRouterCapability.#ctor(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Collections.Generic.List{Twilio.Jwt.Taskrouter.Policy})">
            <summary>
            Create a new TaskRouter JWT
            </summary>
            <param name="accountSid">Twilio account SID</param>
            <param name="authToken">Twilio auth token</param>
            <param name="workspaceSid">TaskRouter workspace SID</param>
            <param name="channelId">TaskRouter channel ID</param>
            <param name="friendlyName">Friendly name for this JWT</param>
            <param name="expiration">JWT expiration</param>
            <param name="policies">JWT policies</param>
        </member>
        <member name="P:Twilio.Jwt.Taskrouter.TaskRouterCapability.Headers">
            <summary>
            Get the JWT headers
            </summary>
        </member>
        <member name="P:Twilio.Jwt.Taskrouter.TaskRouterCapability.Claims">
            <summary>
            Generate JWT payload
            </summary>
        </member>
        <member name="T:Twilio.Rest.Accounts.V1.Credential.ReadAwsOptions">
            <summary>
            Retrieves a collection of AWS Credentials belonging to the account used to make the request
            </summary>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.ReadAwsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Accounts.V1.Credential.CreateAwsOptions">
            <summary>
            Create a new AWS Credential
            </summary>
        </member>
        <!-- Badly formed XML comment ignored for member "P:Twilio.Rest.Accounts.V1.Credential.CreateAwsOptions.Credentials" -->
        <member name="P:Twilio.Rest.Accounts.V1.Credential.CreateAwsOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.CreateAwsOptions.AccountSid">
            <summary>
            The Subaccount this Credential should be associated with.
            </summary>
        </member>
        <!-- Badly formed XML comment ignored for member "M:Twilio.Rest.Accounts.V1.Credential.CreateAwsOptions.#ctor(System.String)" -->
        <member name="M:Twilio.Rest.Accounts.V1.Credential.CreateAwsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Accounts.V1.Credential.FetchAwsOptions">
            <summary>
            Fetch the AWS credentials specified by the provided Credential Sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.FetchAwsOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.FetchAwsOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchAwsOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.FetchAwsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Accounts.V1.Credential.UpdateAwsOptions">
            <summary>
            Modify the properties of a given Account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.UpdateAwsOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.UpdateAwsOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.UpdateAwsOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateAwsOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.UpdateAwsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Accounts.V1.Credential.DeleteAwsOptions">
            <summary>
            Delete a Credential from your account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.DeleteAwsOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.DeleteAwsOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteAwsOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.DeleteAwsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.Read(Twilio.Rest.Accounts.V1.Credential.ReadAwsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of AWS Credentials belonging to the account used to make the request
            </summary>
            <param name="options"> Read Aws parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.ReadAsync(Twilio.Rest.Accounts.V1.Credential.ReadAwsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of AWS Credentials belonging to the account used to make the request
            </summary>
            <param name="options"> Read Aws parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of AWS Credentials belonging to the account used to make the request
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of AWS Credentials belonging to the account used to make the request
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.NextPage(Twilio.Base.Page{Twilio.Rest.Accounts.V1.Credential.AwsResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Accounts.V1.Credential.AwsResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.Create(Twilio.Rest.Accounts.V1.Credential.CreateAwsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new AWS Credential
            </summary>
            <param name="options"> Create Aws parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.CreateAsync(Twilio.Rest.Accounts.V1.Credential.CreateAwsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new AWS Credential
            </summary>
            <param name="options"> Create Aws parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Aws </returns>
        </member>
        <!-- Badly formed XML comment ignored for member "M:Twilio.Rest.Accounts.V1.Credential.AwsResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)" -->
        <!-- Badly formed XML comment ignored for member "M:Twilio.Rest.Accounts.V1.Credential.AwsResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)" -->
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.Fetch(Twilio.Rest.Accounts.V1.Credential.FetchAwsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the AWS credentials specified by the provided Credential Sid
            </summary>
            <param name="options"> Fetch Aws parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.FetchAsync(Twilio.Rest.Accounts.V1.Credential.FetchAwsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the AWS credentials specified by the provided Credential Sid
            </summary>
            <param name="options"> Fetch Aws parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the AWS credentials specified by the provided Credential Sid
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the AWS credentials specified by the provided Credential Sid
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.Update(Twilio.Rest.Accounts.V1.Credential.UpdateAwsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="options"> Update Aws parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.UpdateAsync(Twilio.Rest.Accounts.V1.Credential.UpdateAwsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="options"> Update Aws parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.Update(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.UpdateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.Delete(Twilio.Rest.Accounts.V1.Credential.DeleteAwsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential from your account
            </summary>
            <param name="options"> Delete Aws parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.DeleteAsync(Twilio.Rest.Accounts.V1.Credential.DeleteAwsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential from your account
            </summary>
            <param name="options"> Delete Aws parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential from your account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential from your account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Aws </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.AwsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AwsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AwsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.AwsResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.AwsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.AwsResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.AwsResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.AwsResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.AwsResource.Url">
            <summary>
            The URI for this resource, relative to `https://accounts.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Accounts.V1.Credential.ReadPublicKeyOptions">
            <summary>
            Retrieves a collection of Public Key Credentials belonging to the account used to make the request
            </summary>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.ReadPublicKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Accounts.V1.Credential.CreatePublicKeyOptions">
            <summary>
            Create a new Public Key Credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.CreatePublicKeyOptions.PublicKey">
            <summary>
            A URL encoded representation of the public key
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.CreatePublicKeyOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.CreatePublicKeyOptions.AccountSid">
            <summary>
            The Subaccount this Credential should be associated with.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.CreatePublicKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new CreatePublicKeyOptions
            </summary>
            <param name="publicKey"> A URL encoded representation of the public key </param>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.CreatePublicKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Accounts.V1.Credential.FetchPublicKeyOptions">
            <summary>
            Fetch the public key specified by the provided Credential Sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.FetchPublicKeyOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.FetchPublicKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchPublicKeyOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.FetchPublicKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Accounts.V1.Credential.UpdatePublicKeyOptions">
            <summary>
            Modify the properties of a given Account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.UpdatePublicKeyOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.UpdatePublicKeyOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.UpdatePublicKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdatePublicKeyOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.UpdatePublicKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Accounts.V1.Credential.DeletePublicKeyOptions">
            <summary>
            Delete a Credential from your account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.DeletePublicKeyOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.DeletePublicKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new DeletePublicKeyOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.DeletePublicKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Read(Twilio.Rest.Accounts.V1.Credential.ReadPublicKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of Public Key Credentials belonging to the account used to make the request
            </summary>
            <param name="options"> Read PublicKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.ReadAsync(Twilio.Rest.Accounts.V1.Credential.ReadPublicKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of Public Key Credentials belonging to the account used to make the request
            </summary>
            <param name="options"> Read PublicKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of Public Key Credentials belonging to the account used to make the request
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of Public Key Credentials belonging to the account used to make the request
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.NextPage(Twilio.Base.Page{Twilio.Rest.Accounts.V1.Credential.PublicKeyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Accounts.V1.Credential.PublicKeyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Create(Twilio.Rest.Accounts.V1.Credential.CreatePublicKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Public Key Credential
            </summary>
            <param name="options"> Create PublicKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.CreateAsync(Twilio.Rest.Accounts.V1.Credential.CreatePublicKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Public Key Credential
            </summary>
            <param name="options"> Create PublicKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Public Key Credential
            </summary>
            <param name="publicKey"> A URL encoded representation of the public key </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="accountSid"> The Subaccount this Credential should be associated with. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Public Key Credential
            </summary>
            <param name="publicKey"> A URL encoded representation of the public key </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="accountSid"> The Subaccount this Credential should be associated with. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Fetch(Twilio.Rest.Accounts.V1.Credential.FetchPublicKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the public key specified by the provided Credential Sid
            </summary>
            <param name="options"> Fetch PublicKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.FetchAsync(Twilio.Rest.Accounts.V1.Credential.FetchPublicKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the public key specified by the provided Credential Sid
            </summary>
            <param name="options"> Fetch PublicKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the public key specified by the provided Credential Sid
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the public key specified by the provided Credential Sid
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Update(Twilio.Rest.Accounts.V1.Credential.UpdatePublicKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="options"> Update PublicKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.UpdateAsync(Twilio.Rest.Accounts.V1.Credential.UpdatePublicKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="options"> Update PublicKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Update(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.UpdateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Delete(Twilio.Rest.Accounts.V1.Credential.DeletePublicKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential from your account
            </summary>
            <param name="options"> Delete PublicKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.DeleteAsync(Twilio.Rest.Accounts.V1.Credential.DeletePublicKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential from your account
            </summary>
            <param name="options"> Delete PublicKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential from your account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential from your account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublicKey </returns>
        </member>
        <member name="M:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a PublicKeyResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> PublicKeyResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.AccountSid">
            <summary>
            The SID of the Account that created the Credential that the PublicKey resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Accounts.V1.Credential.PublicKeyResource.Url">
            <summary>
            The URI for this resource, relative to `https://accounts.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.CreateAccountOptions">
            <summary>
            Create a new Twilio Subaccount from the account making the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.CreateAccountOptions.FriendlyName">
            <summary>
            A human readable description of the account
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.CreateAccountOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.FetchAccountOptions">
            <summary>
            Fetch the account specified by the provided Account Sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.FetchAccountOptions.PathSid">
            <summary>
            Fetch by unique Account Sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.FetchAccountOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.ReadAccountOptions">
            <summary>
            Retrieves a collection of Accounts belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.ReadAccountOptions.FriendlyName">
            <summary>
            FriendlyName to filter on
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.ReadAccountOptions.Status">
            <summary>
            Status to filter on
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.ReadAccountOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.UpdateAccountOptions">
            <summary>
            Modify the properties of a given Account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.UpdateAccountOptions.PathSid">
            <summary>
            Update by unique Account Sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.UpdateAccountOptions.FriendlyName">
            <summary>
            FriendlyName to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.UpdateAccountOptions.Status">
            <summary>
            Status to update the Account with
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.UpdateAccountOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.Create(Twilio.Rest.Api.V2010.CreateAccountOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Twilio Subaccount from the account making the request
            </summary>
            <param name="options"> Create Account parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.CreateAsync(Twilio.Rest.Api.V2010.CreateAccountOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Twilio Subaccount from the account making the request
            </summary>
            <param name="options"> Create Account parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.Create(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Twilio Subaccount from the account making the request
            </summary>
            <param name="friendlyName"> A human readable description of the account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.CreateAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Twilio Subaccount from the account making the request
            </summary>
            <param name="friendlyName"> A human readable description of the account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.Fetch(Twilio.Rest.Api.V2010.FetchAccountOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the account specified by the provided Account Sid
            </summary>
            <param name="options"> Fetch Account parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.FetchAsync(Twilio.Rest.Api.V2010.FetchAccountOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the account specified by the provided Account Sid
            </summary>
            <param name="options"> Fetch Account parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the account specified by the provided Account Sid
            </summary>
            <param name="pathSid"> Fetch by unique Account Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the account specified by the provided Account Sid
            </summary>
            <param name="pathSid"> Fetch by unique Account Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.Read(Twilio.Rest.Api.V2010.ReadAccountOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of Accounts belonging to the account used to make the request
            </summary>
            <param name="options"> Read Account parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.ReadAsync(Twilio.Rest.Api.V2010.ReadAccountOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of Accounts belonging to the account used to make the request
            </summary>
            <param name="options"> Read Account parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.Read(System.String,Twilio.Rest.Api.V2010.AccountResource.StatusEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of Accounts belonging to the account used to make the request
            </summary>
            <param name="friendlyName"> FriendlyName to filter on </param>
            <param name="status"> Status to filter on </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.ReadAsync(System.String,Twilio.Rest.Api.V2010.AccountResource.StatusEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of Accounts belonging to the account used to make the request
            </summary>
            <param name="friendlyName"> FriendlyName to filter on </param>
            <param name="status"> Status to filter on </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.AccountResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.AccountResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.Update(Twilio.Rest.Api.V2010.UpdateAccountOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="options"> Update Account parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.UpdateAsync(Twilio.Rest.Api.V2010.UpdateAccountOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="options"> Update Account parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.Update(System.String,System.String,Twilio.Rest.Api.V2010.AccountResource.StatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="pathSid"> Update by unique Account Sid </param>
            <param name="friendlyName"> FriendlyName to update </param>
            <param name="status"> Status to update the Account with </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.UpdateAsync(System.String,System.String,Twilio.Rest.Api.V2010.AccountResource.StatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Modify the properties of a given Account
            </summary>
            <param name="pathSid"> Update by unique Account Sid </param>
            <param name="friendlyName"> FriendlyName to update </param>
            <param name="status"> Status to update the Account with </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Account </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.AccountResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AccountResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AccountResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.AccountResource.AuthToken">
            <summary>
            The authorization token for this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.AccountResource.DateCreated">
            <summary>
            The date this account was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.AccountResource.DateUpdated">
            <summary>
            The date this account was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.AccountResource.FriendlyName">
            <summary>
            A human readable description of this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.AccountResource.OwnerAccountSid">
            <summary>
            The unique 34 character id representing the parent of this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.AccountResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.AccountResource.Status">
            <summary>
            The status of this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.AccountResource.SubresourceUris">
            <summary>
            Account Instance Subresources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.AccountResource.Type">
            <summary>
            The type of this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.AccountResource.Uri">
            <summary>
            The URI for this resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.CreateAddressOptions">
            <summary>
            CreateAddressOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.PathAccountSid">
            <summary>
            The SID of the Account that will be responsible for the new Address resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.CustomerName">
            <summary>
            The name to associate with the new address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.Street">
            <summary>
            The number and street address of the new address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.City">
            <summary>
            The city of the new address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.Region">
            <summary>
            The state or region of the new address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.PostalCode">
            <summary>
            The postal code of the new address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.IsoCountry">
            <summary>
            The ISO country code of the new address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.EmergencyEnabled">
            <summary>
            Whether to enable emergency calling on the new address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.AutoCorrectAddress">
            <summary>
            Whether we should automatically correct the address
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.#ctor(System.String,System.String,System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new CreateAddressOptions
            </summary>
            <param name="customerName"> The name to associate with the new address </param>
            <param name="street"> The number and street address of the new address </param>
            <param name="city"> The city of the new address </param>
            <param name="region"> The state or region of the new address </param>
            <param name="postalCode"> The postal code of the new address </param>
            <param name="isoCountry"> The ISO country code of the new address </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateAddressOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteAddressOptions">
            <summary>
            DeleteAddressOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteAddressOptions.PathAccountSid">
            <summary>
            The SID of the Account that is responsible for the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteAddressOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteAddressOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteAddressOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteAddressOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchAddressOptions">
            <summary>
            FetchAddressOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchAddressOptions.PathAccountSid">
            <summary>
            The SID of the Account that is responsible for this address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchAddressOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchAddressOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchAddressOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchAddressOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions">
            <summary>
            UpdateAddressOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.PathAccountSid">
            <summary>
            The SID of the Account that is responsible for the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.CustomerName">
            <summary>
            The name to associate with the address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.Street">
            <summary>
            The number and street address of the address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.City">
            <summary>
            The city of the address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.Region">
            <summary>
            The state or region of the address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.PostalCode">
            <summary>
            The postal code of the address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.EmergencyEnabled">
            <summary>
            Whether to enable emergency calling on the address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.AutoCorrectAddress">
            <summary>
            Whether we should automatically correct the address
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateAddressOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateAddressOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadAddressOptions">
            <summary>
            ReadAddressOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadAddressOptions.PathAccountSid">
            <summary>
            The SID of the Account that is responsible for this address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadAddressOptions.CustomerName">
            <summary>
            The `customer_name` of the Address resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadAddressOptions.FriendlyName">
            <summary>
            The string that identifies the Address resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadAddressOptions.IsoCountry">
            <summary>
            The ISO country code of the Address resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadAddressOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.Create(Twilio.Rest.Api.V2010.Account.CreateAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Address parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.CreateAsync(Twilio.Rest.Api.V2010.Account.CreateAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Address parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.Create(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="customerName"> The name to associate with the new address </param>
            <param name="street"> The number and street address of the new address </param>
            <param name="city"> The city of the new address </param>
            <param name="region"> The state or region of the new address </param>
            <param name="postalCode"> The postal code of the new address </param>
            <param name="isoCountry"> The ISO country code of the new address </param>
            <param name="pathAccountSid"> The SID of the Account that will be responsible for the new Address resource </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="emergencyEnabled"> Whether to enable emergency calling on the new address </param>
            <param name="autoCorrectAddress"> Whether we should automatically correct the address </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="customerName"> The name to associate with the new address </param>
            <param name="street"> The number and street address of the new address </param>
            <param name="city"> The city of the new address </param>
            <param name="region"> The state or region of the new address </param>
            <param name="postalCode"> The postal code of the new address </param>
            <param name="isoCountry"> The ISO country code of the new address </param>
            <param name="pathAccountSid"> The SID of the Account that will be responsible for the new Address resource </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="emergencyEnabled"> Whether to enable emergency calling on the new address </param>
            <param name="autoCorrectAddress"> Whether we should automatically correct the address </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Address parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Address parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that is responsible for the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that is responsible for the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Address parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Address parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that is responsible for this address </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that is responsible for this address </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.Update(Twilio.Rest.Api.V2010.Account.UpdateAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Address parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Address parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.Update(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that is responsible for the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="customerName"> The name to associate with the address </param>
            <param name="street"> The number and street address of the address </param>
            <param name="city"> The city of the address </param>
            <param name="region"> The state or region of the address </param>
            <param name="postalCode"> The postal code of the address </param>
            <param name="emergencyEnabled"> Whether to enable emergency calling on the address </param>
            <param name="autoCorrectAddress"> Whether we should automatically correct the address </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that is responsible for the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="customerName"> The name to associate with the address </param>
            <param name="street"> The number and street address of the address </param>
            <param name="city"> The city of the address </param>
            <param name="region"> The state or region of the address </param>
            <param name="postalCode"> The postal code of the address </param>
            <param name="emergencyEnabled"> Whether to enable emergency calling on the address </param>
            <param name="autoCorrectAddress"> Whether we should automatically correct the address </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.Read(Twilio.Rest.Api.V2010.Account.ReadAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Address parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Address parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.Read(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that is responsible for this address </param>
            <param name="customerName"> The `customer_name` of the Address resources to read </param>
            <param name="friendlyName"> The string that identifies the Address resources to read </param>
            <param name="isoCountry"> The ISO country code of the Address resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.ReadAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that is responsible for this address </param>
            <param name="customerName"> The `customer_name` of the Address resources to read </param>
            <param name="friendlyName"> The string that identifies the Address resources to read </param>
            <param name="isoCountry"> The ISO country code of the Address resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Address </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AddressResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AddressResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AddressResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AddressResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AddressResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.AccountSid">
            <summary>
            The SID of the Account that is responsible for the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.City">
            <summary>
            The city in which the address is located
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.CustomerName">
            <summary>
            The name associated with the address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.IsoCountry">
            <summary>
            The ISO country code of the address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.PostalCode">
            <summary>
            The postal code of the address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.Region">
            <summary>
            The state or region of the address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.Street">
            <summary>
            The number and street address of the address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.EmergencyEnabled">
            <summary>
            Whether emergency calling has been enabled on this number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.Validated">
            <summary>
            Whether the address has been validated to comply with local regulation
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AddressResource.Verified">
            <summary>
            Whether the address has been verified to comply with regulation
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Address.ReadDependentPhoneNumberOptions">
            <summary>
            ReadDependentPhoneNumberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.ReadDependentPhoneNumberOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.ReadDependentPhoneNumberOptions.PathAddressSid">
            <summary>
            The SID of the Address resource associated with the phone number
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Address.ReadDependentPhoneNumberOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadDependentPhoneNumberOptions
            </summary>
            <param name="pathAddressSid"> The SID of the Address resource associated with the phone number </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Address.ReadDependentPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.Read(Twilio.Rest.Api.V2010.Account.Address.ReadDependentPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read DependentPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DependentPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Address.ReadDependentPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read DependentPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DependentPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAddressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DependentPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAddressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DependentPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DependentPhoneNumberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DependentPhoneNumberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.VoiceUrl">
            <summary>
            The URL we call when the phone number receives a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.VoiceFallbackUrl">
            <summary>
            The URL we call when an error occurs in TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.SmsFallbackMethod">
            <summary>
            The HTTP method used with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.SmsFallbackUrl">
            <summary>
            The URL that we call when an error occurs while retrieving or executing the TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.SmsMethod">
            <summary>
            The HTTP method to use with sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.SmsUrl">
            <summary>
            The URL we call when the phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.AddressRequirements">
            <summary>
            Whether the phone number requires an Address registered with Twilio
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.Capabilities">
            <summary>
            Indicate if a phone can receive calls or messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.StatusCallbackMethod">
            <summary>
            The HTTP method we use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.ApiVersion">
            <summary>
            The API version used to start a new TwiML session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.SmsApplicationSid">
            <summary>
            The SID of the application that handles SMS messages sent to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.VoiceApplicationSid">
            <summary>
            The SID of the application that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.TrunkSid">
            <summary>
            The SID of the Trunk that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.EmergencyStatus">
            <summary>
            Whether the phone number is enabled for emergency calling
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.EmergencyAddressSid">
            <summary>
            The emergency address configuration to use for emergency calling
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Address.DependentPhoneNumberResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions">
            <summary>
            Create a new application within your account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.ApiVersion">
            <summary>
            The API version to use to start a new TwiML session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.VoiceUrl">
            <summary>
            The URL to call when the phone number receives a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.VoiceMethod">
            <summary>
            The HTTP method to use with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.VoiceFallbackUrl">
            <summary>
            The URL to call when a TwiML error occurs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method to use with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.StatusCallbackMethod">
            <summary>
            The HTTP method to use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.SmsUrl">
            <summary>
            The URL to call when the phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.SmsMethod">
            <summary>
            The HTTP method to use with sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.SmsFallbackUrl">
            <summary>
            The URL to call when an error occurs while retrieving or executing the TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.SmsFallbackMethod">
            <summary>
            The HTTP method to use with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.SmsStatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.MessageStatusCallback">
            <summary>
            The URL to send message status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateApplicationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteApplicationOptions">
            <summary>
            Delete the application by the specified application sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteApplicationOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteApplicationOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteApplicationOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteApplicationOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteApplicationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchApplicationOptions">
            <summary>
            Fetch the application specified by the provided sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchApplicationOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchApplicationOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchApplicationOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchApplicationOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchApplicationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadApplicationOptions">
            <summary>
            Retrieve a list of applications representing an application within the requesting account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadApplicationOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadApplicationOptions.FriendlyName">
            <summary>
            The string that identifies the Application resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadApplicationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions">
            <summary>
            Updates the application's properties
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.ApiVersion">
            <summary>
            The API version to use to start a new TwiML session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.VoiceUrl">
            <summary>
            The URL to call when the phone number receives a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.VoiceMethod">
            <summary>
            The HTTP method to use with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.VoiceFallbackUrl">
            <summary>
            The URL to call when a TwiML error occurs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method to use with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.StatusCallbackMethod">
            <summary>
            The HTTP method to use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.SmsUrl">
            <summary>
            The URL to call when the phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.SmsMethod">
            <summary>
            The HTTP method to use with sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.SmsFallbackUrl">
            <summary>
            The URL to call when an error occurs while retrieving or executing the TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.SmsFallbackMethod">
            <summary>
            The HTTP method to use with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.SmsStatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.MessageStatusCallback">
            <summary>
            The URL to send message status information to your application
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateApplicationOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.Create(Twilio.Rest.Api.V2010.Account.CreateApplicationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new application within your account
            </summary>
            <param name="options"> Create Application parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.CreateAsync(Twilio.Rest.Api.V2010.Account.CreateApplicationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new application within your account
            </summary>
            <param name="options"> Create Application parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.Create(System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new application within your account
            </summary>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="apiVersion"> The API version to use to start a new TwiML session </param>
            <param name="voiceUrl"> The URL to call when the phone number receives a call </param>
            <param name="voiceMethod"> The HTTP method to use with the voice_url </param>
            <param name="voiceFallbackUrl"> The URL to call when a TwiML error occurs </param>
            <param name="voiceFallbackMethod"> The HTTP method to use with voice_fallback_url </param>
            <param name="statusCallback"> The URL to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method to use to call status_callback </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="smsUrl"> The URL to call when the phone number receives an incoming SMS message </param>
            <param name="smsMethod"> The HTTP method to use with sms_url </param>
            <param name="smsFallbackUrl"> The URL to call when an error occurs while retrieving or executing the TwiML </param>
            <param name="smsFallbackMethod"> The HTTP method to use with sms_fallback_url </param>
            <param name="smsStatusCallback"> The URL to send status information to your application </param>
            <param name="messageStatusCallback"> The URL to send message status information to your application </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.CreateAsync(System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new application within your account
            </summary>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="apiVersion"> The API version to use to start a new TwiML session </param>
            <param name="voiceUrl"> The URL to call when the phone number receives a call </param>
            <param name="voiceMethod"> The HTTP method to use with the voice_url </param>
            <param name="voiceFallbackUrl"> The URL to call when a TwiML error occurs </param>
            <param name="voiceFallbackMethod"> The HTTP method to use with voice_fallback_url </param>
            <param name="statusCallback"> The URL to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method to use to call status_callback </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="smsUrl"> The URL to call when the phone number receives an incoming SMS message </param>
            <param name="smsMethod"> The HTTP method to use with sms_url </param>
            <param name="smsFallbackUrl"> The URL to call when an error occurs while retrieving or executing the TwiML </param>
            <param name="smsFallbackMethod"> The HTTP method to use with sms_fallback_url </param>
            <param name="smsStatusCallback"> The URL to send status information to your application </param>
            <param name="messageStatusCallback"> The URL to send message status information to your application </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteApplicationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the application by the specified application sid
            </summary>
            <param name="options"> Delete Application parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteApplicationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the application by the specified application sid
            </summary>
            <param name="options"> Delete Application parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the application by the specified application sid
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the application by the specified application sid
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchApplicationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the application specified by the provided sid
            </summary>
            <param name="options"> Fetch Application parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchApplicationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the application specified by the provided sid
            </summary>
            <param name="options"> Fetch Application parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the application specified by the provided sid
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the application specified by the provided sid
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.Read(Twilio.Rest.Api.V2010.Account.ReadApplicationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of applications representing an application within the requesting account
            </summary>
            <param name="options"> Read Application parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadApplicationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of applications representing an application within the requesting account
            </summary>
            <param name="options"> Read Application parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of applications representing an application within the requesting account
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="friendlyName"> The string that identifies the Application resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of applications representing an application within the requesting account
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="friendlyName"> The string that identifies the Application resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.ApplicationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.ApplicationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.Update(Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the application's properties
            </summary>
            <param name="options"> Update Application parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateApplicationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the application's properties
            </summary>
            <param name="options"> Update Application parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.Update(System.String,System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the application's properties
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="apiVersion"> The API version to use to start a new TwiML session </param>
            <param name="voiceUrl"> The URL to call when the phone number receives a call </param>
            <param name="voiceMethod"> The HTTP method to use with the voice_url </param>
            <param name="voiceFallbackUrl"> The URL to call when a TwiML error occurs </param>
            <param name="voiceFallbackMethod"> The HTTP method to use with voice_fallback_url </param>
            <param name="statusCallback"> The URL to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method to use to call status_callback </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="smsUrl"> The URL to call when the phone number receives an incoming SMS message </param>
            <param name="smsMethod"> The HTTP method to use with sms_url </param>
            <param name="smsFallbackUrl"> The URL to call when an error occurs while retrieving or executing the TwiML </param>
            <param name="smsFallbackMethod"> The HTTP method to use with sms_fallback_url </param>
            <param name="smsStatusCallback"> The URL to send status information to your application </param>
            <param name="messageStatusCallback"> The URL to send message status information to your application </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the application's properties
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="apiVersion"> The API version to use to start a new TwiML session </param>
            <param name="voiceUrl"> The URL to call when the phone number receives a call </param>
            <param name="voiceMethod"> The HTTP method to use with the voice_url </param>
            <param name="voiceFallbackUrl"> The URL to call when a TwiML error occurs </param>
            <param name="voiceFallbackMethod"> The HTTP method to use with voice_fallback_url </param>
            <param name="statusCallback"> The URL to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method to use to call status_callback </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="smsUrl"> The URL to call when the phone number receives an incoming SMS message </param>
            <param name="smsMethod"> The HTTP method to use with sms_url </param>
            <param name="smsFallbackUrl"> The URL to call when an error occurs while retrieving or executing the TwiML </param>
            <param name="smsFallbackMethod"> The HTTP method to use with sms_fallback_url </param>
            <param name="smsStatusCallback"> The URL to send status information to your application </param>
            <param name="messageStatusCallback"> The URL to send message status information to your application </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Application </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ApplicationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ApplicationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ApplicationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.ApiVersion">
            <summary>
            The API version used to start a new TwiML session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.MessageStatusCallback">
            <summary>
            The URL to send message status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.SmsFallbackMethod">
            <summary>
            The HTTP method used with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.SmsFallbackUrl">
            <summary>
            The URL that we call when an error occurs while retrieving or executing the TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.SmsMethod">
            <summary>
            The HTTP method to use with sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.SmsStatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.SmsUrl">
            <summary>
            The URL we call when the phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.StatusCallbackMethod">
            <summary>
            The HTTP method we use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.VoiceFallbackUrl">
            <summary>
            The URL we call when a TwiML error occurs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ApplicationResource.VoiceUrl">
            <summary>
            The URL we call when the phone number receives a call
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchAuthorizedConnectAppOptions">
            <summary>
            Fetch an instance of an authorized-connect-app
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchAuthorizedConnectAppOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchAuthorizedConnectAppOptions.PathConnectAppSid">
            <summary>
            The SID of the Connect App to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchAuthorizedConnectAppOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchAuthorizedConnectAppOptions
            </summary>
            <param name="pathConnectAppSid"> The SID of the Connect App to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchAuthorizedConnectAppOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadAuthorizedConnectAppOptions">
            <summary>
            Retrieve a list of authorized-connect-apps belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadAuthorizedConnectAppOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadAuthorizedConnectAppOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchAuthorizedConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an authorized-connect-app
            </summary>
            <param name="options"> Fetch AuthorizedConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizedConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchAuthorizedConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an authorized-connect-app
            </summary>
            <param name="options"> Fetch AuthorizedConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizedConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an authorized-connect-app
            </summary>
            <param name="pathConnectAppSid"> The SID of the Connect App to fetch </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizedConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an authorized-connect-app
            </summary>
            <param name="pathConnectAppSid"> The SID of the Connect App to fetch </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizedConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.Read(Twilio.Rest.Api.V2010.Account.ReadAuthorizedConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of authorized-connect-apps belonging to the account used to make the request
            </summary>
            <param name="options"> Read AuthorizedConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizedConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadAuthorizedConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of authorized-connect-apps belonging to the account used to make the request
            </summary>
            <param name="options"> Read AuthorizedConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizedConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of authorized-connect-apps belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizedConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of authorized-connect-apps belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizedConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AuthorizedConnectAppResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AuthorizedConnectAppResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.ConnectAppCompanyName">
            <summary>
            The company name set for the Connect App
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.ConnectAppDescription">
            <summary>
            A detailed description of the app
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.ConnectAppFriendlyName">
            <summary>
            The name of the Connect App
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.ConnectAppHomepageUrl">
            <summary>
            The public URL for the Connect App
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.ConnectAppSid">
            <summary>
            The SID that we assigned to the Connect App
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.Permissions">
            <summary>
            Permissions authorized to the app
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AuthorizedConnectAppResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadAvailablePhoneNumberCountryOptions">
            <summary>
            ReadAvailablePhoneNumberCountryOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadAvailablePhoneNumberCountryOptions.PathAccountSid">
            <summary>
            The SID of the Account requesting the available phone number Country resources
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadAvailablePhoneNumberCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchAvailablePhoneNumberCountryOptions">
            <summary>
            FetchAvailablePhoneNumberCountryOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchAvailablePhoneNumberCountryOptions.PathAccountSid">
            <summary>
            The SID of the Account requesting the available phone number Country resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchAvailablePhoneNumberCountryOptions.PathCountryCode">
            <summary>
            The ISO country code of the country to fetch available phone number information about
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchAvailablePhoneNumberCountryOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchAvailablePhoneNumberCountryOptions
            </summary>
            <param name="pathCountryCode"> The ISO country code of the country to fetch available phone number information
                                  about </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchAvailablePhoneNumberCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.Read(Twilio.Rest.Api.V2010.Account.ReadAvailablePhoneNumberCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read AvailablePhoneNumberCountry parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailablePhoneNumberCountry </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadAvailablePhoneNumberCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read AvailablePhoneNumberCountry parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailablePhoneNumberCountry </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account requesting the available phone number Country resources
                                 </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailablePhoneNumberCountry </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account requesting the available phone number Country resources
                                 </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailablePhoneNumberCountry </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchAvailablePhoneNumberCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch AvailablePhoneNumberCountry parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailablePhoneNumberCountry </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchAvailablePhoneNumberCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch AvailablePhoneNumberCountry parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailablePhoneNumberCountry </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathCountryCode"> The ISO country code of the country to fetch available phone number information
                                  about </param>
            <param name="pathAccountSid"> The SID of the Account requesting the available phone number Country resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailablePhoneNumberCountry </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathCountryCode"> The ISO country code of the country to fetch available phone number information
                                  about </param>
            <param name="pathAccountSid"> The SID of the Account requesting the available phone number Country resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailablePhoneNumberCountry </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AvailablePhoneNumberCountryResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AvailablePhoneNumberCountryResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.CountryCode">
            <summary>
            The ISO-3166-1 country code of the country.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.Country">
            <summary>
            The name of the country
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.Uri">
            <summary>
            The URI of the Country resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.Beta">
            <summary>
            Whether all phone numbers available in the country are new to the Twilio platform.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountryResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions">
            <summary>
            ReadLocalOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.PathAccountSid">
            <summary>
            The SID of the Account requesting the AvailablePhoneNumber resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.PathCountryCode">
            <summary>
            The ISO Country code of the country from which to read phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.AreaCode">
            <summary>
            The area code of the phone numbers to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.Contains">
            <summary>
            The pattern on which to match phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.SmsEnabled">
            <summary>
            Whether the phone numbers can receive text messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.MmsEnabled">
            <summary>
            Whether the phone numbers can receive MMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.VoiceEnabled">
            <summary>
            Whether the phone numbers can receive calls.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.ExcludeAllAddressRequired">
            <summary>
            Whether to exclude phone numbers that require an Address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.ExcludeLocalAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a local address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.ExcludeForeignAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a foreign address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.Beta">
            <summary>
            Whether to read phone numbers new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.NearNumber">
            <summary>
            Given a phone number, find a geographically close number within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.NearLatLong">
            <summary>
            Given a latitude/longitude pair lat,long find geographically close numbers within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.Distance">
            <summary>
            The search radius, in miles, for a near_ query. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.InPostalCode">
            <summary>
            Limit results to a particular postal code. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.InRegion">
            <summary>
            Limit results to a particular region. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.InRateCenter">
            <summary>
            Limit results to a specific rate center, or given a phone number search within the same rate center as that number. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.InLata">
            <summary>
            Limit results to a specific local access and transport area. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.InLocality">
            <summary>
            Limit results to a particular locality
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.FaxEnabled">
            <summary>
            Whether the phone numbers can receive faxes
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadLocalOptions
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.Read(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Local parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.ReadAsync(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadLocalOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Local parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.Read(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a LocalResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> LocalResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.FriendlyName">
            <summary>
            A formatted version of the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.Lata">
            <summary>
            The LATA of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.Locality">
            <summary>
            The locality or city of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.RateCenter">
            <summary>
            The rate center of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.Latitude">
            <summary>
            The latitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.Longitude">
            <summary>
            The longitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.Region">
            <summary>
            The two-letter state or province abbreviation of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.PostalCode">
            <summary>
            The postal or ZIP code of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.IsoCountry">
            <summary>
            The ISO country code of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.AddressRequirements">
            <summary>
            The type of Address resource the phone number requires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.LocalResource.Capabilities">
            <summary>
            Whether a phone number can receive calls or messages
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions">
            <summary>
            ReadMachineToMachineOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.PathAccountSid">
            <summary>
            The SID of the Account requesting the AvailablePhoneNumber resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.PathCountryCode">
            <summary>
            The ISO Country code of the country from which to read phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.AreaCode">
            <summary>
            The area code of the phone numbers to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.Contains">
            <summary>
            The pattern on which to match phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.SmsEnabled">
            <summary>
            Whether the phone numbers can receive text messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.MmsEnabled">
            <summary>
            Whether the phone numbers can receive MMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.VoiceEnabled">
            <summary>
            Whether the phone numbers can receive calls.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.ExcludeAllAddressRequired">
            <summary>
            Whether to exclude phone numbers that require an Address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.ExcludeLocalAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a local address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.ExcludeForeignAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a foreign address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.Beta">
            <summary>
            Whether to read phone numbers new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.NearNumber">
            <summary>
            Given a phone number, find a geographically close number within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.NearLatLong">
            <summary>
            Given a latitude/longitude pair lat,long find geographically close numbers within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.Distance">
            <summary>
            The search radius, in miles, for a near_ query. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.InPostalCode">
            <summary>
            Limit results to a particular postal code. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.InRegion">
            <summary>
            Limit results to a particular region. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.InRateCenter">
            <summary>
            Limit results to a specific rate center, or given a phone number search within the same rate center as that number. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.InLata">
            <summary>
            Limit results to a specific local access and transport area. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.InLocality">
            <summary>
            Limit results to a particular locality
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.FaxEnabled">
            <summary>
            Whether the phone numbers can receive faxes
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadMachineToMachineOptions
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.Read(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read MachineToMachine parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MachineToMachine </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.ReadAsync(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMachineToMachineOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read MachineToMachine parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MachineToMachine </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.Read(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MachineToMachine </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MachineToMachine </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MachineToMachineResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MachineToMachineResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.FriendlyName">
            <summary>
            A formatted version of the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.Lata">
            <summary>
            The LATA of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.Locality">
            <summary>
            The locality or city of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.RateCenter">
            <summary>
            The rate center of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.Latitude">
            <summary>
            The latitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.Longitude">
            <summary>
            The longitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.Region">
            <summary>
            The two-letter state or province abbreviation of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.PostalCode">
            <summary>
            The postal or ZIP code of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.IsoCountry">
            <summary>
            The ISO country code of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.AddressRequirements">
            <summary>
            The type of Address resource the phone number requires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MachineToMachineResource.Capabilities">
            <summary>
            Whether a phone number can receive calls or messages
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions">
            <summary>
            ReadMobileOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.PathAccountSid">
            <summary>
            The SID of the Account requesting the AvailablePhoneNumber resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.PathCountryCode">
            <summary>
            The ISO Country code of the country from which to read phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.AreaCode">
            <summary>
            The area code of the phone numbers to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.Contains">
            <summary>
            The pattern on which to match phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.SmsEnabled">
            <summary>
            Whether the phone numbers can receive text messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.MmsEnabled">
            <summary>
            Whether the phone numbers can receive MMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.VoiceEnabled">
            <summary>
            Whether the phone numbers can receive calls.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.ExcludeAllAddressRequired">
            <summary>
            Whether to exclude phone numbers that require an Address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.ExcludeLocalAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a local address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.ExcludeForeignAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a foreign address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.Beta">
            <summary>
            Whether to read phone numbers new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.NearNumber">
            <summary>
            Given a phone number, find a geographically close number within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.NearLatLong">
            <summary>
            Given a latitude/longitude pair lat,long find geographically close numbers within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.Distance">
            <summary>
            The search radius, in miles, for a near_ query. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.InPostalCode">
            <summary>
            Limit results to a particular postal code. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.InRegion">
            <summary>
            Limit results to a particular region. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.InRateCenter">
            <summary>
            Limit results to a specific rate center, or given a phone number search within the same rate center as that number. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.InLata">
            <summary>
            Limit results to a specific local access and transport area. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.InLocality">
            <summary>
            Limit results to a particular locality
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.FaxEnabled">
            <summary>
            Whether the phone numbers can receive faxes
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadMobileOptions
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.Read(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Mobile parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.ReadAsync(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadMobileOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Mobile parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.Read(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MobileResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MobileResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.FriendlyName">
            <summary>
            A formatted version of the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.Lata">
            <summary>
            The LATA of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.Locality">
            <summary>
            The locality or city of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.RateCenter">
            <summary>
            The rate center of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.Latitude">
            <summary>
            The latitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.Longitude">
            <summary>
            The longitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.Region">
            <summary>
            The two-letter state or province abbreviation of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.PostalCode">
            <summary>
            The postal or ZIP code of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.IsoCountry">
            <summary>
            The ISO country code of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.AddressRequirements">
            <summary>
            The type of Address resource the phone number requires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.MobileResource.Capabilities">
            <summary>
            Whether a phone number can receive calls or messages
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions">
            <summary>
            ReadNationalOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.PathAccountSid">
            <summary>
            The SID of the Account requesting the AvailablePhoneNumber resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.PathCountryCode">
            <summary>
            The ISO Country code of the country from which to read phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.AreaCode">
            <summary>
            The area code of the phone numbers to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.Contains">
            <summary>
            The pattern on which to match phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.SmsEnabled">
            <summary>
            Whether the phone numbers can receive text messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.MmsEnabled">
            <summary>
            Whether the phone numbers can receive MMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.VoiceEnabled">
            <summary>
            Whether the phone numbers can receive calls.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.ExcludeAllAddressRequired">
            <summary>
            Whether to exclude phone numbers that require an Address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.ExcludeLocalAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a local address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.ExcludeForeignAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a foreign address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.Beta">
            <summary>
            Whether to read phone numbers new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.NearNumber">
            <summary>
            Given a phone number, find a geographically close number within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.NearLatLong">
            <summary>
            Given a latitude/longitude pair lat,long find geographically close numbers within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.Distance">
            <summary>
            The search radius, in miles, for a near_ query. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.InPostalCode">
            <summary>
            Limit results to a particular postal code. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.InRegion">
            <summary>
            Limit results to a particular region. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.InRateCenter">
            <summary>
            Limit results to a specific rate center, or given a phone number search within the same rate center as that number. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.InLata">
            <summary>
            Limit results to a specific local access and transport area. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.InLocality">
            <summary>
            Limit results to a particular locality
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.FaxEnabled">
            <summary>
            Whether the phone numbers can receive faxes
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadNationalOptions
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.Read(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read National parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of National </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.ReadAsync(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadNationalOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read National parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of National </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.Read(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of National </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of National </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a NationalResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> NationalResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.FriendlyName">
            <summary>
            A formatted version of the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.Lata">
            <summary>
            The LATA of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.Locality">
            <summary>
            The locality or city of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.RateCenter">
            <summary>
            The rate center of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.Latitude">
            <summary>
            The latitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.Longitude">
            <summary>
            The longitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.Region">
            <summary>
            The two-letter state or province abbreviation of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.PostalCode">
            <summary>
            The postal or ZIP code of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.IsoCountry">
            <summary>
            The ISO country code of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.AddressRequirements">
            <summary>
            The type of Address resource the phone number requires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.NationalResource.Capabilities">
            <summary>
            Whether a phone number can receive calls or messages
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions">
            <summary>
            ReadSharedCostOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.PathAccountSid">
            <summary>
            The SID of the Account requesting the AvailablePhoneNumber resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.PathCountryCode">
            <summary>
            The ISO Country code of the country from which to read phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.AreaCode">
            <summary>
            The area code of the phone numbers to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.Contains">
            <summary>
            The pattern on which to match phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.SmsEnabled">
            <summary>
            Whether the phone numbers can receive text messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.MmsEnabled">
            <summary>
            Whether the phone numbers can receive MMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.VoiceEnabled">
            <summary>
            Whether the phone numbers can receive calls.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.ExcludeAllAddressRequired">
            <summary>
            Whether to exclude phone numbers that require an Address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.ExcludeLocalAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a local address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.ExcludeForeignAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a foreign address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.Beta">
            <summary>
            Whether to read phone numbers new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.NearNumber">
            <summary>
            Given a phone number, find a geographically close number within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.NearLatLong">
            <summary>
            Given a latitude/longitude pair lat,long find geographically close numbers within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.Distance">
            <summary>
            The search radius, in miles, for a near_ query. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.InPostalCode">
            <summary>
            Limit results to a particular postal code. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.InRegion">
            <summary>
            Limit results to a particular region. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.InRateCenter">
            <summary>
            Limit results to a specific rate center, or given a phone number search within the same rate center as that number. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.InLata">
            <summary>
            Limit results to a specific local access and transport area. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.InLocality">
            <summary>
            Limit results to a particular locality
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.FaxEnabled">
            <summary>
            Whether the phone numbers can receive faxes
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadSharedCostOptions
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.Read(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SharedCost parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SharedCost </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.ReadAsync(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadSharedCostOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SharedCost parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SharedCost </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.Read(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SharedCost </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SharedCost </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SharedCostResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SharedCostResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.FriendlyName">
            <summary>
            A formatted version of the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.Lata">
            <summary>
            The LATA of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.Locality">
            <summary>
            The locality or city of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.RateCenter">
            <summary>
            The rate center of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.Latitude">
            <summary>
            The latitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.Longitude">
            <summary>
            The longitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.Region">
            <summary>
            The two-letter state or province abbreviation of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.PostalCode">
            <summary>
            The postal or ZIP code of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.IsoCountry">
            <summary>
            The ISO country code of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.AddressRequirements">
            <summary>
            The type of Address resource the phone number requires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.SharedCostResource.Capabilities">
            <summary>
            Whether a phone number can receive calls or messages
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions">
            <summary>
            ReadTollFreeOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.PathAccountSid">
            <summary>
            The SID of the Account requesting the AvailablePhoneNumber resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.PathCountryCode">
            <summary>
            The ISO Country code of the country from which to read phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.AreaCode">
            <summary>
            The area code of the phone numbers to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.Contains">
            <summary>
            The pattern on which to match phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.SmsEnabled">
            <summary>
            Whether the phone numbers can receive text messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.MmsEnabled">
            <summary>
            Whether the phone numbers can receive MMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.VoiceEnabled">
            <summary>
            Whether the phone numbers can receive calls.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.ExcludeAllAddressRequired">
            <summary>
            Whether to exclude phone numbers that require an Address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.ExcludeLocalAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a local address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.ExcludeForeignAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a foreign address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.Beta">
            <summary>
            Whether to read phone numbers new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.NearNumber">
            <summary>
            Given a phone number, find a geographically close number within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.NearLatLong">
            <summary>
            Given a latitude/longitude pair lat,long find geographically close numbers within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.Distance">
            <summary>
            The search radius, in miles, for a near_ query. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.InPostalCode">
            <summary>
            Limit results to a particular postal code. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.InRegion">
            <summary>
            Limit results to a particular region. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.InRateCenter">
            <summary>
            Limit results to a specific rate center, or given a phone number search within the same rate center as that number. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.InLata">
            <summary>
            Limit results to a specific local access and transport area. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.InLocality">
            <summary>
            Limit results to a particular locality
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.FaxEnabled">
            <summary>
            Whether the phone numbers can receive faxes
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadTollFreeOptions
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.Read(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read TollFree parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.ReadAsync(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadTollFreeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read TollFree parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.Read(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TollFreeResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TollFreeResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.FriendlyName">
            <summary>
            A formatted version of the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.Lata">
            <summary>
            The LATA of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.Locality">
            <summary>
            The locality or city of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.RateCenter">
            <summary>
            The rate center of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.Latitude">
            <summary>
            The latitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.Longitude">
            <summary>
            The longitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.Region">
            <summary>
            The two-letter state or province abbreviation of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.PostalCode">
            <summary>
            The postal or ZIP code of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.IsoCountry">
            <summary>
            The ISO country code of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.AddressRequirements">
            <summary>
            The type of Address resource the phone number requires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.TollFreeResource.Capabilities">
            <summary>
            Whether a phone number can receive calls or messages
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions">
            <summary>
            ReadVoipOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.PathAccountSid">
            <summary>
            The SID of the Account requesting the AvailablePhoneNumber resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.PathCountryCode">
            <summary>
            The ISO Country code of the country from which to read phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.AreaCode">
            <summary>
            The area code of the phone numbers to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.Contains">
            <summary>
            The pattern on which to match phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.SmsEnabled">
            <summary>
            Whether the phone numbers can receive text messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.MmsEnabled">
            <summary>
            Whether the phone numbers can receive MMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.VoiceEnabled">
            <summary>
            Whether the phone numbers can receive calls.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.ExcludeAllAddressRequired">
            <summary>
            Whether to exclude phone numbers that require an Address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.ExcludeLocalAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a local address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.ExcludeForeignAddressRequired">
            <summary>
            Whether to exclude phone numbers that require a foreign address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.Beta">
            <summary>
            Whether to read phone numbers new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.NearNumber">
            <summary>
            Given a phone number, find a geographically close number within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.NearLatLong">
            <summary>
            Given a latitude/longitude pair lat,long find geographically close numbers within distance miles. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.Distance">
            <summary>
            The search radius, in miles, for a near_ query. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.InPostalCode">
            <summary>
            Limit results to a particular postal code. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.InRegion">
            <summary>
            Limit results to a particular region. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.InRateCenter">
            <summary>
            Limit results to a specific rate center, or given a phone number search within the same rate center as that number. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.InLata">
            <summary>
            Limit results to a specific local access and transport area. (US/Canada only)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.InLocality">
            <summary>
            Limit results to a particular locality
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.FaxEnabled">
            <summary>
            Whether the phone numbers can receive faxes
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadVoipOptions
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.Read(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Voip parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Voip </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.ReadAsync(Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.ReadVoipOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Voip parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Voip </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.Read(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Voip </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCountryCode"> The ISO Country code of the country from which to read phone numbers </param>
            <param name="pathAccountSid"> The SID of the Account requesting the AvailablePhoneNumber resources </param>
            <param name="areaCode"> The area code of the phone numbers to read </param>
            <param name="contains"> The pattern on which to match phone numbers </param>
            <param name="smsEnabled"> Whether the phone numbers can receive text messages </param>
            <param name="mmsEnabled"> Whether the phone numbers can receive MMS messages </param>
            <param name="voiceEnabled"> Whether the phone numbers can receive calls. </param>
            <param name="excludeAllAddressRequired"> Whether to exclude phone numbers that require an Address </param>
            <param name="excludeLocalAddressRequired"> Whether to exclude phone numbers that require a local address </param>
            <param name="excludeForeignAddressRequired"> Whether to exclude phone numbers that require a foreign address
                                                </param>
            <param name="beta"> Whether to read phone numbers new to the Twilio platform </param>
            <param name="nearNumber"> Given a phone number, find a geographically close number within distance miles.
                             (US/Canada only) </param>
            <param name="nearLatLong"> Given a latitude/longitude pair lat,long find geographically close numbers within
                              distance miles. (US/Canada only) </param>
            <param name="distance"> The search radius, in miles, for a near_ query. (US/Canada only) </param>
            <param name="inPostalCode"> Limit results to a particular postal code. (US/Canada only) </param>
            <param name="inRegion"> Limit results to a particular region. (US/Canada only) </param>
            <param name="inRateCenter"> Limit results to a specific rate center, or given a phone number search within the same
                               rate center as that number. (US/Canada only) </param>
            <param name="inLata"> Limit results to a specific local access and transport area. (US/Canada only) </param>
            <param name="inLocality"> Limit results to a particular locality </param>
            <param name="faxEnabled"> Whether the phone numbers can receive faxes </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Voip </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a VoipResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> VoipResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.FriendlyName">
            <summary>
            A formatted version of the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.Lata">
            <summary>
            The LATA of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.Locality">
            <summary>
            The locality or city of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.RateCenter">
            <summary>
            The rate center of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.Latitude">
            <summary>
            The latitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.Longitude">
            <summary>
            The longitude of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.Region">
            <summary>
            The two-letter state or province abbreviation of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.PostalCode">
            <summary>
            The postal or ZIP code of this phone number's location
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.IsoCountry">
            <summary>
            The ISO country code of this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.AddressRequirements">
            <summary>
            The type of Address resource the phone number requires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.AvailablePhoneNumberCountry.VoipResource.Capabilities">
            <summary>
            Whether a phone number can receive calls or messages
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchBalanceOptions">
            <summary>
            Fetch the balance for an Account based on Account Sid. Balance changes may not be reflected immediately. Child
            accounts do not contain balance information
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchBalanceOptions.PathAccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchBalanceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.BalanceResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchBalanceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the balance for an Account based on Account Sid. Balance changes may not be reflected immediately. Child
            accounts do not contain balance information
            </summary>
            <param name="options"> Fetch Balance parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Balance </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.BalanceResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchBalanceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the balance for an Account based on Account Sid. Balance changes may not be reflected immediately. Child
            accounts do not contain balance information
            </summary>
            <param name="options"> Fetch Balance parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Balance </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.BalanceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the balance for an Account based on Account Sid. Balance changes may not be reflected immediately. Child
            accounts do not contain balance information
            </summary>
            <param name="pathAccountSid"> Account Sid. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Balance </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.BalanceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the balance for an Account based on Account Sid. Balance changes may not be reflected immediately. Child
            accounts do not contain balance information
            </summary>
            <param name="pathAccountSid"> Account Sid. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Balance </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.BalanceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a BalanceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> BalanceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.BalanceResource.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.BalanceResource.Balance">
            <summary>
            Account balance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.BalanceResource.Currency">
            <summary>
            Currency units
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.CreateCallOptions">
            <summary>
            Create a new outgoing call to phones, SIP-enabled endpoints or Twilio Client connections
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.To">
            <summary>
            Phone number, SIP address, or client identifier to call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.From">
            <summary>
            Twilio number from which to originate the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.Url">
            <summary>
            The absolute URL that returns TwiML for this call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.ApplicationSid">
            <summary>
            The SID of the Application resource that will handle the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.Method">
            <summary>
            HTTP method to use to fetch TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.FallbackUrl">
            <summary>
            Fallback URL in case of error
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.FallbackMethod">
            <summary>
            HTTP Method to use with fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.StatusCallbackEvent">
            <summary>
            The call progress events that we send to the `status_callback` URL.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.StatusCallbackMethod">
            <summary>
            HTTP Method to use with status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.SendDigits">
            <summary>
            The digits to dial after connecting to the number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.Timeout">
            <summary>
            Number of seconds to wait for an answer
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.Record">
            <summary>
            Whether or not to record the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.RecordingChannels">
            <summary>
            The number of channels in the final recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.RecordingStatusCallback">
            <summary>
            The URL that we call when the recording is available to be accessed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.RecordingStatusCallbackMethod">
            <summary>
            The HTTP method we should use when calling the `recording_status_callback` URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.SipAuthUsername">
            <summary>
            The username used to authenticate the caller making a SIP call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.SipAuthPassword">
            <summary>
            The password required to authenticate the user account specified in `sip_auth_username`.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.MachineDetection">
            <summary>
            Enable machine detection or end of greeting detection
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.MachineDetectionTimeout">
            <summary>
            Number of seconds to wait for machine detection
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.RecordingStatusCallbackEvent">
            <summary>
            The recording status events that will trigger calls to the URL specified in `recording_status_callback`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.Trim">
            <summary>
            Set this parameter to control trimming of silence on the recording.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.CallerId">
            <summary>
            The phone number, SIP address, or Client identifier that made this call. Phone numbers are in E.164 format (e.g., +16175551212). SIP addresses are formatted as `name@company.com`.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.MachineDetectionSpeechThreshold">
            <summary>
            Number of milliseconds for measuring stick for the length of the speech activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.MachineDetectionSpeechEndThreshold">
            <summary>
            Number of milliseconds of silence after speech activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateCallOptions.MachineDetectionSilenceTimeout">
            <summary>
            Number of milliseconds of initial silence
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateCallOptions.#ctor(Twilio.Types.IEndpoint,Twilio.Types.IEndpoint)">
            <summary>
            Construct a new CreateCallOptions
            </summary>
            <param name="to"> Phone number, SIP address, or client identifier to call </param>
            <param name="from"> Twilio number from which to originate the call </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateCallOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteCallOptions">
            <summary>
            Delete a Call record from your account. Once the record is deleted, it will no longer appear in the API and Account
            Portal logs.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteCallOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteCallOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteCallOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteCallOptions
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteCallOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchCallOptions">
            <summary>
            Fetch the call specified by the provided Call SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchCallOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchCallOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchCallOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCallOptions
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchCallOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadCallOptions">
            <summary>
            Retrieves a collection of calls made to and from your account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadCallOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadCallOptions.To">
            <summary>
            Phone number or Client identifier of calls to include
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadCallOptions.From">
            <summary>
            Phone number or Client identifier to filter `from` on
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadCallOptions.ParentCallSid">
            <summary>
            Parent call SID to filter on
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadCallOptions.Status">
            <summary>
            The status of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadCallOptions.StartTimeBefore">
            <summary>
            Only include calls that started on this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadCallOptions.StartTime">
            <summary>
            Only include calls that started on this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadCallOptions.StartTimeAfter">
            <summary>
            Only include calls that started on this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadCallOptions.EndTimeBefore">
            <summary>
            Only include calls that ended on this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadCallOptions.EndTime">
            <summary>
            Only include calls that ended on this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadCallOptions.EndTimeAfter">
            <summary>
            Only include calls that ended on this date
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadCallOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateCallOptions">
            <summary>
            Initiates a call redirect or terminates a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.Url">
            <summary>
            The absolute URL that returns TwiML for this call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.Method">
            <summary>
            HTTP method to use to fetch TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.Status">
            <summary>
            The new status to update the call with.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.FallbackUrl">
            <summary>
            Fallback URL in case of error
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.FallbackMethod">
            <summary>
            HTTP Method to use with fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.StatusCallbackMethod">
            <summary>
            HTTP Method to use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.Twiml">
            <summary>
            TwiML instructions for the call
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateCallOptions
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateCallOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.Create(Twilio.Rest.Api.V2010.Account.CreateCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new outgoing call to phones, SIP-enabled endpoints or Twilio Client connections
            </summary>
            <param name="options"> Create Call parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.CreateAsync(Twilio.Rest.Api.V2010.Account.CreateCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new outgoing call to phones, SIP-enabled endpoints or Twilio Client connections
            </summary>
            <param name="options"> Create Call parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.Create(Twilio.Types.IEndpoint,Twilio.Types.IEndpoint,System.String,System.Uri,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Collections.Generic.List{System.String},Twilio.Http.HttpMethod,System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.String,Twilio.Http.HttpMethod,System.String,System.String,System.String,System.Nullable{System.Int32},System.Collections.Generic.List{System.String},System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new outgoing call to phones, SIP-enabled endpoints or Twilio Client connections
            </summary>
            <param name="to"> Phone number, SIP address, or client identifier to call </param>
            <param name="from"> Twilio number from which to originate the call </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="url"> The absolute URL that returns TwiML for this call </param>
            <param name="applicationSid"> The SID of the Application resource that will handle the call </param>
            <param name="method"> HTTP method to use to fetch TwiML </param>
            <param name="fallbackUrl"> Fallback URL in case of error </param>
            <param name="fallbackMethod"> HTTP Method to use with fallback_url </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackEvent"> The call progress events that we send to the `status_callback` URL. </param>
            <param name="statusCallbackMethod"> HTTP Method to use with status_callback </param>
            <param name="sendDigits"> The digits to dial after connecting to the number </param>
            <param name="timeout"> Number of seconds to wait for an answer </param>
            <param name="record"> Whether or not to record the call </param>
            <param name="recordingChannels"> The number of channels in the final recording </param>
            <param name="recordingStatusCallback"> The URL that we call when the recording is available to be accessed </param>
            <param name="recordingStatusCallbackMethod"> The HTTP method we should use when calling the
                                                `recording_status_callback` URL </param>
            <param name="sipAuthUsername"> The username used to authenticate the caller making a SIP call </param>
            <param name="sipAuthPassword"> The password required to authenticate the user account specified in
                                  `sip_auth_username`. </param>
            <param name="machineDetection"> Enable machine detection or end of greeting detection </param>
            <param name="machineDetectionTimeout"> Number of seconds to wait for machine detection </param>
            <param name="recordingStatusCallbackEvent"> The recording status events that will trigger calls to the URL
                                               specified in `recording_status_callback` </param>
            <param name="trim"> Set this parameter to control trimming of silence on the recording. </param>
            <param name="callerId"> The phone number, SIP address, or Client identifier that made this call. Phone numbers are
                           in E.164 format (e.g., +16175551212). SIP addresses are formatted as `name@company.com`. </param>
            <param name="machineDetectionSpeechThreshold"> Number of milliseconds for measuring stick for the length of the
                                                  speech activity </param>
            <param name="machineDetectionSpeechEndThreshold"> Number of milliseconds of silence after speech activity </param>
            <param name="machineDetectionSilenceTimeout"> Number of milliseconds of initial silence </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.CreateAsync(Twilio.Types.IEndpoint,Twilio.Types.IEndpoint,System.String,System.Uri,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Collections.Generic.List{System.String},Twilio.Http.HttpMethod,System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.String,Twilio.Http.HttpMethod,System.String,System.String,System.String,System.Nullable{System.Int32},System.Collections.Generic.List{System.String},System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new outgoing call to phones, SIP-enabled endpoints or Twilio Client connections
            </summary>
            <param name="to"> Phone number, SIP address, or client identifier to call </param>
            <param name="from"> Twilio number from which to originate the call </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="url"> The absolute URL that returns TwiML for this call </param>
            <param name="applicationSid"> The SID of the Application resource that will handle the call </param>
            <param name="method"> HTTP method to use to fetch TwiML </param>
            <param name="fallbackUrl"> Fallback URL in case of error </param>
            <param name="fallbackMethod"> HTTP Method to use with fallback_url </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackEvent"> The call progress events that we send to the `status_callback` URL. </param>
            <param name="statusCallbackMethod"> HTTP Method to use with status_callback </param>
            <param name="sendDigits"> The digits to dial after connecting to the number </param>
            <param name="timeout"> Number of seconds to wait for an answer </param>
            <param name="record"> Whether or not to record the call </param>
            <param name="recordingChannels"> The number of channels in the final recording </param>
            <param name="recordingStatusCallback"> The URL that we call when the recording is available to be accessed </param>
            <param name="recordingStatusCallbackMethod"> The HTTP method we should use when calling the
                                                `recording_status_callback` URL </param>
            <param name="sipAuthUsername"> The username used to authenticate the caller making a SIP call </param>
            <param name="sipAuthPassword"> The password required to authenticate the user account specified in
                                  `sip_auth_username`. </param>
            <param name="machineDetection"> Enable machine detection or end of greeting detection </param>
            <param name="machineDetectionTimeout"> Number of seconds to wait for machine detection </param>
            <param name="recordingStatusCallbackEvent"> The recording status events that will trigger calls to the URL
                                               specified in `recording_status_callback` </param>
            <param name="trim"> Set this parameter to control trimming of silence on the recording. </param>
            <param name="callerId"> The phone number, SIP address, or Client identifier that made this call. Phone numbers are
                           in E.164 format (e.g., +16175551212). SIP addresses are formatted as `name@company.com`. </param>
            <param name="machineDetectionSpeechThreshold"> Number of milliseconds for measuring stick for the length of the
                                                  speech activity </param>
            <param name="machineDetectionSpeechEndThreshold"> Number of milliseconds of silence after speech activity </param>
            <param name="machineDetectionSilenceTimeout"> Number of milliseconds of initial silence </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Call record from your account. Once the record is deleted, it will no longer appear in the API and Account
            Portal logs.
            </summary>
            <param name="options"> Delete Call parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Call record from your account. Once the record is deleted, it will no longer appear in the API and Account
            Portal logs.
            </summary>
            <param name="options"> Delete Call parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Call record from your account. Once the record is deleted, it will no longer appear in the API and Account
            Portal logs.
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Call record from your account. Once the record is deleted, it will no longer appear in the API and Account
            Portal logs.
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the call specified by the provided Call SID
            </summary>
            <param name="options"> Fetch Call parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the call specified by the provided Call SID
            </summary>
            <param name="options"> Fetch Call parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the call specified by the provided Call SID
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the call specified by the provided Call SID
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.Read(Twilio.Rest.Api.V2010.Account.ReadCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of calls made to and from your account
            </summary>
            <param name="options"> Read Call parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of calls made to and from your account
            </summary>
            <param name="options"> Read Call parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.Read(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.String,Twilio.Rest.Api.V2010.Account.CallResource.StatusEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of calls made to and from your account
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to read </param>
            <param name="to"> Phone number or Client identifier of calls to include </param>
            <param name="from"> Phone number or Client identifier to filter `from` on </param>
            <param name="parentCallSid"> Parent call SID to filter on </param>
            <param name="status"> The status of the resources to read </param>
            <param name="startTimeBefore"> Only include calls that started on this date </param>
            <param name="startTime"> Only include calls that started on this date </param>
            <param name="startTimeAfter"> Only include calls that started on this date </param>
            <param name="endTimeBefore"> Only include calls that ended on this date </param>
            <param name="endTime"> Only include calls that ended on this date </param>
            <param name="endTimeAfter"> Only include calls that ended on this date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.ReadAsync(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.String,Twilio.Rest.Api.V2010.Account.CallResource.StatusEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieves a collection of calls made to and from your account
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to read </param>
            <param name="to"> Phone number or Client identifier of calls to include </param>
            <param name="from"> Phone number or Client identifier to filter `from` on </param>
            <param name="parentCallSid"> Parent call SID to filter on </param>
            <param name="status"> The status of the resources to read </param>
            <param name="startTimeBefore"> Only include calls that started on this date </param>
            <param name="startTime"> Only include calls that started on this date </param>
            <param name="startTimeAfter"> Only include calls that started on this date </param>
            <param name="endTimeBefore"> Only include calls that ended on this date </param>
            <param name="endTime"> Only include calls that ended on this date </param>
            <param name="endTimeAfter"> Only include calls that ended on this date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.CallResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.CallResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.Update(Twilio.Rest.Api.V2010.Account.UpdateCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Initiates a call redirect or terminates a call
            </summary>
            <param name="options"> Update Call parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Initiates a call redirect or terminates a call
            </summary>
            <param name="options"> Update Call parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.Update(System.String,System.String,System.Uri,Twilio.Http.HttpMethod,Twilio.Rest.Api.V2010.Account.CallResource.UpdateStatusEnum,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Initiates a call redirect or terminates a call
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to update </param>
            <param name="url"> The absolute URL that returns TwiML for this call </param>
            <param name="method"> HTTP method to use to fetch TwiML </param>
            <param name="status"> The new status to update the call with. </param>
            <param name="fallbackUrl"> Fallback URL in case of error </param>
            <param name="fallbackMethod"> HTTP Method to use with fallback_url </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> HTTP Method to use to call status_callback </param>
            <param name="twiml"> TwiML instructions for the call </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.UpdateAsync(System.String,System.String,System.Uri,Twilio.Http.HttpMethod,Twilio.Rest.Api.V2010.Account.CallResource.UpdateStatusEnum,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Initiates a call redirect or terminates a call
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to update </param>
            <param name="url"> The absolute URL that returns TwiML for this call </param>
            <param name="method"> HTTP method to use to fetch TwiML </param>
            <param name="status"> The new status to update the call with. </param>
            <param name="fallbackUrl"> Fallback URL in case of error </param>
            <param name="fallbackMethod"> HTTP Method to use with fallback_url </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> HTTP Method to use to call status_callback </param>
            <param name="twiml"> TwiML instructions for the call </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Call </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CallResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CallResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CallResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.AccountSid">
            <summary>
            The SID of the Account that created this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.Annotation">
            <summary>
            The annotation provided for the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.AnsweredBy">
            <summary>
            Either `human` or `machine` if this call was initiated with answering machine detection. Empty otherwise.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.ApiVersion">
            <summary>
            The API Version used to create the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.CallerName">
            <summary>
            The caller's name if this call was an incoming call to a phone number with caller ID Lookup enabled. Otherwise, empty.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.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.Rest.Api.V2010.Account.CallResource.Duration">
            <summary>
            The length of the call in seconds.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.EndTime">
            <summary>
            The end time of the call. Null if the call did not complete successfully.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.ForwardedFrom">
            <summary>
            The forwarding phone number if this call was an incoming call forwarded from another number (depends on carrier supporting forwarding). Otherwise, empty.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.From">
            <summary>
            The phone number, SIP address or Client identifier that made this call. Phone numbers are in E.164 format (e.g., +16175551212). SIP addresses are formatted as `name@company.com`. Client identifiers are formatted `client:name`.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.FromFormatted">
            <summary>
            The calling phone number, SIP address, or Client identifier formatted for display.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.GroupSid">
            <summary>
            The Group SID associated with this call. If no Group is associated with the call, the field is empty.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.ParentCallSid">
            <summary>
            The SID that identifies the call that created this leg.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.PhoneNumberSid">
            <summary>
            If the call was inbound, this is the SID of the IncomingPhoneNumber resource that received the call. If the call was outbound, it is the SID of the OutgoingCallerId resource from which the call was placed.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.Price">
            <summary>
            The charge for this call, in the currency associated with the account. Populated after the call is completed. May not be immediately available.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.PriceUnit">
            <summary>
            The currency in which `Price` is measured.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.Sid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.StartTime">
            <summary>
            The start time of the call. Null if the call has not yet been dialed.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.Status">
            <summary>
            The status of this call.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.SubresourceUris">
            <summary>
            A list of related subresources identified by their relative URIs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.To">
            <summary>
            The phone number, SIP address or Client identifier that received this call. Phone numbers are in E.164 format (e.g., +16175551212). SIP addresses are formatted as `name@company.com`. Client identifiers are formatted `client:name`.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.ToFormatted">
            <summary>
            The phone number, SIP address or Client identifier that received this call. Formatted for display.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CallResource.Uri">
            <summary>
            The URI of this resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackOptions">
            <summary>
            Create a Feedback resource for a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackOptions.PathCallSid">
            <summary>
            The call sid that uniquely identifies the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackOptions.QualityScore">
            <summary>
            The call quality expressed as an integer from 1 to 5
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackOptions.Issue">
            <summary>
            Issues experienced during the call
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackOptions.#ctor(System.String,System.Nullable{System.Int32})">
            <summary>
            Construct a new CreateFeedbackOptions
            </summary>
            <param name="pathCallSid"> The call sid that uniquely identifies the call </param>
            <param name="qualityScore"> The call quality expressed as an integer from 1 to 5 </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackOptions">
            <summary>
            Fetch a Feedback resource from a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackOptions.PathCallSid">
            <summary>
            The call sid that uniquely identifies the call
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchFeedbackOptions
            </summary>
            <param name="pathCallSid"> The call sid that uniquely identifies the call </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.UpdateFeedbackOptions">
            <summary>
            Update a Feedback resource for a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.UpdateFeedbackOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.UpdateFeedbackOptions.PathCallSid">
            <summary>
            The call sid that uniquely identifies the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.UpdateFeedbackOptions.QualityScore">
            <summary>
            The call quality expressed as an integer from 1 to 5
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.UpdateFeedbackOptions.Issue">
            <summary>
            Issues experienced during the call
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.UpdateFeedbackOptions.#ctor(System.String,System.Nullable{System.Int32})">
            <summary>
            Construct a new UpdateFeedbackOptions
            </summary>
            <param name="pathCallSid"> The call sid that uniquely identifies the call </param>
            <param name="qualityScore"> The call quality expressed as an integer from 1 to 5 </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.UpdateFeedbackOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.Create(Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a Feedback resource for a call
            </summary>
            <param name="options"> Create Feedback parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a Feedback resource for a call
            </summary>
            <param name="options"> Create Feedback parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.Create(System.String,System.Nullable{System.Int32},System.String,System.Collections.Generic.List{Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.IssuesEnum},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a Feedback resource for a call
            </summary>
            <param name="pathCallSid"> The call sid that uniquely identifies the call </param>
            <param name="qualityScore"> The call quality expressed as an integer from 1 to 5 </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="issue"> Issues experienced during the call </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.CreateAsync(System.String,System.Nullable{System.Int32},System.String,System.Collections.Generic.List{Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.IssuesEnum},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a Feedback resource for a call
            </summary>
            <param name="pathCallSid"> The call sid that uniquely identifies the call </param>
            <param name="qualityScore"> The call quality expressed as an integer from 1 to 5 </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="issue"> Issues experienced during the call </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.Fetch(Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Feedback resource from a call
            </summary>
            <param name="options"> Fetch Feedback parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Feedback resource from a call
            </summary>
            <param name="options"> Fetch Feedback parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Feedback resource from a call
            </summary>
            <param name="pathCallSid"> The call sid that uniquely identifies the call </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Feedback resource from a call
            </summary>
            <param name="pathCallSid"> The call sid that uniquely identifies the call </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.Update(Twilio.Rest.Api.V2010.Account.Call.UpdateFeedbackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Feedback resource for a call
            </summary>
            <param name="options"> Update Feedback parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.Call.UpdateFeedbackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Feedback resource for a call
            </summary>
            <param name="options"> Update Feedback parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.Update(System.String,System.Nullable{System.Int32},System.String,System.Collections.Generic.List{Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.IssuesEnum},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Feedback resource for a call
            </summary>
            <param name="pathCallSid"> The call sid that uniquely identifies the call </param>
            <param name="qualityScore"> The call quality expressed as an integer from 1 to 5 </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="issue"> Issues experienced during the call </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.UpdateAsync(System.String,System.Nullable{System.Int32},System.String,System.Collections.Generic.List{Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.IssuesEnum},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Feedback resource for a call
            </summary>
            <param name="pathCallSid"> The call sid that uniquely identifies the call </param>
            <param name="qualityScore"> The call quality expressed as an integer from 1 to 5 </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="issue"> Issues experienced during the call </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FeedbackResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FeedbackResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.AccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.DateCreated">
            <summary>
            The date this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.DateUpdated">
            <summary>
            The date this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.Issues">
            <summary>
            Issues experienced during the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.QualityScore">
            <summary>
            1 to 5 quality score
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackResource.Sid">
            <summary>
            A string that uniquely identifies this feedback resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackSummaryOptions">
            <summary>
            Create a FeedbackSummary resource for a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackSummaryOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackSummaryOptions.StartDate">
            <summary>
            Only include feedback given on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackSummaryOptions.EndDate">
            <summary>
            Only include feedback given on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackSummaryOptions.IncludeSubaccounts">
            <summary>
            `true` includes feedback from the specified account and its subaccounts
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackSummaryOptions.StatusCallback">
            <summary>
            The URL that we will request when the feedback summary is complete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackSummaryOptions.StatusCallbackMethod">
            <summary>
            The HTTP method we use to make requests to the StatusCallback URL
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackSummaryOptions.#ctor(System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
            <summary>
            Construct a new CreateFeedbackSummaryOptions
            </summary>
            <param name="startDate"> Only include feedback given on or after this date </param>
            <param name="endDate"> Only include feedback given on or before this date </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackSummaryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackSummaryOptions">
            <summary>
            Fetch a FeedbackSummary resource from a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackSummaryOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackSummaryOptions.PathSid">
            <summary>
            A string that uniquely identifies this feedback summary resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackSummaryOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchFeedbackSummaryOptions
            </summary>
            <param name="pathSid"> A string that uniquely identifies this feedback summary resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackSummaryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.DeleteFeedbackSummaryOptions">
            <summary>
            Delete a FeedbackSummary resource from a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.DeleteFeedbackSummaryOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.DeleteFeedbackSummaryOptions.PathSid">
            <summary>
            A string that uniquely identifies this feedback summary resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.DeleteFeedbackSummaryOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteFeedbackSummaryOptions
            </summary>
            <param name="pathSid"> A string that uniquely identifies this feedback summary resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.DeleteFeedbackSummaryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.Create(Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackSummaryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a FeedbackSummary resource for a call
            </summary>
            <param name="options"> Create FeedbackSummary parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Call.CreateFeedbackSummaryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a FeedbackSummary resource for a call
            </summary>
            <param name="options"> Create FeedbackSummary parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.Create(System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a FeedbackSummary resource for a call
            </summary>
            <param name="startDate"> Only include feedback given on or after this date </param>
            <param name="endDate"> Only include feedback given on or before this date </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="includeSubaccounts"> `true` includes feedback from the specified account and its subaccounts </param>
            <param name="statusCallback"> The URL that we will request when the feedback summary is complete </param>
            <param name="statusCallbackMethod"> The HTTP method we use to make requests to the StatusCallback URL </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.CreateAsync(System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a FeedbackSummary resource for a call
            </summary>
            <param name="startDate"> Only include feedback given on or after this date </param>
            <param name="endDate"> Only include feedback given on or before this date </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="includeSubaccounts"> `true` includes feedback from the specified account and its subaccounts </param>
            <param name="statusCallback"> The URL that we will request when the feedback summary is complete </param>
            <param name="statusCallbackMethod"> The HTTP method we use to make requests to the StatusCallback URL </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.Fetch(Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackSummaryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a FeedbackSummary resource from a call
            </summary>
            <param name="options"> Fetch FeedbackSummary parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Call.FetchFeedbackSummaryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a FeedbackSummary resource from a call
            </summary>
            <param name="options"> Fetch FeedbackSummary parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a FeedbackSummary resource from a call
            </summary>
            <param name="pathSid"> A string that uniquely identifies this feedback summary resource </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a FeedbackSummary resource from a call
            </summary>
            <param name="pathSid"> A string that uniquely identifies this feedback summary resource </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.Delete(Twilio.Rest.Api.V2010.Account.Call.DeleteFeedbackSummaryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a FeedbackSummary resource from a call
            </summary>
            <param name="options"> Delete FeedbackSummary parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Call.DeleteFeedbackSummaryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a FeedbackSummary resource from a call
            </summary>
            <param name="options"> Delete FeedbackSummary parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a FeedbackSummary resource from a call
            </summary>
            <param name="pathSid"> A string that uniquely identifies this feedback summary resource </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a FeedbackSummary resource from a call
            </summary>
            <param name="pathSid"> A string that uniquely identifies this feedback summary resource </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FeedbackSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FeedbackSummaryResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FeedbackSummaryResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.AccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.CallCount">
            <summary>
            The total number of calls
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.CallFeedbackCount">
            <summary>
            The total number of calls with a feedback entry
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.DateCreated">
            <summary>
            The date this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.DateUpdated">
            <summary>
            The date this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.EndDate">
            <summary>
            The latest feedback entry date in the summary
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.IncludeSubaccounts">
            <summary>
            Whether the feedback summary includes subaccounts
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.Issues">
            <summary>
            Issues experienced during the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.QualityScoreAverage">
            <summary>
            The average QualityScore of the feedback entries
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.QualityScoreMedian">
            <summary>
            The median QualityScore of the feedback entries
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.QualityScoreStandardDeviation">
            <summary>
            The standard deviation of the quality scores
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.Sid">
            <summary>
            A string that uniquely identifies this feedback entry
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.StartDate">
            <summary>
            The earliest feedback entry date in the summary
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FeedbackSummaryResource.Status">
            <summary>
            The status of the feedback summary
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.FetchNotificationOptions">
            <summary>
            FetchNotificationOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FetchNotificationOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FetchNotificationOptions.PathCallSid">
            <summary>
            The Call SID of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FetchNotificationOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FetchNotificationOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchNotificationOptions
            </summary>
            <param name="pathCallSid"> The Call SID of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FetchNotificationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.DeleteNotificationOptions">
            <summary>
            DeleteNotificationOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.DeleteNotificationOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.DeleteNotificationOptions.PathCallSid">
            <summary>
            The Call SID of the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.DeleteNotificationOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.DeleteNotificationOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteNotificationOptions
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.DeleteNotificationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.ReadNotificationOptions">
            <summary>
            ReadNotificationOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.ReadNotificationOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.ReadNotificationOptions.PathCallSid">
            <summary>
            The Call SID of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.ReadNotificationOptions.Log">
            <summary>
            Filter by log level
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.ReadNotificationOptions.MessageDateBefore">
            <summary>
            Filter by date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.ReadNotificationOptions.MessageDate">
            <summary>
            Filter by date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.ReadNotificationOptions.MessageDateAfter">
            <summary>
            Filter by date
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.ReadNotificationOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadNotificationOptions
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.ReadNotificationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.Fetch(Twilio.Rest.Api.V2010.Account.Call.FetchNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Call.FetchNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathCallSid"> The Call SID of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathCallSid"> The Call SID of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.Delete(Twilio.Rest.Api.V2010.Account.Call.DeleteNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Call.DeleteNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.Read(Twilio.Rest.Api.V2010.Account.Call.ReadNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Call.ReadNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="log"> Filter by log level </param>
            <param name="messageDateBefore"> Filter by date </param>
            <param name="messageDate"> Filter by date </param>
            <param name="messageDateAfter"> Filter by date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="log"> Filter by log level </param>
            <param name="messageDateBefore"> Filter by date </param>
            <param name="messageDate"> Filter by date </param>
            <param name="messageDateAfter"> Filter by date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Call.NotificationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Call.NotificationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a NotificationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> NotificationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.ApiVersion">
            <summary>
            The API version used to create the Call Notification resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.CallSid">
            <summary>
            The SID of the Call the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.ErrorCode">
            <summary>
            A unique error code corresponding to the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.Log">
            <summary>
            An integer log level
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.MessageDate">
            <summary>
            The date the notification was generated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.MessageText">
            <summary>
            The text of the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.MoreInfo">
            <summary>
            A URL for more information about the error code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.RequestMethod">
            <summary>
            HTTP method used with the request url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.RequestUrl">
            <summary>
            URL of the resource that generated the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.RequestVariables">
            <summary>
            Twilio-generated HTTP variables sent to the server
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.ResponseBody">
            <summary>
            The HTTP body returned by your server
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.ResponseHeaders">
            <summary>
            The HTTP headers returned by your server
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.NotificationResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions">
            <summary>
            Create a recording for the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions.PathCallSid">
            <summary>
            The SID of the Call to associate the resource with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions.RecordingStatusCallbackEvent">
            <summary>
            The recording status changes that should generate a callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions.RecordingStatusCallback">
            <summary>
            The callback URL on each selected recording event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions.RecordingStatusCallbackMethod">
            <summary>
            The HTTP method we should use to call `recording_status_callback`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions.Trim">
            <summary>
            Whether to trim the silence in the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions.RecordingChannels">
            <summary>
            The number of channels that the output recording will be configured with
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateRecordingOptions
            </summary>
            <param name="pathCallSid"> The SID of the Call to associate the resource with </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.UpdateRecordingOptions">
            <summary>
            Changes the status of the recording to paused, stopped, or in-progress. Note: Pass `Twilio.CURRENT` instead of
            recording sid to reference current active recording.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.UpdateRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.UpdateRecordingOptions.PathCallSid">
            <summary>
            The Call SID of the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.UpdateRecordingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.UpdateRecordingOptions.Status">
            <summary>
            The new status of the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.UpdateRecordingOptions.PauseBehavior">
            <summary>
            Whether to record or not during the pause period.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.UpdateRecordingOptions.#ctor(System.String,System.String,Twilio.Rest.Api.V2010.Account.Call.RecordingResource.StatusEnum)">
            <summary>
            Construct a new UpdateRecordingOptions
            </summary>
            <param name="pathCallSid"> The Call SID of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="status"> The new status of the recording </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.UpdateRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.FetchRecordingOptions">
            <summary>
            Fetch an instance of a recording for a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FetchRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FetchRecordingOptions.PathCallSid">
            <summary>
            The Call SID of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.FetchRecordingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FetchRecordingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchRecordingOptions
            </summary>
            <param name="pathCallSid"> The Call SID of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.FetchRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.DeleteRecordingOptions">
            <summary>
            Delete a recording from your account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.DeleteRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.DeleteRecordingOptions.PathCallSid">
            <summary>
            The Call SID of the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.DeleteRecordingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.DeleteRecordingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteRecordingOptions
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.DeleteRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Call.ReadRecordingOptions">
            <summary>
            Retrieve a list of recordings belonging to the call used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.ReadRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.ReadRecordingOptions.PathCallSid">
            <summary>
            The Call SID of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.ReadRecordingOptions.DateCreatedBefore">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.ReadRecordingOptions.DateCreated">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.ReadRecordingOptions.DateCreatedAfter">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.ReadRecordingOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadRecordingOptions
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.ReadRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Create(Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a recording for the call
            </summary>
            <param name="options"> Create Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Call.CreateRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a recording for the call
            </summary>
            <param name="options"> Create Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Create(System.String,System.String,System.Collections.Generic.List{System.String},System.Uri,Twilio.Http.HttpMethod,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a recording for the call
            </summary>
            <param name="pathCallSid"> The SID of the Call to associate the resource with </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="recordingStatusCallbackEvent"> The recording status changes that should generate a callback </param>
            <param name="recordingStatusCallback"> The callback URL on each selected recording event </param>
            <param name="recordingStatusCallbackMethod"> The HTTP method we should use to call `recording_status_callback`
                                                </param>
            <param name="trim"> Whether to trim the silence in the recording </param>
            <param name="recordingChannels"> The number of channels that the output recording will be configured with </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.CreateAsync(System.String,System.String,System.Collections.Generic.List{System.String},System.Uri,Twilio.Http.HttpMethod,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a recording for the call
            </summary>
            <param name="pathCallSid"> The SID of the Call to associate the resource with </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="recordingStatusCallbackEvent"> The recording status changes that should generate a callback </param>
            <param name="recordingStatusCallback"> The callback URL on each selected recording event </param>
            <param name="recordingStatusCallbackMethod"> The HTTP method we should use to call `recording_status_callback`
                                                </param>
            <param name="trim"> Whether to trim the silence in the recording </param>
            <param name="recordingChannels"> The number of channels that the output recording will be configured with </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Update(Twilio.Rest.Api.V2010.Account.Call.UpdateRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Changes the status of the recording to paused, stopped, or in-progress. Note: Pass `Twilio.CURRENT` instead of
            recording sid to reference current active recording.
            </summary>
            <param name="options"> Update Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.Call.UpdateRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Changes the status of the recording to paused, stopped, or in-progress. Note: Pass `Twilio.CURRENT` instead of
            recording sid to reference current active recording.
            </summary>
            <param name="options"> Update Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Update(System.String,System.String,Twilio.Rest.Api.V2010.Account.Call.RecordingResource.StatusEnum,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Changes the status of the recording to paused, stopped, or in-progress. Note: Pass `Twilio.CURRENT` instead of
            recording sid to reference current active recording.
            </summary>
            <param name="pathCallSid"> The Call SID of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="status"> The new status of the recording </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to update </param>
            <param name="pauseBehavior"> Whether to record or not during the pause period. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.UpdateAsync(System.String,System.String,Twilio.Rest.Api.V2010.Account.Call.RecordingResource.StatusEnum,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Changes the status of the recording to paused, stopped, or in-progress. Note: Pass `Twilio.CURRENT` instead of
            recording sid to reference current active recording.
            </summary>
            <param name="pathCallSid"> The Call SID of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="status"> The new status of the recording </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to update </param>
            <param name="pauseBehavior"> Whether to record or not during the pause period. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Fetch(Twilio.Rest.Api.V2010.Account.Call.FetchRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording for a call
            </summary>
            <param name="options"> Fetch Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Call.FetchRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording for a call
            </summary>
            <param name="options"> Fetch Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording for a call
            </summary>
            <param name="pathCallSid"> The Call SID of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording for a call
            </summary>
            <param name="pathCallSid"> The Call SID of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Delete(Twilio.Rest.Api.V2010.Account.Call.DeleteRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="options"> Delete Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Call.DeleteRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="options"> Delete Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Read(Twilio.Rest.Api.V2010.Account.Call.ReadRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the call used to make the request
            </summary>
            <param name="options"> Read Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Call.ReadRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the call used to make the request
            </summary>
            <param name="options"> Read Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Read(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the call used to make the request
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="dateCreatedBefore"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreated"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreatedAfter"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.ReadAsync(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the call used to make the request
            </summary>
            <param name="pathCallSid"> The Call SID of the resources to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="dateCreatedBefore"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreated"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreatedAfter"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Call.RecordingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Call.RecordingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RecordingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RecordingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.ApiVersion">
            <summary>
            The API version used to make the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.CallSid">
            <summary>
            The SID of the Call the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.ConferenceSid">
            <summary>
            The Conference SID that identifies the conference associated with the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.StartTime">
            <summary>
            The start time of the recording, given in RFC 2822 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Duration">
            <summary>
            The length of the recording in seconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Price">
            <summary>
            The one-time cost of creating the recording.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.EncryptionDetails">
            <summary>
            How to decrypt the recording.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.PriceUnit">
            <summary>
            The currency used in the price property.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Status">
            <summary>
            The status of the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Channels">
            <summary>
            The number of channels in the final recording file
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.Source">
            <summary>
            How the recording was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Call.RecordingResource.ErrorCode">
            <summary>
            More information about why the recording is missing, if status is `absent`.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchConferenceOptions">
            <summary>
            Fetch an instance of a conference
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchConferenceOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchConferenceOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchConferenceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchConferenceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchConferenceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadConferenceOptions">
            <summary>
            Retrieve a list of conferences belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadConferenceOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadConferenceOptions.DateCreatedBefore">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadConferenceOptions.DateCreated">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadConferenceOptions.DateCreatedAfter">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadConferenceOptions.DateUpdatedBefore">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadConferenceOptions.DateUpdated">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadConferenceOptions.DateUpdatedAfter">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadConferenceOptions.FriendlyName">
            <summary>
            The string that identifies the Conference resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadConferenceOptions.Status">
            <summary>
            The status of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadConferenceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateConferenceOptions">
            <summary>
            UpdateConferenceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConferenceOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConferenceOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConferenceOptions.Status">
            <summary>
            The new status of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConferenceOptions.AnnounceUrl">
            <summary>
            The URL we should call to announce something into the conference
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConferenceOptions.AnnounceMethod">
            <summary>
            he HTTP method used to call announce_url
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateConferenceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateConferenceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateConferenceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchConferenceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a conference
            </summary>
            <param name="options"> Fetch Conference parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchConferenceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a conference
            </summary>
            <param name="options"> Fetch Conference parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a conference
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a conference
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.Read(Twilio.Rest.Api.V2010.Account.ReadConferenceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of conferences belonging to the account used to make the request
            </summary>
            <param name="options"> Read Conference parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadConferenceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of conferences belonging to the account used to make the request
            </summary>
            <param name="options"> Read Conference parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.Read(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Rest.Api.V2010.Account.ConferenceResource.StatusEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of conferences belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to read </param>
            <param name="dateCreatedBefore"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreated"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreatedAfter"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateUpdatedBefore"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateUpdated"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateUpdatedAfter"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="friendlyName"> The string that identifies the Conference resources to read </param>
            <param name="status"> The status of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.ReadAsync(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Rest.Api.V2010.Account.ConferenceResource.StatusEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of conferences belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to read </param>
            <param name="dateCreatedBefore"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreated"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreatedAfter"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateUpdatedBefore"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateUpdated"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateUpdatedAfter"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="friendlyName"> The string that identifies the Conference resources to read </param>
            <param name="status"> The status of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.ConferenceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.ConferenceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.Update(Twilio.Rest.Api.V2010.Account.UpdateConferenceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Conference parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateConferenceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Conference parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.Update(System.String,System.String,Twilio.Rest.Api.V2010.Account.ConferenceResource.UpdateStatusEnum,System.Uri,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to update </param>
            <param name="status"> The new status of the resource </param>
            <param name="announceUrl"> The URL we should call to announce something into the conference </param>
            <param name="announceMethod"> he HTTP method used to call announce_url </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.UpdateAsync(System.String,System.String,Twilio.Rest.Api.V2010.Account.ConferenceResource.UpdateStatusEnum,System.Uri,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to update </param>
            <param name="status"> The new status of the resource </param>
            <param name="announceUrl"> The URL we should call to announce something into the conference </param>
            <param name="announceMethod"> he HTTP method used to call announce_url </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conference </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConferenceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ConferenceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ConferenceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConferenceResource.AccountSid">
            <summary>
            The SID of the Account that created this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConferenceResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConferenceResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConferenceResource.ApiVersion">
            <summary>
            The API version used to create this conference
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConferenceResource.FriendlyName">
            <summary>
            A string that you assigned to describe this conference room
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConferenceResource.Region">
            <summary>
            A string that represents the Twilio Region where the conference was mixed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConferenceResource.Sid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConferenceResource.Status">
            <summary>
            The status of this conference
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConferenceResource.Uri">
            <summary>
            The URI of this resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConferenceResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Conference.FetchParticipantOptions">
            <summary>
            Fetch an instance of a participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.FetchParticipantOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.FetchParticipantOptions.PathConferenceSid">
            <summary>
            The SID of the conference with the participant to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.FetchParticipantOptions.PathCallSid">
            <summary>
            The Call SID of the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.FetchParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchParticipantOptions
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participant to fetch </param>
            <param name="pathCallSid"> The Call SID of the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.FetchParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions">
            <summary>
            Update the properties of the participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.PathConferenceSid">
            <summary>
            The SID of the conference with the participant to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.PathCallSid">
            <summary>
            The Call SID of the resources to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.Muted">
            <summary>
            Whether the participant should be muted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.Hold">
            <summary>
            Whether the participant should be on hold
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.HoldUrl">
            <summary>
            The URL we call using the `hold_method` for  music that plays when the participant is on hold
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.HoldMethod">
            <summary>
            The HTTP method we should use to call hold_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.AnnounceUrl">
            <summary>
            The URL we call using the `announce_method` for an announcement to the participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.AnnounceMethod">
            <summary>
            The HTTP method we should use to call announce_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.WaitUrl">
            <summary>
            URL that hosts pre-conference hold music
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.WaitMethod">
            <summary>
            The HTTP method we should use to call `wait_url`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.BeepOnExit">
            <summary>
            Whether to play a notification beep to the conference when the participant exit
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.EndConferenceOnExit">
            <summary>
            Whether to end the conference when the participant leaves
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.Coaching">
            <summary>
            Indicates if the participant changed to coach
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.CallSidToCoach">
            <summary>
            The SID of the participant who is being `coached`
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateParticipantOptions
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participant to update </param>
            <param name="pathCallSid"> The Call SID of the resources to update </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions">
            <summary>
            CreateParticipantOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.PathConferenceSid">
            <summary>
            The SID of the participant's conference
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.From">
            <summary>
            The `from` phone number used to invite a participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.To">
            <summary>
            The number, client id, or sip address of the new participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.StatusCallbackMethod">
            <summary>
            The HTTP method we should use to call `status_callback`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.StatusCallbackEvent">
            <summary>
            Set state change events that will trigger a callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.Timeout">
            <summary>
            he number of seconds that we should wait for an answer
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.Record">
            <summary>
            Whether to record the participant and their conferences
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.Muted">
            <summary>
            Whether to mute the agent
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.Beep">
            <summary>
            Whether to play a notification beep to the conference when the participant joins
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.StartConferenceOnEnter">
            <summary>
            Whether the conference starts when the participant joins the conference
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.EndConferenceOnExit">
            <summary>
            Whether to end the conference when the participant leaves
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.WaitUrl">
            <summary>
            URL that hosts pre-conference hold music
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.WaitMethod">
            <summary>
            The HTTP method we should use to call `wait_url`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.EarlyMedia">
            <summary>
            Whether agents can hear the state of the outbound call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.MaxParticipants">
            <summary>
            The maximum number of agent conference participants
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.ConferenceRecord">
            <summary>
            Whether to record the conference the participant is joining
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.ConferenceTrim">
            <summary>
            Whether to trim leading and trailing silence from your recorded conference audio files
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.ConferenceStatusCallback">
            <summary>
            The callback URL for conference events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.ConferenceStatusCallbackMethod">
            <summary>
            HTTP method for requesting `conference_status_callback` URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.ConferenceStatusCallbackEvent">
            <summary>
            The conference state changes that should generate a call to `conference_status_callback`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.RecordingChannels">
            <summary>
            Specify `mono` or `dual` recording channels
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.RecordingStatusCallback">
            <summary>
            The URL that we should call using the `recording_status_callback_method` when the recording status changes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.RecordingStatusCallbackMethod">
            <summary>
            The HTTP method we should use when we call `recording_status_callback`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.SipAuthUsername">
            <summary>
            The SIP username used for authentication
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.SipAuthPassword">
            <summary>
            The SIP password for authentication
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.Region">
            <summary>
            The region where we should mix the conference audio
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.ConferenceRecordingStatusCallback">
            <summary>
            The URL we should call using the `conference_recording_status_callback_method` when the conference recording is available
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.ConferenceRecordingStatusCallbackMethod">
            <summary>
            The HTTP method we should use to call `conference_recording_status_callback`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.RecordingStatusCallbackEvent">
            <summary>
            The recording state changes that should generate a call to `recording_status_callback`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.ConferenceRecordingStatusCallbackEvent">
            <summary>
            The conference recording state changes that should generate a call to `conference_recording_status_callback`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.Coaching">
            <summary>
            Indicates if the participant changed to coach
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.CallSidToCoach">
            <summary>
            The SID of the participant who is being `coached`
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.#ctor(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber)">
            <summary>
            Construct a new CreateParticipantOptions
            </summary>
            <param name="pathConferenceSid"> The SID of the participant's conference </param>
            <param name="from"> The `from` phone number used to invite a participant </param>
            <param name="to"> The number, client id, or sip address of the new participant </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Conference.DeleteParticipantOptions">
            <summary>
            Kick a participant from a given conference
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.DeleteParticipantOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.DeleteParticipantOptions.PathConferenceSid">
            <summary>
            The SID of the conference with the participants to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.DeleteParticipantOptions.PathCallSid">
            <summary>
            The Call SID of the resources to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.DeleteParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteParticipantOptions
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participants to delete </param>
            <param name="pathCallSid"> The Call SID of the resources to delete </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.DeleteParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Conference.ReadParticipantOptions">
            <summary>
            Retrieve a list of participants belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ReadParticipantOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ReadParticipantOptions.PathConferenceSid">
            <summary>
            The SID of the conference with the participants to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ReadParticipantOptions.Muted">
            <summary>
            Whether to return only participants that are muted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ReadParticipantOptions.Hold">
            <summary>
            Whether to return only participants that are on hold
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ReadParticipantOptions.Coaching">
            <summary>
            Whether to return only participants who are coaching another call
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ReadParticipantOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadParticipantOptions
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participants to read </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ReadParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Fetch(Twilio.Rest.Api.V2010.Account.Conference.FetchParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a participant
            </summary>
            <param name="options"> Fetch Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Conference.FetchParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a participant
            </summary>
            <param name="options"> Fetch Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a participant
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participant to fetch </param>
            <param name="pathCallSid"> The Call SID of the resource to fetch </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a participant
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participant to fetch </param>
            <param name="pathCallSid"> The Call SID of the resource to fetch </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Update(Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the properties of the participant
            </summary>
            <param name="options"> Update Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.Conference.UpdateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the properties of the participant
            </summary>
            <param name="options"> Update Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Update(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the properties of the participant
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participant to update </param>
            <param name="pathCallSid"> The Call SID of the resources to update </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="muted"> Whether the participant should be muted </param>
            <param name="hold"> Whether the participant should be on hold </param>
            <param name="holdUrl"> The URL we call using the `hold_method` for  music that plays when the participant is on
                          hold </param>
            <param name="holdMethod"> The HTTP method we should use to call hold_url </param>
            <param name="announceUrl"> The URL we call using the `announce_method` for an announcement to the participant
                              </param>
            <param name="announceMethod"> The HTTP method we should use to call announce_url </param>
            <param name="waitUrl"> URL that hosts pre-conference hold music </param>
            <param name="waitMethod"> The HTTP method we should use to call `wait_url` </param>
            <param name="beepOnExit"> Whether to play a notification beep to the conference when the participant exit </param>
            <param name="endConferenceOnExit"> Whether to end the conference when the participant leaves </param>
            <param name="coaching"> Indicates if the participant changed to coach </param>
            <param name="callSidToCoach"> The SID of the participant who is being `coached` </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the properties of the participant
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participant to update </param>
            <param name="pathCallSid"> The Call SID of the resources to update </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="muted"> Whether the participant should be muted </param>
            <param name="hold"> Whether the participant should be on hold </param>
            <param name="holdUrl"> The URL we call using the `hold_method` for  music that plays when the participant is on
                          hold </param>
            <param name="holdMethod"> The HTTP method we should use to call hold_url </param>
            <param name="announceUrl"> The URL we call using the `announce_method` for an announcement to the participant
                              </param>
            <param name="announceMethod"> The HTTP method we should use to call announce_url </param>
            <param name="waitUrl"> URL that hosts pre-conference hold music </param>
            <param name="waitMethod"> The HTTP method we should use to call `wait_url` </param>
            <param name="beepOnExit"> Whether to play a notification beep to the conference when the participant exit </param>
            <param name="endConferenceOnExit"> Whether to end the conference when the participant leaves </param>
            <param name="coaching"> Indicates if the participant changed to coach </param>
            <param name="callSidToCoach"> The SID of the participant who is being `coached` </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Create(Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Conference.CreateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Create(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.String,System.Uri,Twilio.Http.HttpMethod,System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.Nullable{System.Boolean},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathConferenceSid"> The SID of the participant's conference </param>
            <param name="from"> The `from` phone number used to invite a participant </param>
            <param name="to"> The number, client id, or sip address of the new participant </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call `status_callback` </param>
            <param name="statusCallbackEvent"> Set state change events that will trigger a callback </param>
            <param name="timeout"> he number of seconds that we should wait for an answer </param>
            <param name="record"> Whether to record the participant and their conferences </param>
            <param name="muted"> Whether to mute the agent </param>
            <param name="beep"> Whether to play a notification beep to the conference when the participant joins </param>
            <param name="startConferenceOnEnter"> Whether the conference starts when the participant joins the conference
                                         </param>
            <param name="endConferenceOnExit"> Whether to end the conference when the participant leaves </param>
            <param name="waitUrl"> URL that hosts pre-conference hold music </param>
            <param name="waitMethod"> The HTTP method we should use to call `wait_url` </param>
            <param name="earlyMedia"> Whether agents can hear the state of the outbound call </param>
            <param name="maxParticipants"> The maximum number of agent conference participants </param>
            <param name="conferenceRecord"> Whether to record the conference the participant is joining </param>
            <param name="conferenceTrim"> Whether to trim leading and trailing silence from your recorded conference audio
                                 files </param>
            <param name="conferenceStatusCallback"> The callback URL for conference events </param>
            <param name="conferenceStatusCallbackMethod"> HTTP method for requesting `conference_status_callback` URL </param>
            <param name="conferenceStatusCallbackEvent"> The conference state changes that should generate a call to
                                                `conference_status_callback` </param>
            <param name="recordingChannels"> Specify `mono` or `dual` recording channels </param>
            <param name="recordingStatusCallback"> The URL that we should call using the `recording_status_callback_method`
                                          when the recording status changes </param>
            <param name="recordingStatusCallbackMethod"> The HTTP method we should use when we call `recording_status_callback`
                                                </param>
            <param name="sipAuthUsername"> The SIP username used for authentication </param>
            <param name="sipAuthPassword"> The SIP password for authentication </param>
            <param name="region"> The region where we should mix the conference audio </param>
            <param name="conferenceRecordingStatusCallback"> The URL we should call using the
                                                    `conference_recording_status_callback_method` when the conference recording
                                                    is available </param>
            <param name="conferenceRecordingStatusCallbackMethod"> The HTTP method we should use to call
                                                          `conference_recording_status_callback` </param>
            <param name="recordingStatusCallbackEvent"> The recording state changes that should generate a call to
                                               `recording_status_callback` </param>
            <param name="conferenceRecordingStatusCallbackEvent"> The conference recording state changes that should generate a
                                                         call to `conference_recording_status_callback` </param>
            <param name="coaching"> Indicates if the participant changed to coach </param>
            <param name="callSidToCoach"> The SID of the participant who is being `coached` </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.CreateAsync(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.String,System.Uri,Twilio.Http.HttpMethod,System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.Nullable{System.Boolean},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathConferenceSid"> The SID of the participant's conference </param>
            <param name="from"> The `from` phone number used to invite a participant </param>
            <param name="to"> The number, client id, or sip address of the new participant </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call `status_callback` </param>
            <param name="statusCallbackEvent"> Set state change events that will trigger a callback </param>
            <param name="timeout"> he number of seconds that we should wait for an answer </param>
            <param name="record"> Whether to record the participant and their conferences </param>
            <param name="muted"> Whether to mute the agent </param>
            <param name="beep"> Whether to play a notification beep to the conference when the participant joins </param>
            <param name="startConferenceOnEnter"> Whether the conference starts when the participant joins the conference
                                         </param>
            <param name="endConferenceOnExit"> Whether to end the conference when the participant leaves </param>
            <param name="waitUrl"> URL that hosts pre-conference hold music </param>
            <param name="waitMethod"> The HTTP method we should use to call `wait_url` </param>
            <param name="earlyMedia"> Whether agents can hear the state of the outbound call </param>
            <param name="maxParticipants"> The maximum number of agent conference participants </param>
            <param name="conferenceRecord"> Whether to record the conference the participant is joining </param>
            <param name="conferenceTrim"> Whether to trim leading and trailing silence from your recorded conference audio
                                 files </param>
            <param name="conferenceStatusCallback"> The callback URL for conference events </param>
            <param name="conferenceStatusCallbackMethod"> HTTP method for requesting `conference_status_callback` URL </param>
            <param name="conferenceStatusCallbackEvent"> The conference state changes that should generate a call to
                                                `conference_status_callback` </param>
            <param name="recordingChannels"> Specify `mono` or `dual` recording channels </param>
            <param name="recordingStatusCallback"> The URL that we should call using the `recording_status_callback_method`
                                          when the recording status changes </param>
            <param name="recordingStatusCallbackMethod"> The HTTP method we should use when we call `recording_status_callback`
                                                </param>
            <param name="sipAuthUsername"> The SIP username used for authentication </param>
            <param name="sipAuthPassword"> The SIP password for authentication </param>
            <param name="region"> The region where we should mix the conference audio </param>
            <param name="conferenceRecordingStatusCallback"> The URL we should call using the
                                                    `conference_recording_status_callback_method` when the conference recording
                                                    is available </param>
            <param name="conferenceRecordingStatusCallbackMethod"> The HTTP method we should use to call
                                                          `conference_recording_status_callback` </param>
            <param name="recordingStatusCallbackEvent"> The recording state changes that should generate a call to
                                               `recording_status_callback` </param>
            <param name="conferenceRecordingStatusCallbackEvent"> The conference recording state changes that should generate a
                                                         call to `conference_recording_status_callback` </param>
            <param name="coaching"> Indicates if the participant changed to coach </param>
            <param name="callSidToCoach"> The SID of the participant who is being `coached` </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Delete(Twilio.Rest.Api.V2010.Account.Conference.DeleteParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Kick a participant from a given conference
            </summary>
            <param name="options"> Delete Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Conference.DeleteParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Kick a participant from a given conference
            </summary>
            <param name="options"> Delete Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Kick a participant from a given conference
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participants to delete </param>
            <param name="pathCallSid"> The Call SID of the resources to delete </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Kick a participant from a given conference
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participants to delete </param>
            <param name="pathCallSid"> The Call SID of the resources to delete </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Read(Twilio.Rest.Api.V2010.Account.Conference.ReadParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of participants belonging to the account used to make the request
            </summary>
            <param name="options"> Read Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Conference.ReadParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of participants belonging to the account used to make the request
            </summary>
            <param name="options"> Read Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Read(System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of participants belonging to the account used to make the request
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participants to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="muted"> Whether to return only participants that are muted </param>
            <param name="hold"> Whether to return only participants that are on hold </param>
            <param name="coaching"> Whether to return only participants who are coaching another call </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.ReadAsync(System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of participants belonging to the account used to make the request
            </summary>
            <param name="pathConferenceSid"> The SID of the conference with the participants to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="muted"> Whether to return only participants that are muted </param>
            <param name="hold"> Whether to return only participants that are on hold </param>
            <param name="coaching"> Whether to return only participants who are coaching another call </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ParticipantResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ParticipantResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.CallSid">
            <summary>
            The SID of the Call the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.CallSidToCoach">
            <summary>
            The SID of the participant who is being `coached`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Coaching">
            <summary>
            Indicates if the participant changed to coach
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.ConferenceSid">
            <summary>
            The SID of the conference the participant is in
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.EndConferenceOnExit">
            <summary>
            Whether the conference ends when the participant leaves
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Muted">
            <summary>
            Whether the participant is muted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Hold">
            <summary>
            Whether the participant is on hold
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.StartConferenceOnEnter">
            <summary>
            Whether the conference starts when the participant joins the conference
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Status">
            <summary>
            The status of the participant's call in a session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ParticipantResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Conference.UpdateRecordingOptions">
            <summary>
            Changes the status of the recording to paused, stopped, or in-progress. Note: To use `Twilio.CURRENT`, pass it as
            recording sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateRecordingOptions.PathConferenceSid">
            <summary>
            Update by unique Conference SID for the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateRecordingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateRecordingOptions.Status">
            <summary>
            The new status of the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.UpdateRecordingOptions.PauseBehavior">
            <summary>
            Whether to record during a pause
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.UpdateRecordingOptions.#ctor(System.String,System.String,Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.StatusEnum)">
            <summary>
            Construct a new UpdateRecordingOptions
            </summary>
            <param name="pathConferenceSid"> Update by unique Conference SID for the recording </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="status"> The new status of the recording </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.UpdateRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Conference.FetchRecordingOptions">
            <summary>
            Fetch an instance of a recording for a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.FetchRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.FetchRecordingOptions.PathConferenceSid">
            <summary>
            Fetch by unique Conference SID for the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.FetchRecordingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.FetchRecordingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchRecordingOptions
            </summary>
            <param name="pathConferenceSid"> Fetch by unique Conference SID for the recording </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.FetchRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Conference.DeleteRecordingOptions">
            <summary>
            Delete a recording from your account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.DeleteRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.DeleteRecordingOptions.PathConferenceSid">
            <summary>
            Delete by the recording's conference SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.DeleteRecordingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.DeleteRecordingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteRecordingOptions
            </summary>
            <param name="pathConferenceSid"> Delete by the recording's conference SID </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.DeleteRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Conference.ReadRecordingOptions">
            <summary>
            Retrieve a list of recordings belonging to the call used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ReadRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ReadRecordingOptions.PathConferenceSid">
            <summary>
            Read by unique Conference SID for the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ReadRecordingOptions.DateCreatedBefore">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ReadRecordingOptions.DateCreated">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.ReadRecordingOptions.DateCreatedAfter">
            <summary>
            The `YYYY-MM-DD` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ReadRecordingOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadRecordingOptions
            </summary>
            <param name="pathConferenceSid"> Read by unique Conference SID for the recording </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.ReadRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Update(Twilio.Rest.Api.V2010.Account.Conference.UpdateRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Changes the status of the recording to paused, stopped, or in-progress. Note: To use `Twilio.CURRENT`, pass it as
            recording sid.
            </summary>
            <param name="options"> Update Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.Conference.UpdateRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Changes the status of the recording to paused, stopped, or in-progress. Note: To use `Twilio.CURRENT`, pass it as
            recording sid.
            </summary>
            <param name="options"> Update Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Update(System.String,System.String,Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.StatusEnum,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Changes the status of the recording to paused, stopped, or in-progress. Note: To use `Twilio.CURRENT`, pass it as
            recording sid.
            </summary>
            <param name="pathConferenceSid"> Update by unique Conference SID for the recording </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="status"> The new status of the recording </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to update </param>
            <param name="pauseBehavior"> Whether to record during a pause </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.UpdateAsync(System.String,System.String,Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.StatusEnum,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Changes the status of the recording to paused, stopped, or in-progress. Note: To use `Twilio.CURRENT`, pass it as
            recording sid.
            </summary>
            <param name="pathConferenceSid"> Update by unique Conference SID for the recording </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="status"> The new status of the recording </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to update </param>
            <param name="pauseBehavior"> Whether to record during a pause </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Fetch(Twilio.Rest.Api.V2010.Account.Conference.FetchRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording for a call
            </summary>
            <param name="options"> Fetch Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Conference.FetchRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording for a call
            </summary>
            <param name="options"> Fetch Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording for a call
            </summary>
            <param name="pathConferenceSid"> Fetch by unique Conference SID for the recording </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording for a call
            </summary>
            <param name="pathConferenceSid"> Fetch by unique Conference SID for the recording </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Delete(Twilio.Rest.Api.V2010.Account.Conference.DeleteRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="options"> Delete Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Conference.DeleteRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="options"> Delete Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="pathConferenceSid"> Delete by the recording's conference SID </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="pathConferenceSid"> Delete by the recording's conference SID </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Read(Twilio.Rest.Api.V2010.Account.Conference.ReadRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the call used to make the request
            </summary>
            <param name="options"> Read Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Conference.ReadRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the call used to make the request
            </summary>
            <param name="options"> Read Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Read(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the call used to make the request
            </summary>
            <param name="pathConferenceSid"> Read by unique Conference SID for the recording </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="dateCreatedBefore"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreated"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreatedAfter"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.ReadAsync(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the call used to make the request
            </summary>
            <param name="pathConferenceSid"> Read by unique Conference SID for the recording </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="dateCreatedBefore"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreated"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="dateCreatedAfter"> The `YYYY-MM-DD` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Conference.RecordingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Conference.RecordingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RecordingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RecordingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.ApiVersion">
            <summary>
            The API version used to create the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.CallSid">
            <summary>
            The SID of the Call the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.ConferenceSid">
            <summary>
            The Conference SID that identifies the conference associated with the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.StartTime">
            <summary>
            The start time of the recording, given in RFC 2822 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Duration">
            <summary>
            The length of the recording in seconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Price">
            <summary>
            The one-time cost of creating the recording.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.PriceUnit">
            <summary>
            The currency used in the price property.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Status">
            <summary>
            The status of the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Channels">
            <summary>
            The number of channels in the final recording file as an integer
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Source">
            <summary>
            How the recording was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.ErrorCode">
            <summary>
            More information about why the recording is missing, if status is `absent`.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.EncryptionDetails">
            <summary>
            How to decrypt the recording.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Conference.RecordingResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchConnectAppOptions">
            <summary>
            Fetch an instance of a connect-app
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchConnectAppOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchConnectAppOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchConnectAppOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchConnectAppOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchConnectAppOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions">
            <summary>
            Update a connect-app with the specified parameters
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.AuthorizeRedirectUrl">
            <summary>
            The URL to redirect the user to after authorization
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.CompanyName">
            <summary>
            The company name to set for the Connect App
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.DeauthorizeCallbackMethod">
            <summary>
            The HTTP method to use when calling deauthorize_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.DeauthorizeCallbackUrl">
            <summary>
            The URL to call to de-authorize the Connect App
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.Description">
            <summary>
            A description of the Connect App
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.HomepageUrl">
            <summary>
            A public URL where users can obtain more information
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.Permissions">
            <summary>
            The set of permissions that your ConnectApp will request
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateConnectAppOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadConnectAppOptions">
            <summary>
            Retrieve a list of connect-apps belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadConnectAppOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadConnectAppOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteConnectAppOptions">
            <summary>
            Delete an instance of a connect-app
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteConnectAppOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteConnectAppOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteConnectAppOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteConnectAppOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteConnectAppOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a connect-app
            </summary>
            <param name="options"> Fetch ConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a connect-app
            </summary>
            <param name="options"> Fetch ConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a connect-app
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a connect-app
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Update(Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a connect-app with the specified parameters
            </summary>
            <param name="options"> Update ConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a connect-app with the specified parameters
            </summary>
            <param name="options"> Update ConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Update(System.String,System.String,System.Uri,System.String,Twilio.Http.HttpMethod,System.Uri,System.String,System.String,System.Uri,System.Collections.Generic.List{Twilio.Rest.Api.V2010.Account.ConnectAppResource.PermissionEnum},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a connect-app with the specified parameters
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="authorizeRedirectUrl"> The URL to redirect the user to after authorization </param>
            <param name="companyName"> The company name to set for the Connect App </param>
            <param name="deauthorizeCallbackMethod"> The HTTP method to use when calling deauthorize_callback_url </param>
            <param name="deauthorizeCallbackUrl"> The URL to call to de-authorize the Connect App </param>
            <param name="description"> A description of the Connect App </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="homepageUrl"> A public URL where users can obtain more information </param>
            <param name="permissions"> The set of permissions that your ConnectApp will request </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.UpdateAsync(System.String,System.String,System.Uri,System.String,Twilio.Http.HttpMethod,System.Uri,System.String,System.String,System.Uri,System.Collections.Generic.List{Twilio.Rest.Api.V2010.Account.ConnectAppResource.PermissionEnum},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a connect-app with the specified parameters
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="authorizeRedirectUrl"> The URL to redirect the user to after authorization </param>
            <param name="companyName"> The company name to set for the Connect App </param>
            <param name="deauthorizeCallbackMethod"> The HTTP method to use when calling deauthorize_callback_url </param>
            <param name="deauthorizeCallbackUrl"> The URL to call to de-authorize the Connect App </param>
            <param name="description"> A description of the Connect App </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="homepageUrl"> A public URL where users can obtain more information </param>
            <param name="permissions"> The set of permissions that your ConnectApp will request </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Read(Twilio.Rest.Api.V2010.Account.ReadConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of connect-apps belonging to the account used to make the request
            </summary>
            <param name="options"> Read ConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of connect-apps belonging to the account used to make the request
            </summary>
            <param name="options"> Read ConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of connect-apps belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of connect-apps belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.ConnectAppResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.ConnectAppResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an instance of a connect-app
            </summary>
            <param name="options"> Delete ConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteConnectAppOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an instance of a connect-app
            </summary>
            <param name="options"> Delete ConnectApp parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an instance of a connect-app
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an instance of a connect-app
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ConnectApp </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ConnectAppResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ConnectAppResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ConnectAppResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConnectAppResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConnectAppResource.AuthorizeRedirectUrl">
            <summary>
            The URL to redirect the user to after authorization
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConnectAppResource.CompanyName">
            <summary>
            The company name set for the Connect App
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConnectAppResource.DeauthorizeCallbackMethod">
            <summary>
            The HTTP method we use to call deauthorize_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConnectAppResource.DeauthorizeCallbackUrl">
            <summary>
            The URL we call to de-authorize the Connect App
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Description">
            <summary>
            The description of the Connect App
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConnectAppResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConnectAppResource.HomepageUrl">
            <summary>
            The URL users can obtain more information
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Permissions">
            <summary>
            The set of permissions that your ConnectApp requests
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ConnectAppResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions">
            <summary>
            Update an incoming-phone-number instance.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.AccountSid">
            <summary>
            The SID of the Account that created the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.ApiVersion">
            <summary>
            The API version to use for incoming calls made to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.SmsApplicationSid">
            <summary>
            Unique string that identifies the application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.SmsFallbackMethod">
            <summary>
            HTTP method used with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.SmsFallbackUrl">
            <summary>
            The URL we call when an error occurs while executing TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.SmsMethod">
            <summary>
            The HTTP method to use with sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.SmsUrl">
            <summary>
            The URL we should call when the phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.StatusCallbackMethod">
            <summary>
            The HTTP method we should use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.VoiceApplicationSid">
            <summary>
            The SID of the application to handle the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method used with fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.VoiceFallbackUrl">
            <summary>
            The URL we will call when an error occurs in TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.VoiceUrl">
            <summary>
            The URL we should call when the phone number receives a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.EmergencyStatus">
            <summary>
            Whether the phone number is enabled for emergency calling
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.EmergencyAddressSid">
            <summary>
            The emergency address configuration to use for emergency calling
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.TrunkSid">
            <summary>
            SID of the trunk to handle phone calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.VoiceReceiveMode">
            <summary>
            Incoming call type: fax or voice
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.IdentitySid">
            <summary>
            Unique string that identifies the identity associated with number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.AddressSid">
            <summary>
            The SID of the Address resource associated with the phone number
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateIncomingPhoneNumberOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchIncomingPhoneNumberOptions">
            <summary>
            Fetch an incoming-phone-number belonging to the account used to make the request.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchIncomingPhoneNumberOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchIncomingPhoneNumberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchIncomingPhoneNumberOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchIncomingPhoneNumberOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchIncomingPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteIncomingPhoneNumberOptions">
            <summary>
            Delete a phone-numbers belonging to the account used to make the request.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteIncomingPhoneNumberOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteIncomingPhoneNumberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteIncomingPhoneNumberOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteIncomingPhoneNumberOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteIncomingPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadIncomingPhoneNumberOptions">
            <summary>
            Retrieve a list of incoming-phone-numbers belonging to the account used to make the request.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadIncomingPhoneNumberOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadIncomingPhoneNumberOptions.Beta">
            <summary>
            Whether to include new phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadIncomingPhoneNumberOptions.FriendlyName">
            <summary>
            A string that identifies the IncomingPhoneNumber resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadIncomingPhoneNumberOptions.PhoneNumber">
            <summary>
            The phone numbers of the IncomingPhoneNumber resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadIncomingPhoneNumberOptions.Origin">
            <summary>
            Include phone numbers based on their origin. By default, phone numbers of all origin are included.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadIncomingPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions">
            <summary>
            Purchase a phone-number for the account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.PhoneNumber">
            <summary>
            The phone number to purchase in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.AreaCode">
            <summary>
            The desired area code for the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.ApiVersion">
            <summary>
            The API version to use for incoming calls made to the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.FriendlyName">
            <summary>
            A string to describe the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.SmsApplicationSid">
            <summary>
            The SID of the application to handle SMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.SmsFallbackMethod">
            <summary>
            HTTP method used with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.SmsFallbackUrl">
            <summary>
            The URL we call when an error occurs while executing TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.SmsMethod">
            <summary>
            The HTTP method to use with sms url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.SmsUrl">
            <summary>
            The URL we should call when the new phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.StatusCallbackMethod">
            <summary>
            HTTP method we should use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.VoiceApplicationSid">
            <summary>
            The SID of the application to handle the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.VoiceFallbackUrl">
            <summary>
            The URL we will call when an error occurs in TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.VoiceUrl">
            <summary>
            The URL we should call when the phone number receives a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.EmergencyStatus">
            <summary>
            Status determining whether the new phone number is enabled for emergency calling
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.EmergencyAddressSid">
            <summary>
            The emergency address configuration to use for emergency calling
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.TrunkSid">
            <summary>
            SID of the trunk to handle calls to the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.IdentitySid">
            <summary>
            The SID of the Identity resource to associate with the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.AddressSid">
            <summary>
            The SID of the Address resource associated with the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.VoiceReceiveMode">
            <summary>
            Incoming call type: fax or voice
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Update(Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an incoming-phone-number instance.
            </summary>
            <param name="options"> Update IncomingPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateIncomingPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an incoming-phone-number instance.
            </summary>
            <param name="options"> Update IncomingPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Update(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.String,System.Nullable{System.Boolean},Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.EmergencyStatusEnum,System.String,System.String,Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.VoiceReceiveModeEnum,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an incoming-phone-number instance.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to update </param>
            <param name="accountSid"> The SID of the Account that created the resource to update </param>
            <param name="apiVersion"> The API version to use for incoming calls made to the phone number </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="smsApplicationSid"> Unique string that identifies the application </param>
            <param name="smsFallbackMethod"> HTTP method used with sms_fallback_url </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while executing TwiML </param>
            <param name="smsMethod"> The HTTP method to use with sms_url </param>
            <param name="smsUrl"> The URL we should call when the phone number receives an incoming SMS message </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="voiceApplicationSid"> The SID of the application to handle the phone number </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="voiceFallbackMethod"> The HTTP method used with fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we will call when an error occurs in TwiML </param>
            <param name="voiceMethod"> The HTTP method used with the voice_url </param>
            <param name="voiceUrl"> The URL we should call when the phone number receives a call </param>
            <param name="emergencyStatus"> Whether the phone number is enabled for emergency calling </param>
            <param name="emergencyAddressSid"> The emergency address configuration to use for emergency calling </param>
            <param name="trunkSid"> SID of the trunk to handle phone calls to the phone number </param>
            <param name="voiceReceiveMode"> Incoming call type: fax or voice </param>
            <param name="identitySid"> Unique string that identifies the identity associated with number </param>
            <param name="addressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.String,System.Nullable{System.Boolean},Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.EmergencyStatusEnum,System.String,System.String,Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.VoiceReceiveModeEnum,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an incoming-phone-number instance.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to update </param>
            <param name="accountSid"> The SID of the Account that created the resource to update </param>
            <param name="apiVersion"> The API version to use for incoming calls made to the phone number </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="smsApplicationSid"> Unique string that identifies the application </param>
            <param name="smsFallbackMethod"> HTTP method used with sms_fallback_url </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while executing TwiML </param>
            <param name="smsMethod"> The HTTP method to use with sms_url </param>
            <param name="smsUrl"> The URL we should call when the phone number receives an incoming SMS message </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="voiceApplicationSid"> The SID of the application to handle the phone number </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="voiceFallbackMethod"> The HTTP method used with fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we will call when an error occurs in TwiML </param>
            <param name="voiceMethod"> The HTTP method used with the voice_url </param>
            <param name="voiceUrl"> The URL we should call when the phone number receives a call </param>
            <param name="emergencyStatus"> Whether the phone number is enabled for emergency calling </param>
            <param name="emergencyAddressSid"> The emergency address configuration to use for emergency calling </param>
            <param name="trunkSid"> SID of the trunk to handle phone calls to the phone number </param>
            <param name="voiceReceiveMode"> Incoming call type: fax or voice </param>
            <param name="identitySid"> Unique string that identifies the identity associated with number </param>
            <param name="addressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchIncomingPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an incoming-phone-number belonging to the account used to make the request.
            </summary>
            <param name="options"> Fetch IncomingPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchIncomingPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an incoming-phone-number belonging to the account used to make the request.
            </summary>
            <param name="options"> Fetch IncomingPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an incoming-phone-number belonging to the account used to make the request.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an incoming-phone-number belonging to the account used to make the request.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteIncomingPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a phone-numbers belonging to the account used to make the request.
            </summary>
            <param name="options"> Delete IncomingPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteIncomingPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a phone-numbers belonging to the account used to make the request.
            </summary>
            <param name="options"> Delete IncomingPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a phone-numbers belonging to the account used to make the request.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a phone-numbers belonging to the account used to make the request.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Read(Twilio.Rest.Api.V2010.Account.ReadIncomingPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of incoming-phone-numbers belonging to the account used to make the request.
            </summary>
            <param name="options"> Read IncomingPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadIncomingPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of incoming-phone-numbers belonging to the account used to make the request.
            </summary>
            <param name="options"> Read IncomingPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Read(System.String,System.Nullable{System.Boolean},System.String,Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of incoming-phone-numbers belonging to the account used to make the request.
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="beta"> Whether to include new phone numbers </param>
            <param name="friendlyName"> A string that identifies the IncomingPhoneNumber resources to read </param>
            <param name="phoneNumber"> The phone numbers of the IncomingPhoneNumber resources to read </param>
            <param name="origin"> Include phone numbers based on their origin. By default, phone numbers of all origin are
                         included. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.ReadAsync(System.String,System.Nullable{System.Boolean},System.String,Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of incoming-phone-numbers belonging to the account used to make the request.
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="beta"> Whether to include new phone numbers </param>
            <param name="friendlyName"> A string that identifies the IncomingPhoneNumber resources to read </param>
            <param name="phoneNumber"> The phone numbers of the IncomingPhoneNumber resources to read </param>
            <param name="origin"> Include phone numbers based on their origin. By default, phone numbers of all origin are
                         included. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Create(Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Purchase a phone-number for the account.
            </summary>
            <param name="options"> Create IncomingPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.CreateAsync(Twilio.Rest.Api.V2010.Account.CreateIncomingPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Purchase a phone-number for the account.
            </summary>
            <param name="options"> Create IncomingPhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Create(System.String,Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.String,System.Nullable{System.Boolean},Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.EmergencyStatusEnum,System.String,System.String,System.String,System.String,Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.VoiceReceiveModeEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Purchase a phone-number for the account.
            </summary>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="phoneNumber"> The phone number to purchase in E.164 format </param>
            <param name="areaCode"> The desired area code for the new phone number </param>
            <param name="apiVersion"> The API version to use for incoming calls made to the new phone number </param>
            <param name="friendlyName"> A string to describe the new phone number </param>
            <param name="smsApplicationSid"> The SID of the application to handle SMS messages </param>
            <param name="smsFallbackMethod"> HTTP method used with sms_fallback_url </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while executing TwiML </param>
            <param name="smsMethod"> The HTTP method to use with sms url </param>
            <param name="smsUrl"> The URL we should call when the new phone number receives an incoming SMS message </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> HTTP method we should use to call status_callback </param>
            <param name="voiceApplicationSid"> The SID of the application to handle the new phone number </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="voiceFallbackMethod"> The HTTP method used with voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we will call when an error occurs in TwiML </param>
            <param name="voiceMethod"> The HTTP method used with the voice_url </param>
            <param name="voiceUrl"> The URL we should call when the phone number receives a call </param>
            <param name="emergencyStatus"> Status determining whether the new phone number is enabled for emergency calling
                                  </param>
            <param name="emergencyAddressSid"> The emergency address configuration to use for emergency calling </param>
            <param name="trunkSid"> SID of the trunk to handle calls to the new phone number </param>
            <param name="identitySid"> The SID of the Identity resource to associate with the new phone number </param>
            <param name="addressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="voiceReceiveMode"> Incoming call type: fax or voice </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.CreateAsync(System.String,Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.String,System.Nullable{System.Boolean},Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.EmergencyStatusEnum,System.String,System.String,System.String,System.String,Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.VoiceReceiveModeEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Purchase a phone-number for the account.
            </summary>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="phoneNumber"> The phone number to purchase in E.164 format </param>
            <param name="areaCode"> The desired area code for the new phone number </param>
            <param name="apiVersion"> The API version to use for incoming calls made to the new phone number </param>
            <param name="friendlyName"> A string to describe the new phone number </param>
            <param name="smsApplicationSid"> The SID of the application to handle SMS messages </param>
            <param name="smsFallbackMethod"> HTTP method used with sms_fallback_url </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while executing TwiML </param>
            <param name="smsMethod"> The HTTP method to use with sms url </param>
            <param name="smsUrl"> The URL we should call when the new phone number receives an incoming SMS message </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> HTTP method we should use to call status_callback </param>
            <param name="voiceApplicationSid"> The SID of the application to handle the new phone number </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="voiceFallbackMethod"> The HTTP method used with voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we will call when an error occurs in TwiML </param>
            <param name="voiceMethod"> The HTTP method used with the voice_url </param>
            <param name="voiceUrl"> The URL we should call when the phone number receives a call </param>
            <param name="emergencyStatus"> Status determining whether the new phone number is enabled for emergency calling
                                  </param>
            <param name="emergencyAddressSid"> The emergency address configuration to use for emergency calling </param>
            <param name="trunkSid"> SID of the trunk to handle calls to the new phone number </param>
            <param name="identitySid"> The SID of the Identity resource to associate with the new phone number </param>
            <param name="addressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="voiceReceiveMode"> Incoming call type: fax or voice </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IncomingPhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a IncomingPhoneNumberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> IncomingPhoneNumberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.AddressSid">
            <summary>
            The SID of the Address resource associated with the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.AddressRequirements">
            <summary>
            Whether the phone number requires an Address registered with Twilio.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.ApiVersion">
            <summary>
            The API version used to start a new TwiML session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Capabilities">
            <summary>
            Indicate if a phone can receive calls or messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.IdentitySid">
            <summary>
            The SID of the Identity resource associated with number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Origin">
            <summary>
            The phone number's origin. Can be twilio or hosted.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.SmsApplicationSid">
            <summary>
            The SID of the application that handles SMS messages sent to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.SmsFallbackMethod">
            <summary>
            The HTTP method used with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.SmsFallbackUrl">
            <summary>
            The URL that we call when an error occurs while retrieving or executing the TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.SmsMethod">
            <summary>
            The HTTP method to use with sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.SmsUrl">
            <summary>
            The URL we call when the phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.StatusCallbackMethod">
            <summary>
            The HTTP method we use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.TrunkSid">
            <summary>
            The SID of the Trunk that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.VoiceApplicationSid">
            <summary>
            The SID of the application that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.VoiceFallbackUrl">
            <summary>
            The URL we call when an error occurs in TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.VoiceUrl">
            <summary>
            The URL we call when the phone number receives a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.EmergencyStatus">
            <summary>
            Whether the phone number is enabled for emergency calling
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumberResource.EmergencyAddressSid">
            <summary>
            The emergency address configuration to use for emergency calling
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.FetchAssignedAddOnOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch an instance of an Add-on installation currently assigned to this Number.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.FetchAssignedAddOnOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.FetchAssignedAddOnOptions.PathResourceSid">
            <summary>
            The SID of the Phone Number that installed this Add-on
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.FetchAssignedAddOnOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.FetchAssignedAddOnOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchAssignedAddOnOptions
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number that installed this Add-on </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.FetchAssignedAddOnOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadAssignedAddOnOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of Add-on installations currently assigned to this Number.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadAssignedAddOnOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadAssignedAddOnOptions.PathResourceSid">
            <summary>
            The SID of the Phone Number that installed this Add-on
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadAssignedAddOnOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadAssignedAddOnOptions
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number that installed this Add-on </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadAssignedAddOnOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateAssignedAddOnOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Assign an Add-on installation to the Number specified.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateAssignedAddOnOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateAssignedAddOnOptions.PathResourceSid">
            <summary>
            The SID of the Phone Number to assign the Add-on
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateAssignedAddOnOptions.InstalledAddOnSid">
            <summary>
            The SID that identifies the Add-on installation
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateAssignedAddOnOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateAssignedAddOnOptions
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number to assign the Add-on </param>
            <param name="installedAddOnSid"> The SID that identifies the Add-on installation </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateAssignedAddOnOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.DeleteAssignedAddOnOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Remove the assignment of an Add-on installation from the Number specified.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.DeleteAssignedAddOnOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.DeleteAssignedAddOnOptions.PathResourceSid">
            <summary>
            The SID of the Phone Number that installed this Add-on
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.DeleteAssignedAddOnOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.DeleteAssignedAddOnOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteAssignedAddOnOptions
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number that installed this Add-on </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.DeleteAssignedAddOnOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Fetch(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.FetchAssignedAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on installation currently assigned to this Number.
            </summary>
            <param name="options"> Fetch AssignedAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.FetchAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.FetchAssignedAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on installation currently assigned to this Number.
            </summary>
            <param name="options"> Fetch AssignedAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on installation currently assigned to this Number.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number that installed this Add-on </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on installation currently assigned to this Number.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number that installed this Add-on </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Read(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadAssignedAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-on installations currently assigned to this Number.
            </summary>
            <param name="options"> Read AssignedAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.ReadAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadAssignedAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-on installations currently assigned to this Number.
            </summary>
            <param name="options"> Read AssignedAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-on installations currently assigned to this Number.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number that installed this Add-on </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-on installations currently assigned to this Number.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number that installed this Add-on </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Create(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateAssignedAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Assign an Add-on installation to the Number specified.
            </summary>
            <param name="options"> Create AssignedAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.CreateAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateAssignedAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Assign an Add-on installation to the Number specified.
            </summary>
            <param name="options"> Create AssignedAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Assign an Add-on installation to the Number specified.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number to assign the Add-on </param>
            <param name="installedAddOnSid"> The SID that identifies the Add-on installation </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Assign an Add-on installation to the Number specified.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number to assign the Add-on </param>
            <param name="installedAddOnSid"> The SID that identifies the Add-on installation </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Delete(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.DeleteAssignedAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove the assignment of an Add-on installation from the Number specified.
            </summary>
            <param name="options"> Delete AssignedAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.DeleteAssignedAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove the assignment of an Add-on installation from the Number specified.
            </summary>
            <param name="options"> Delete AssignedAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove the assignment of an Add-on installation from the Number specified.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number that installed this Add-on </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove the assignment of an Add-on installation from the Number specified.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number that installed this Add-on </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AssignedAddOnResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AssignedAddOnResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.ResourceSid">
            <summary>
            The SID of the Phone Number that installed this Add-on
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Description">
            <summary>
            A short description of the Add-on functionality
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Configuration">
            <summary>
            A JSON string that represents the current configuration
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOnResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.FetchAssignedAddOnExtensionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch an instance of an Extension for the Assigned Add-on.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.FetchAssignedAddOnExtensionOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.FetchAssignedAddOnExtensionOptions.PathResourceSid">
            <summary>
            The SID of the Phone Number to which the Add-on is assigned
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.FetchAssignedAddOnExtensionOptions.PathAssignedAddOnSid">
            <summary>
            The SID that uniquely identifies the assigned Add-on installation
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.FetchAssignedAddOnExtensionOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.FetchAssignedAddOnExtensionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchAssignedAddOnExtensionOptions
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number to which the Add-on is assigned </param>
            <param name="pathAssignedAddOnSid"> The SID that uniquely identifies the assigned Add-on installation </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.FetchAssignedAddOnExtensionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.ReadAssignedAddOnExtensionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of Extensions for the Assigned Add-on.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.ReadAssignedAddOnExtensionOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.ReadAssignedAddOnExtensionOptions.PathResourceSid">
            <summary>
            The SID of the Phone Number to which the Add-on is assigned
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.ReadAssignedAddOnExtensionOptions.PathAssignedAddOnSid">
            <summary>
            The SID that uniquely identifies the assigned Add-on installation
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.ReadAssignedAddOnExtensionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadAssignedAddOnExtensionOptions
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number to which the Add-on is assigned </param>
            <param name="pathAssignedAddOnSid"> The SID that uniquely identifies the assigned Add-on installation </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.ReadAssignedAddOnExtensionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.Fetch(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.FetchAssignedAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Assigned Add-on.
            </summary>
            <param name="options"> Fetch AssignedAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.FetchAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.FetchAssignedAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Assigned Add-on.
            </summary>
            <param name="options"> Fetch AssignedAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.Fetch(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Assigned Add-on.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number to which the Add-on is assigned </param>
            <param name="pathAssignedAddOnSid"> The SID that uniquely identifies the assigned Add-on installation </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.FetchAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Assigned Add-on.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number to which the Add-on is assigned </param>
            <param name="pathAssignedAddOnSid"> The SID that uniquely identifies the assigned Add-on installation </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.Read(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.ReadAssignedAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Assigned Add-on.
            </summary>
            <param name="options"> Read AssignedAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.ReadAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.ReadAssignedAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Assigned Add-on.
            </summary>
            <param name="options"> Read AssignedAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.Read(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Assigned Add-on.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number to which the Add-on is assigned </param>
            <param name="pathAssignedAddOnSid"> The SID that uniquely identifies the assigned Add-on installation </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssignedAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.ReadAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Assigned Add-on.
            </summary>
            <param name="pathResourceSid"> The SID of the Phone Number to which the Add-on is assigned </param>
            <param name="pathAssignedAddOnSid"> The SID that uniquely identifies the assigned Add-on installation </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssignedAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AssignedAddOnExtensionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AssignedAddOnExtensionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.ResourceSid">
            <summary>
            The SID of the Phone Number to which the Add-on is assigned
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.AssignedAddOnSid">
            <summary>
            The SID that uniquely identifies the assigned Add-on installation
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.ProductName">
            <summary>
            A string that you assigned to describe the Product this Extension is used within
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.AssignedAddOn.AssignedAddOnExtensionResource.Enabled">
            <summary>
            Whether the Extension will be invoked
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadLocalOptions">
            <summary>
            ReadLocalOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadLocalOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadLocalOptions.Beta">
            <summary>
            Whether to include new phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadLocalOptions.FriendlyName">
            <summary>
            A string that identifies the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadLocalOptions.PhoneNumber">
            <summary>
            The phone numbers of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadLocalOptions.Origin">
            <summary>
            Include phone numbers based on their origin. By default, phone numbers of all origin are included.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadLocalOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions">
            <summary>
            CreateLocalOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.PhoneNumber">
            <summary>
            The phone number to purchase in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.ApiVersion">
            <summary>
            The API version to use for incoming calls made to the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.FriendlyName">
            <summary>
            A string to describe the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.SmsApplicationSid">
            <summary>
            The SID of the application to handle SMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.SmsFallbackMethod">
            <summary>
            The HTTP method we use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.SmsFallbackUrl">
            <summary>
            The URL we call when an error occurs while executing TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.SmsMethod">
            <summary>
            The HTTP method to use with sms url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.SmsUrl">
            <summary>
            The URL we should call when the new phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.StatusCallbackMethod">
            <summary>
            HTTP method we should use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.VoiceApplicationSid">
            <summary>
            The SID of the application to handle the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.VoiceFallbackUrl">
            <summary>
            The URL we will call when an error occurs in TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.VoiceUrl">
            <summary>
            The URL we should call when the phone number receives a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.IdentitySid">
            <summary>
            The SID of the Identity resource to associate with the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.AddressSid">
            <summary>
            The SID of the Address resource associated with the phone number
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.#ctor(Twilio.Types.PhoneNumber)">
            <summary>
            Construct a new CreateLocalOptions
            </summary>
            <param name="phoneNumber"> The phone number to purchase in E.164 format </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.Read(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadLocalOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Local parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.ReadAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadLocalOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Local parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.Read(System.String,System.Nullable{System.Boolean},System.String,Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="beta"> Whether to include new phone numbers </param>
            <param name="friendlyName"> A string that identifies the resources to read </param>
            <param name="phoneNumber"> The phone numbers of the resources to read </param>
            <param name="origin"> Include phone numbers based on their origin. By default, phone numbers of all origin are
                         included. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.ReadAsync(System.String,System.Nullable{System.Boolean},System.String,Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="beta"> Whether to include new phone numbers </param>
            <param name="friendlyName"> A string that identifies the resources to read </param>
            <param name="phoneNumber"> The phone numbers of the resources to read </param>
            <param name="origin"> Include phone numbers based on their origin. By default, phone numbers of all origin are
                         included. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.Create(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Local parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.CreateAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateLocalOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Local parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.Create(Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.String,System.Nullable{System.Boolean},Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="phoneNumber"> The phone number to purchase in E.164 format </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="apiVersion"> The API version to use for incoming calls made to the new phone number </param>
            <param name="friendlyName"> A string to describe the new phone number </param>
            <param name="smsApplicationSid"> The SID of the application to handle SMS messages </param>
            <param name="smsFallbackMethod"> The HTTP method we use to call status_callback </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while executing TwiML </param>
            <param name="smsMethod"> The HTTP method to use with sms url </param>
            <param name="smsUrl"> The URL we should call when the new phone number receives an incoming SMS message </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> HTTP method we should use to call status_callback </param>
            <param name="voiceApplicationSid"> The SID of the application to handle the new phone number </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="voiceFallbackMethod"> The HTTP method used with voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we will call when an error occurs in TwiML </param>
            <param name="voiceMethod"> The HTTP method used with the voice_url </param>
            <param name="voiceUrl"> The URL we should call when the phone number receives a call </param>
            <param name="identitySid"> The SID of the Identity resource to associate with the new phone number </param>
            <param name="addressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.CreateAsync(Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.String,System.Nullable{System.Boolean},Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="phoneNumber"> The phone number to purchase in E.164 format </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="apiVersion"> The API version to use for incoming calls made to the new phone number </param>
            <param name="friendlyName"> A string to describe the new phone number </param>
            <param name="smsApplicationSid"> The SID of the application to handle SMS messages </param>
            <param name="smsFallbackMethod"> The HTTP method we use to call status_callback </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while executing TwiML </param>
            <param name="smsMethod"> The HTTP method to use with sms url </param>
            <param name="smsUrl"> The URL we should call when the new phone number receives an incoming SMS message </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> HTTP method we should use to call status_callback </param>
            <param name="voiceApplicationSid"> The SID of the application to handle the new phone number </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="voiceFallbackMethod"> The HTTP method used with voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we will call when an error occurs in TwiML </param>
            <param name="voiceMethod"> The HTTP method used with the voice_url </param>
            <param name="voiceUrl"> The URL we should call when the phone number receives a call </param>
            <param name="identitySid"> The SID of the Identity resource to associate with the new phone number </param>
            <param name="addressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Local </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a LocalResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> LocalResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.AddressSid">
            <summary>
            The SID of the Address resource associated with the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.AddressRequirements">
            <summary>
            Whether the phone number requires an Address registered with Twilio.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.ApiVersion">
            <summary>
            The API version used to start a new TwiML session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.Capabilities">
            <summary>
            Indicate if a phone can receive calls or messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.IdentitySid">
            <summary>
            The SID of the Identity resource associated with number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.Origin">
            <summary>
            The phone number's origin. Can be twilio or hosted.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.SmsApplicationSid">
            <summary>
            The SID of the Application resource to handle SMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.SmsFallbackMethod">
            <summary>
            The HTTP method used with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.SmsFallbackUrl">
            <summary>
            The URL that we call when an error occurs while retrieving or executing the TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.SmsMethod">
            <summary>
            The HTTP method to use with sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.SmsUrl">
            <summary>
            The URL we call when the phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.StatusCallbackMethod">
            <summary>
            The HTTP method we use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.TrunkSid">
            <summary>
            The SID of the Trunk that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.VoiceApplicationSid">
            <summary>
            The SID of the application that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.VoiceFallbackUrl">
            <summary>
            The URL we call when an error occurs in TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.LocalResource.VoiceUrl">
            <summary>
            The URL we call when this phone number receives a call
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadMobileOptions">
            <summary>
            ReadMobileOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadMobileOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadMobileOptions.Beta">
            <summary>
            Whether to include new phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadMobileOptions.FriendlyName">
            <summary>
            A string that identifies the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadMobileOptions.PhoneNumber">
            <summary>
            The phone numbers of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadMobileOptions.Origin">
            <summary>
            Include phone numbers based on their origin. By default, phone numbers of all origin are included.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadMobileOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions">
            <summary>
            CreateMobileOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.PhoneNumber">
            <summary>
            The phone number to purchase in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.ApiVersion">
            <summary>
            The API version to use for incoming calls made to the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.FriendlyName">
            <summary>
            A string to describe the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.SmsApplicationSid">
            <summary>
            The SID of the application to handle SMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.SmsFallbackMethod">
            <summary>
            HTTP method used with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.SmsFallbackUrl">
            <summary>
            The URL we call when an error occurs while executing TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.SmsMethod">
            <summary>
            The HTTP method to use with sms url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.SmsUrl">
            <summary>
            The URL we should call when the new phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.StatusCallbackMethod">
            <summary>
            The HTTP method we should use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.VoiceApplicationSid">
            <summary>
            The SID of the application to handle the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.VoiceFallbackUrl">
            <summary>
            The URL we will call when an error occurs in TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.VoiceUrl">
            <summary>
            The URL we should call when the phone number receives a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.IdentitySid">
            <summary>
            The SID of the Identity resource to associate with the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.AddressSid">
            <summary>
            The SID of the Address resource associated with the phone number
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.#ctor(Twilio.Types.PhoneNumber)">
            <summary>
            Construct a new CreateMobileOptions
            </summary>
            <param name="phoneNumber"> The phone number to purchase in E.164 format </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.Read(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadMobileOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Mobile parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.ReadAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadMobileOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Mobile parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.Read(System.String,System.Nullable{System.Boolean},System.String,Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="beta"> Whether to include new phone numbers </param>
            <param name="friendlyName"> A string that identifies the resources to read </param>
            <param name="phoneNumber"> The phone numbers of the resources to read </param>
            <param name="origin"> Include phone numbers based on their origin. By default, phone numbers of all origin are
                         included. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.ReadAsync(System.String,System.Nullable{System.Boolean},System.String,Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="beta"> Whether to include new phone numbers </param>
            <param name="friendlyName"> A string that identifies the resources to read </param>
            <param name="phoneNumber"> The phone numbers of the resources to read </param>
            <param name="origin"> Include phone numbers based on their origin. By default, phone numbers of all origin are
                         included. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.Create(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Mobile parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.CreateAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateMobileOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Mobile parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.Create(Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.String,System.Nullable{System.Boolean},Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="phoneNumber"> The phone number to purchase in E.164 format </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="apiVersion"> The API version to use for incoming calls made to the new phone number </param>
            <param name="friendlyName"> A string to describe the new phone number </param>
            <param name="smsApplicationSid"> The SID of the application to handle SMS messages </param>
            <param name="smsFallbackMethod"> HTTP method used with sms_fallback_url </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while executing TwiML </param>
            <param name="smsMethod"> The HTTP method to use with sms url </param>
            <param name="smsUrl"> The URL we should call when the new phone number receives an incoming SMS message </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="voiceApplicationSid"> The SID of the application to handle the new phone number </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="voiceFallbackMethod"> The HTTP method used with voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we will call when an error occurs in TwiML </param>
            <param name="voiceMethod"> The HTTP method used with the voice_url </param>
            <param name="voiceUrl"> The URL we should call when the phone number receives a call </param>
            <param name="identitySid"> The SID of the Identity resource to associate with the new phone number </param>
            <param name="addressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.CreateAsync(Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.String,System.Nullable{System.Boolean},Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="phoneNumber"> The phone number to purchase in E.164 format </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="apiVersion"> The API version to use for incoming calls made to the new phone number </param>
            <param name="friendlyName"> A string to describe the new phone number </param>
            <param name="smsApplicationSid"> The SID of the application to handle SMS messages </param>
            <param name="smsFallbackMethod"> HTTP method used with sms_fallback_url </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while executing TwiML </param>
            <param name="smsMethod"> The HTTP method to use with sms url </param>
            <param name="smsUrl"> The URL we should call when the new phone number receives an incoming SMS message </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="voiceApplicationSid"> The SID of the application to handle the new phone number </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="voiceFallbackMethod"> The HTTP method used with voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we will call when an error occurs in TwiML </param>
            <param name="voiceMethod"> The HTTP method used with the voice_url </param>
            <param name="voiceUrl"> The URL we should call when the phone number receives a call </param>
            <param name="identitySid"> The SID of the Identity resource to associate with the new phone number </param>
            <param name="addressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Mobile </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MobileResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MobileResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.AddressSid">
            <summary>
            The SID of the Address resource associated with the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.AddressRequirements">
            <summary>
            Whether the phone number requires an Address registered with Twilio.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.ApiVersion">
            <summary>
            The API version used to start a new TwiML session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.Capabilities">
            <summary>
            Indicate if a phone can receive calls or messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.IdentitySid">
            <summary>
            The SID of the Identity resource associated with number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.Origin">
            <summary>
            The phone number's origin. Can be twilio or hosted.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.SmsApplicationSid">
            <summary>
            The SID of the application that handles SMS messages sent to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.SmsFallbackMethod">
            <summary>
            The HTTP method used with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.SmsFallbackUrl">
            <summary>
            The URL that we call when an error occurs while retrieving or executing the TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.SmsMethod">
            <summary>
            The HTTP method to use with sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.SmsUrl">
            <summary>
            The URL we call when the phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.StatusCallbackMethod">
            <summary>
            The HTTP method we use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.TrunkSid">
            <summary>
            The SID of the Trunk that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.VoiceApplicationSid">
            <summary>
            The SID of the application that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.VoiceFallbackUrl">
            <summary>
            The URL we call when an error occurs in TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.MobileResource.VoiceUrl">
            <summary>
            The URL we call when the phone number receives a call
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadTollFreeOptions">
            <summary>
            ReadTollFreeOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadTollFreeOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadTollFreeOptions.Beta">
            <summary>
            Whether to include new phone numbers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadTollFreeOptions.FriendlyName">
            <summary>
            A string that identifies the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadTollFreeOptions.PhoneNumber">
            <summary>
            The phone numbers of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadTollFreeOptions.Origin">
            <summary>
            Include phone numbers based on their origin. By default, phone numbers of all origin are included.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadTollFreeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions">
            <summary>
            CreateTollFreeOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.PhoneNumber">
            <summary>
            The phone number to purchase in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.ApiVersion">
            <summary>
            The API version to use for incoming calls made to the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.FriendlyName">
            <summary>
            A string to describe the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.SmsApplicationSid">
            <summary>
            The SID of the application to handle SMS messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.SmsFallbackMethod">
            <summary>
            HTTP method used with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.SmsFallbackUrl">
            <summary>
            The URL we call when an error occurs while executing TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.SmsMethod">
            <summary>
            The HTTP method to use with sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.SmsUrl">
            <summary>
            The URL we should call when the new phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.StatusCallbackMethod">
            <summary>
            The HTTP method we should use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.VoiceApplicationSid">
            <summary>
            The SID of the application to handle the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.VoiceFallbackUrl">
            <summary>
            The URL we will call when an error occurs in TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.VoiceUrl">
            <summary>
            The URL we should call when the phone number receives a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.IdentitySid">
            <summary>
            The SID of the Identity resource to associate with the new phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.AddressSid">
            <summary>
            The SID of the Address resource associated with the phone number
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.#ctor(Twilio.Types.PhoneNumber)">
            <summary>
            Construct a new CreateTollFreeOptions
            </summary>
            <param name="phoneNumber"> The phone number to purchase in E.164 format </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.Read(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadTollFreeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read TollFree parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.ReadAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.ReadTollFreeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read TollFree parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.Read(System.String,System.Nullable{System.Boolean},System.String,Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="beta"> Whether to include new phone numbers </param>
            <param name="friendlyName"> A string that identifies the resources to read </param>
            <param name="phoneNumber"> The phone numbers of the resources to read </param>
            <param name="origin"> Include phone numbers based on their origin. By default, phone numbers of all origin are
                         included. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.ReadAsync(System.String,System.Nullable{System.Boolean},System.String,Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="beta"> Whether to include new phone numbers </param>
            <param name="friendlyName"> A string that identifies the resources to read </param>
            <param name="phoneNumber"> The phone numbers of the resources to read </param>
            <param name="origin"> Include phone numbers based on their origin. By default, phone numbers of all origin are
                         included. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.Create(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create TollFree parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.CreateAsync(Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.CreateTollFreeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create TollFree parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.Create(Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.String,System.Nullable{System.Boolean},Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="phoneNumber"> The phone number to purchase in E.164 format </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="apiVersion"> The API version to use for incoming calls made to the new phone number </param>
            <param name="friendlyName"> A string to describe the new phone number </param>
            <param name="smsApplicationSid"> The SID of the application to handle SMS messages </param>
            <param name="smsFallbackMethod"> HTTP method used with sms_fallback_url </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while executing TwiML </param>
            <param name="smsMethod"> The HTTP method to use with sms_url </param>
            <param name="smsUrl"> The URL we should call when the new phone number receives an incoming SMS message </param>
            <param name="statusCallback"> The URL to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="voiceApplicationSid"> The SID of the application to handle the new phone number </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="voiceFallbackMethod"> The HTTP method used with voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we will call when an error occurs in TwiML </param>
            <param name="voiceMethod"> The HTTP method used with the voice_url </param>
            <param name="voiceUrl"> The URL we should call when the phone number receives a call </param>
            <param name="identitySid"> The SID of the Identity resource to associate with the new phone number </param>
            <param name="addressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.CreateAsync(Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.String,System.Nullable{System.Boolean},Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="phoneNumber"> The phone number to purchase in E.164 format </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="apiVersion"> The API version to use for incoming calls made to the new phone number </param>
            <param name="friendlyName"> A string to describe the new phone number </param>
            <param name="smsApplicationSid"> The SID of the application to handle SMS messages </param>
            <param name="smsFallbackMethod"> HTTP method used with sms_fallback_url </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while executing TwiML </param>
            <param name="smsMethod"> The HTTP method to use with sms_url </param>
            <param name="smsUrl"> The URL we should call when the new phone number receives an incoming SMS message </param>
            <param name="statusCallback"> The URL to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="voiceApplicationSid"> The SID of the application to handle the new phone number </param>
            <param name="voiceCallerIdLookup"> Whether to lookup the caller's name </param>
            <param name="voiceFallbackMethod"> The HTTP method used with voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we will call when an error occurs in TwiML </param>
            <param name="voiceMethod"> The HTTP method used with the voice_url </param>
            <param name="voiceUrl"> The URL we should call when the phone number receives a call </param>
            <param name="identitySid"> The SID of the Identity resource to associate with the new phone number </param>
            <param name="addressSid"> The SID of the Address resource associated with the phone number </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TollFree </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TollFreeResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TollFreeResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.AddressSid">
            <summary>
            The SID of the Address resource associated with the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.AddressRequirements">
            <summary>
            Whether the phone number requires an Address registered with Twilio.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.ApiVersion">
            <summary>
            The API version used to start a new TwiML session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.Capabilities">
            <summary>
            Indicate if a phone can receive calls or messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.IdentitySid">
            <summary>
            The SID of the Identity resource associated with number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.Origin">
            <summary>
            The phone number's origin. Can be twilio or hosted.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.SmsApplicationSid">
            <summary>
            The SID of the application that handles SMS messages sent to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.SmsFallbackMethod">
            <summary>
            The HTTP method used with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.SmsFallbackUrl">
            <summary>
            The URL that we call when an error occurs while retrieving or executing the TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.SmsMethod">
            <summary>
            The HTTP method to use with sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.SmsUrl">
            <summary>
            The URL we call when the phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.StatusCallbackMethod">
            <summary>
            The HTTP method we use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.TrunkSid">
            <summary>
            The SID of the Trunk that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.VoiceApplicationSid">
            <summary>
            The SID of the application that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.VoiceFallbackUrl">
            <summary>
            The URL we call when an error occurs in TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.IncomingPhoneNumber.TollFreeResource.VoiceUrl">
            <summary>
            The URL we call when the phone number receives a call
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchKeyOptions">
            <summary>
            FetchKeyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchKeyOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchKeyOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchKeyOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateKeyOptions">
            <summary>
            UpdateKeyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateKeyOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateKeyOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateKeyOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateKeyOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteKeyOptions">
            <summary>
            DeleteKeyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteKeyOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteKeyOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteKeyOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadKeyOptions">
            <summary>
            ReadKeyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadKeyOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.Update(Twilio.Rest.Api.V2010.Account.UpdateKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.Read(Twilio.Rest.Api.V2010.Account.ReadKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.KeyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.KeyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.KeyResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a KeyResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> KeyResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.KeyResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.KeyResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.KeyResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.KeyResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.CreateMessageOptions">
            <summary>
            Send a message from the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.To">
            <summary>
            The destination phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.From">
            <summary>
            The phone number that initiated the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.MessagingServiceSid">
            <summary>
            The SID of the Messaging Service you want to associate with the message.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.Body">
            <summary>
            The text of the message you want to send. Can be up to 1,600 characters in length.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.MediaUrl">
            <summary>
            The URL of the media to send with the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.ApplicationSid">
            <summary>
            The application to use for callbacks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.MaxPrice">
            <summary>
            The total maximum price up to 4 decimal places in US dollars acceptable for the message to be delivered.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.ProvideFeedback">
            <summary>
            Whether to confirm delivery of the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.ValidityPeriod">
            <summary>
            The number of seconds that the message can remain in our outgoing queue.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.ForceDelivery">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.SmartEncoded">
            <summary>
            Whether to detect Unicode characters that have a similar GSM-7 character and replace them
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.#ctor(Twilio.Types.PhoneNumber)">
            <summary>
            Construct a new CreateMessageOptions
            </summary>
            <param name="to"> The destination phone number </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteMessageOptions">
            <summary>
            Deletes a message record from your account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteMessageOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteMessageOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteMessageOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteMessageOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchMessageOptions">
            <summary>
            Fetch a message belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchMessageOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchMessageOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchMessageOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchMessageOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadMessageOptions">
            <summary>
            Retrieve a list of messages belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadMessageOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadMessageOptions.To">
            <summary>
            Filter by messages sent to this number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadMessageOptions.From">
            <summary>
            Filter by from number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadMessageOptions.DateSentBefore">
            <summary>
            Filter by date sent
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadMessageOptions.DateSent">
            <summary>
            Filter by date sent
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadMessageOptions.DateSentAfter">
            <summary>
            Filter by date sent
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateMessageOptions">
            <summary>
            To redact a message-body from a post-flight message record, post to the message instance resource with an empty body
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateMessageOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateMessageOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateMessageOptions.Body">
            <summary>
            The text of the message you want to send
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateMessageOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="body"> The text of the message you want to send </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.Create(Twilio.Rest.Api.V2010.Account.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Send a message from the account used to make the request
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.CreateAsync(Twilio.Rest.Api.V2010.Account.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Send a message from the account used to make the request
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.Create(Twilio.Types.PhoneNumber,System.String,Twilio.Types.PhoneNumber,System.String,System.String,System.Collections.Generic.List{System.Uri},System.Uri,System.String,System.Nullable{System.Decimal},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Send a message from the account used to make the request
            </summary>
            <param name="to"> The destination phone number </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="from"> The phone number that initiated the message </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service you want to associate with the message. </param>
            <param name="body"> The text of the message you want to send. Can be up to 1,600 characters in length. </param>
            <param name="mediaUrl"> The URL of the media to send with the message </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="applicationSid"> The application to use for callbacks </param>
            <param name="maxPrice"> The total maximum price up to 4 decimal places in US dollars acceptable for the message to
                           be delivered. </param>
            <param name="provideFeedback"> Whether to confirm delivery of the message </param>
            <param name="validityPeriod"> The number of seconds that the message can remain in our outgoing queue. </param>
            <param name="forceDelivery"> Reserved </param>
            <param name="smartEncoded"> Whether to detect Unicode characters that have a similar GSM-7 character and replace
                               them </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.CreateAsync(Twilio.Types.PhoneNumber,System.String,Twilio.Types.PhoneNumber,System.String,System.String,System.Collections.Generic.List{System.Uri},System.Uri,System.String,System.Nullable{System.Decimal},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Send a message from the account used to make the request
            </summary>
            <param name="to"> The destination phone number </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="from"> The phone number that initiated the message </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service you want to associate with the message. </param>
            <param name="body"> The text of the message you want to send. Can be up to 1,600 characters in length. </param>
            <param name="mediaUrl"> The URL of the media to send with the message </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="applicationSid"> The application to use for callbacks </param>
            <param name="maxPrice"> The total maximum price up to 4 decimal places in US dollars acceptable for the message to
                           be delivered. </param>
            <param name="provideFeedback"> Whether to confirm delivery of the message </param>
            <param name="validityPeriod"> The number of seconds that the message can remain in our outgoing queue. </param>
            <param name="forceDelivery"> Reserved </param>
            <param name="smartEncoded"> Whether to detect Unicode characters that have a similar GSM-7 character and replace
                               them </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Deletes a message record from your account
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Deletes a message record from your account
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Deletes a message record from your account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Deletes a message record from your account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a message belonging to the account used to make the request
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a message belonging to the account used to make the request
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a message belonging to the account used to make the request
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a message belonging to the account used to make the request
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.Read(Twilio.Rest.Api.V2010.Account.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of messages belonging to the account used to make the request
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of messages belonging to the account used to make the request
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.Read(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of messages belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="to"> Filter by messages sent to this number </param>
            <param name="from"> Filter by from number </param>
            <param name="dateSentBefore"> Filter by date sent </param>
            <param name="dateSent"> Filter by date sent </param>
            <param name="dateSentAfter"> Filter by date sent </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.ReadAsync(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of messages belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="to"> Filter by messages sent to this number </param>
            <param name="from"> Filter by from number </param>
            <param name="dateSentBefore"> Filter by date sent </param>
            <param name="dateSent"> Filter by date sent </param>
            <param name="dateSentAfter"> Filter by date sent </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.Update(Twilio.Rest.Api.V2010.Account.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            To redact a message-body from a post-flight message record, post to the message instance resource with an empty body
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            To redact a message-body from a post-flight message record, post to the message instance resource with an empty body
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            To redact a message-body from a post-flight message record, post to the message instance resource with an empty body
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="body"> The text of the message you want to send </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            To redact a message-body from a post-flight message record, post to the message instance resource with an empty body
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="body"> The text of the message you want to send </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.MessageResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MessageResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MessageResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.ApiVersion">
            <summary>
            The API version used to process the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.Body">
            <summary>
            The message text
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.DateSent">
            <summary>
            The RFC 2822 date and time in GMT when the message was sent
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.Direction">
            <summary>
            The direction of the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.ErrorCode">
            <summary>
            The error code associated with the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.ErrorMessage">
            <summary>
            The description of the error_code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.From">
            <summary>
            The phone number that initiated the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.MessagingServiceSid">
            <summary>
            The SID of the Messaging Service used with the message.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.NumMedia">
            <summary>
            The number of media files associated with the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.NumSegments">
            <summary>
            The number of messages used to deliver the message body
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.Price">
            <summary>
            The amount billed for the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.PriceUnit">
            <summary>
            The currency in which price is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.Status">
            <summary>
            The status of the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.To">
            <summary>
            The phone number that received the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.MessageResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Message.CreateFeedbackOptions">
            <summary>
            CreateFeedbackOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.CreateFeedbackOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.CreateFeedbackOptions.PathMessageSid">
            <summary>
            The SID of the Message resource for which the feedback was provided
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.CreateFeedbackOptions.Outcome">
            <summary>
            Whether the feedback has arrived
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.CreateFeedbackOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateFeedbackOptions
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource for which the feedback was provided </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.CreateFeedbackOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.Create(Twilio.Rest.Api.V2010.Account.Message.CreateFeedbackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Feedback parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Message.CreateFeedbackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Feedback parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.Create(System.String,System.String,Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.OutcomeEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource for which the feedback was provided </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="outcome"> Whether the feedback has arrived </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.CreateAsync(System.String,System.String,Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.OutcomeEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource for which the feedback was provided </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="outcome"> Whether the feedback has arrived </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Feedback </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FeedbackResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FeedbackResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.MessageSid">
            <summary>
            The SID of the Message resource for which the feedback was provided
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.Outcome">
            <summary>
            Whether the feedback has arrived
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.FeedbackResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Message.DeleteMediaOptions">
            <summary>
            Delete media from your account. Once delete, you will no longer be billed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.DeleteMediaOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.DeleteMediaOptions.PathMessageSid">
            <summary>
            The SID of the Message resource that this Media resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.DeleteMediaOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.DeleteMediaOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteMediaOptions
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource that this Media resource belongs to </param>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.DeleteMediaOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Message.FetchMediaOptions">
            <summary>
            Fetch a single media instance belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.FetchMediaOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.FetchMediaOptions.PathMessageSid">
            <summary>
            The SID of the Message resource that this Media resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.FetchMediaOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.FetchMediaOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchMediaOptions
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource that this Media resource belongs to </param>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.FetchMediaOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Message.ReadMediaOptions">
            <summary>
            Retrieve a list of Media resources belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.ReadMediaOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.ReadMediaOptions.PathMessageSid">
            <summary>
            The SID of the Message resource that this Media resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.ReadMediaOptions.DateCreatedBefore">
            <summary>
            Only include media that was created on this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.ReadMediaOptions.DateCreated">
            <summary>
            Only include media that was created on this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.ReadMediaOptions.DateCreatedAfter">
            <summary>
            Only include media that was created on this date
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.ReadMediaOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadMediaOptions
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource that this Media resource belongs to </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.ReadMediaOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.Delete(Twilio.Rest.Api.V2010.Account.Message.DeleteMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete media from your account. Once delete, you will no longer be billed
            </summary>
            <param name="options"> Delete Media parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Message.DeleteMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete media from your account. Once delete, you will no longer be billed
            </summary>
            <param name="options"> Delete Media parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete media from your account. Once delete, you will no longer be billed
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource that this Media resource belongs to </param>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete media from your account. Once delete, you will no longer be billed
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource that this Media resource belongs to </param>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.Fetch(Twilio.Rest.Api.V2010.Account.Message.FetchMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single media instance belonging to the account used to make the request
            </summary>
            <param name="options"> Fetch Media parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Message.FetchMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single media instance belonging to the account used to make the request
            </summary>
            <param name="options"> Fetch Media parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single media instance belonging to the account used to make the request
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource that this Media resource belongs to </param>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single media instance belonging to the account used to make the request
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource that this Media resource belongs to </param>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.Read(Twilio.Rest.Api.V2010.Account.Message.ReadMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Media resources belonging to the account used to make the request
            </summary>
            <param name="options"> Read Media parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Message.ReadMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Media resources belonging to the account used to make the request
            </summary>
            <param name="options"> Read Media parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.Read(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Media resources belonging to the account used to make the request
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource that this Media resource belongs to </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to read </param>
            <param name="dateCreatedBefore"> Only include media that was created on this date </param>
            <param name="dateCreated"> Only include media that was created on this date </param>
            <param name="dateCreatedAfter"> Only include media that was created on this date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.ReadAsync(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Media resources belonging to the account used to make the request
            </summary>
            <param name="pathMessageSid"> The SID of the Message resource that this Media resource belongs to </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to read </param>
            <param name="dateCreatedBefore"> Only include media that was created on this date </param>
            <param name="dateCreated"> Only include media that was created on this date </param>
            <param name="dateCreatedAfter"> Only include media that was created on this date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Media </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Message.MediaResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Message.MediaResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Message.MediaResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MediaResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MediaResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.MediaResource.AccountSid">
            <summary>
            The SID of the Account that created this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.MediaResource.ContentType">
            <summary>
            The default mime-type of the media
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.MediaResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.MediaResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.MediaResource.ParentSid">
            <summary>
            The SID of the resource that created the media
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.MediaResource.Sid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Message.MediaResource.Uri">
            <summary>
            The URI of this resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.CreateNewKeyOptions">
            <summary>
            CreateNewKeyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateNewKeyOptions.PathAccountSid">
            <summary>
            The SID of the Account that will be responsible for the new Key resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateNewKeyOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateNewKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NewKeyResource.Create(Twilio.Rest.Api.V2010.Account.CreateNewKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create NewKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of NewKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NewKeyResource.CreateAsync(Twilio.Rest.Api.V2010.Account.CreateNewKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create NewKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of NewKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NewKeyResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAccountSid"> The SID of the Account that will be responsible for the new Key resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of NewKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NewKeyResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAccountSid"> The SID of the Account that will be responsible for the new Key resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of NewKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NewKeyResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a NewKeyResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> NewKeyResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NewKeyResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NewKeyResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NewKeyResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NewKeyResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NewKeyResource.Secret">
            <summary>
            The secret your application uses to sign Access Tokens and to authenticate to the REST API.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.CreateNewSigningKeyOptions">
            <summary>
            Create a new Signing Key for the account making the request.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateNewSigningKeyOptions.PathAccountSid">
            <summary>
            The SID of the Account that will be responsible for the new Key resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateNewSigningKeyOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateNewSigningKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NewSigningKeyResource.Create(Twilio.Rest.Api.V2010.Account.CreateNewSigningKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Signing Key for the account making the request.
            </summary>
            <param name="options"> Create NewSigningKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of NewSigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NewSigningKeyResource.CreateAsync(Twilio.Rest.Api.V2010.Account.CreateNewSigningKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Signing Key for the account making the request.
            </summary>
            <param name="options"> Create NewSigningKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of NewSigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NewSigningKeyResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Signing Key for the account making the request.
            </summary>
            <param name="pathAccountSid"> The SID of the Account that will be responsible for the new Key resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of NewSigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NewSigningKeyResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Signing Key for the account making the request.
            </summary>
            <param name="pathAccountSid"> The SID of the Account that will be responsible for the new Key resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of NewSigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NewSigningKeyResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a NewSigningKeyResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> NewSigningKeyResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NewSigningKeyResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NewSigningKeyResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NewSigningKeyResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NewSigningKeyResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NewSigningKeyResource.Secret">
            <summary>
            The secret your application uses to sign Access Tokens and to authenticate to the REST API.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchNotificationOptions">
            <summary>
            Fetch a notification belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchNotificationOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchNotificationOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchNotificationOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchNotificationOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchNotificationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteNotificationOptions">
            <summary>
            Delete a notification identified by the NotificationSid from an accounts log
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteNotificationOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteNotificationOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteNotificationOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteNotificationOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteNotificationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadNotificationOptions">
            <summary>
            Retrieve a list of notifications belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadNotificationOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadNotificationOptions.Log">
            <summary>
            Filter by log level
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadNotificationOptions.MessageDateBefore">
            <summary>
            Filter by date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadNotificationOptions.MessageDate">
            <summary>
            Filter by date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadNotificationOptions.MessageDateAfter">
            <summary>
            Filter by date
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadNotificationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a notification belonging to the account used to make the request
            </summary>
            <param name="options"> Fetch Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a notification belonging to the account used to make the request
            </summary>
            <param name="options"> Fetch Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a notification belonging to the account used to make the request
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a notification belonging to the account used to make the request
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a notification identified by the NotificationSid from an accounts log
            </summary>
            <param name="options"> Delete Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a notification identified by the NotificationSid from an accounts log
            </summary>
            <param name="options"> Delete Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a notification identified by the NotificationSid from an accounts log
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a notification identified by the NotificationSid from an accounts log
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.Read(Twilio.Rest.Api.V2010.Account.ReadNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of notifications belonging to the account used to make the request
            </summary>
            <param name="options"> Read Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of notifications belonging to the account used to make the request
            </summary>
            <param name="options"> Read Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of notifications belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="log"> Filter by log level </param>
            <param name="messageDateBefore"> Filter by date </param>
            <param name="messageDate"> Filter by date </param>
            <param name="messageDateAfter"> Filter by date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of notifications belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="log"> Filter by log level </param>
            <param name="messageDateBefore"> Filter by date </param>
            <param name="messageDate"> Filter by date </param>
            <param name="messageDateAfter"> Filter by date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.NotificationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.NotificationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.NotificationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a NotificationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> NotificationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.ApiVersion">
            <summary>
            The API version used to generate the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.CallSid">
            <summary>
            The SID of the Call the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.ErrorCode">
            <summary>
            A unique error code corresponding to the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.Log">
            <summary>
            An integer log level
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.MessageDate">
            <summary>
            The date the notification was generated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.MessageText">
            <summary>
            The text of the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.MoreInfo">
            <summary>
            A URL for more information about the error code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.RequestMethod">
            <summary>
            HTTP method used with the request url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.RequestUrl">
            <summary>
            URL of the resource that generated the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.RequestVariables">
            <summary>
            Twilio-generated HTTP variables sent to the server
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.ResponseBody">
            <summary>
            The HTTP body returned by your server
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.ResponseHeaders">
            <summary>
            The HTTP headers returned by your server
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.NotificationResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchOutgoingCallerIdOptions">
            <summary>
            Fetch an outgoing-caller-id belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchOutgoingCallerIdOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchOutgoingCallerIdOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchOutgoingCallerIdOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchOutgoingCallerIdOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchOutgoingCallerIdOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateOutgoingCallerIdOptions">
            <summary>
            Updates the caller-id
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateOutgoingCallerIdOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateOutgoingCallerIdOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateOutgoingCallerIdOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateOutgoingCallerIdOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateOutgoingCallerIdOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateOutgoingCallerIdOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteOutgoingCallerIdOptions">
            <summary>
            Delete the caller-id specified from the account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteOutgoingCallerIdOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteOutgoingCallerIdOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteOutgoingCallerIdOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteOutgoingCallerIdOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteOutgoingCallerIdOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadOutgoingCallerIdOptions">
            <summary>
            Retrieve a list of outgoing-caller-ids belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadOutgoingCallerIdOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadOutgoingCallerIdOptions.PhoneNumber">
            <summary>
            The phone number of the OutgoingCallerId resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadOutgoingCallerIdOptions.FriendlyName">
            <summary>
            The string that identifies the OutgoingCallerId resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadOutgoingCallerIdOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchOutgoingCallerIdOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an outgoing-caller-id belonging to the account used to make the request
            </summary>
            <param name="options"> Fetch OutgoingCallerId parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchOutgoingCallerIdOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an outgoing-caller-id belonging to the account used to make the request
            </summary>
            <param name="options"> Fetch OutgoingCallerId parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an outgoing-caller-id belonging to the account used to make the request
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an outgoing-caller-id belonging to the account used to make the request
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.Update(Twilio.Rest.Api.V2010.Account.UpdateOutgoingCallerIdOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the caller-id
            </summary>
            <param name="options"> Update OutgoingCallerId parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateOutgoingCallerIdOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the caller-id
            </summary>
            <param name="options"> Update OutgoingCallerId parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the caller-id
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the caller-id
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteOutgoingCallerIdOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the caller-id specified from the account
            </summary>
            <param name="options"> Delete OutgoingCallerId parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteOutgoingCallerIdOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the caller-id specified from the account
            </summary>
            <param name="options"> Delete OutgoingCallerId parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the caller-id specified from the account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the caller-id specified from the account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.Read(Twilio.Rest.Api.V2010.Account.ReadOutgoingCallerIdOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of outgoing-caller-ids belonging to the account used to make the request
            </summary>
            <param name="options"> Read OutgoingCallerId parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadOutgoingCallerIdOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of outgoing-caller-ids belonging to the account used to make the request
            </summary>
            <param name="options"> Read OutgoingCallerId parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.Read(System.String,Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of outgoing-caller-ids belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="phoneNumber"> The phone number of the OutgoingCallerId resources to read </param>
            <param name="friendlyName"> The string that identifies the OutgoingCallerId resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.ReadAsync(System.String,Twilio.Types.PhoneNumber,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of outgoing-caller-ids belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="phoneNumber"> The phone number of the OutgoingCallerId resources to read </param>
            <param name="friendlyName"> The string that identifies the OutgoingCallerId resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OutgoingCallerId </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a OutgoingCallerIdResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> OutgoingCallerIdResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.OutgoingCallerIdResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchQueueOptions">
            <summary>
            Fetch an instance of a queue identified by the QueueSid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchQueueOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchQueueOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchQueueOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchQueueOptions
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchQueueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateQueueOptions">
            <summary>
            Update the queue with the new parameters
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateQueueOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateQueueOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateQueueOptions.FriendlyName">
            <summary>
            A string to describe this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateQueueOptions.MaxSize">
            <summary>
            The max number of calls allowed in the queue
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateQueueOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateQueueOptions
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateQueueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteQueueOptions">
            <summary>
            Remove an empty queue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteQueueOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteQueueOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteQueueOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteQueueOptions
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteQueueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadQueueOptions">
            <summary>
            Retrieve a list of queues belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadQueueOptions.PathAccountSid">
            <summary>
            The unique id of the Account responsible for creating this Call
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadQueueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.CreateQueueOptions">
            <summary>
            Create a queue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateQueueOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateQueueOptions.FriendlyName">
            <summary>
            A string to describe this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateQueueOptions.MaxSize">
            <summary>
            The max number of calls allowed in the queue
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateQueueOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateQueueOptions
            </summary>
            <param name="friendlyName"> A string to describe this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateQueueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a queue identified by the QueueSid
            </summary>
            <param name="options"> Fetch Queue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a queue identified by the QueueSid
            </summary>
            <param name="options"> Fetch Queue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a queue identified by the QueueSid
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a queue identified by the QueueSid
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.Update(Twilio.Rest.Api.V2010.Account.UpdateQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the queue with the new parameters
            </summary>
            <param name="options"> Update Queue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the queue with the new parameters
            </summary>
            <param name="options"> Update Queue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.Update(System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the queue with the new parameters
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to update </param>
            <param name="friendlyName"> A string to describe this resource </param>
            <param name="maxSize"> The max number of calls allowed in the queue </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the queue with the new parameters
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to update </param>
            <param name="friendlyName"> A string to describe this resource </param>
            <param name="maxSize"> The max number of calls allowed in the queue </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an empty queue
            </summary>
            <param name="options"> Delete Queue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an empty queue
            </summary>
            <param name="options"> Delete Queue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an empty queue
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an empty queue
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.Read(Twilio.Rest.Api.V2010.Account.ReadQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of queues belonging to the account used to make the request
            </summary>
            <param name="options"> Read Queue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of queues belonging to the account used to make the request
            </summary>
            <param name="options"> Read Queue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of queues belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The unique id of the Account responsible for creating this Call </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of queues belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The unique id of the Account responsible for creating this Call </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.QueueResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.QueueResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.Create(Twilio.Rest.Api.V2010.Account.CreateQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a queue
            </summary>
            <param name="options"> Create Queue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.CreateAsync(Twilio.Rest.Api.V2010.Account.CreateQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a queue
            </summary>
            <param name="options"> Create Queue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.Create(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a queue
            </summary>
            <param name="friendlyName"> A string to describe this resource </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="maxSize"> The max number of calls allowed in the queue </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.CreateAsync(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a queue
            </summary>
            <param name="friendlyName"> A string to describe this resource </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="maxSize"> The max number of calls allowed in the queue </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Queue </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.QueueResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a QueueResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> QueueResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.QueueResource.AccountSid">
            <summary>
            The SID of the Account that created this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.QueueResource.AverageWaitTime">
            <summary>
            Average wait time of members in the queue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.QueueResource.CurrentSize">
            <summary>
            The number of calls currently in the queue.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.QueueResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.QueueResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.QueueResource.FriendlyName">
            <summary>
            A string that you assigned to describe this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.QueueResource.MaxSize">
            <summary>
            The max number of calls allowed in the queue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.QueueResource.Sid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.QueueResource.Uri">
            <summary>
            The URI of this resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Queue.FetchMemberOptions">
            <summary>
            Fetch a specific member from the queue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.FetchMemberOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.FetchMemberOptions.PathQueueSid">
            <summary>
            The SID of the Queue in which to find the members
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.FetchMemberOptions.PathCallSid">
            <summary>
            The Call SID of the resource(s) to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.FetchMemberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchMemberOptions
            </summary>
            <param name="pathQueueSid"> The SID of the Queue in which to find the members </param>
            <param name="pathCallSid"> The Call SID of the resource(s) to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.FetchMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Queue.UpdateMemberOptions">
            <summary>
            Dequeue a member from a queue and have the member's call begin executing the TwiML document at that URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.UpdateMemberOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.UpdateMemberOptions.PathQueueSid">
            <summary>
            The SID of the Queue in which to find the members
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.UpdateMemberOptions.PathCallSid">
            <summary>
            The Call SID of the resource(s) to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.UpdateMemberOptions.Url">
            <summary>
            The absolute URL of the Queue resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.UpdateMemberOptions.Method">
            <summary>
            How to pass the update request data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.UpdateMemberOptions.#ctor(System.String,System.String,System.Uri)">
            <summary>
            Construct a new UpdateMemberOptions
            </summary>
            <param name="pathQueueSid"> The SID of the Queue in which to find the members </param>
            <param name="pathCallSid"> The Call SID of the resource(s) to update </param>
            <param name="url"> The absolute URL of the Queue resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.UpdateMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Queue.ReadMemberOptions">
            <summary>
            Retrieve the members of the queue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.ReadMemberOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.ReadMemberOptions.PathQueueSid">
            <summary>
            The SID of the Queue in which to find the members
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.ReadMemberOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadMemberOptions
            </summary>
            <param name="pathQueueSid"> The SID of the Queue in which to find the members </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.ReadMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.Fetch(Twilio.Rest.Api.V2010.Account.Queue.FetchMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific member from the queue
            </summary>
            <param name="options"> Fetch Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Queue.FetchMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific member from the queue
            </summary>
            <param name="options"> Fetch Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific member from the queue
            </summary>
            <param name="pathQueueSid"> The SID of the Queue in which to find the members </param>
            <param name="pathCallSid"> The Call SID of the resource(s) to fetch </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific member from the queue
            </summary>
            <param name="pathQueueSid"> The SID of the Queue in which to find the members </param>
            <param name="pathCallSid"> The Call SID of the resource(s) to fetch </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.Update(Twilio.Rest.Api.V2010.Account.Queue.UpdateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Dequeue a member from a queue and have the member's call begin executing the TwiML document at that URL
            </summary>
            <param name="options"> Update Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.Queue.UpdateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Dequeue a member from a queue and have the member's call begin executing the TwiML document at that URL
            </summary>
            <param name="options"> Update Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.Update(System.String,System.String,System.Uri,System.String,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Dequeue a member from a queue and have the member's call begin executing the TwiML document at that URL
            </summary>
            <param name="pathQueueSid"> The SID of the Queue in which to find the members </param>
            <param name="pathCallSid"> The Call SID of the resource(s) to update </param>
            <param name="url"> The absolute URL of the Queue resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to update </param>
            <param name="method"> How to pass the update request data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.UpdateAsync(System.String,System.String,System.Uri,System.String,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Dequeue a member from a queue and have the member's call begin executing the TwiML document at that URL
            </summary>
            <param name="pathQueueSid"> The SID of the Queue in which to find the members </param>
            <param name="pathCallSid"> The Call SID of the resource(s) to update </param>
            <param name="url"> The absolute URL of the Queue resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to update </param>
            <param name="method"> How to pass the update request data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.Read(Twilio.Rest.Api.V2010.Account.Queue.ReadMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the members of the queue
            </summary>
            <param name="options"> Read Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Queue.ReadMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the members of the queue
            </summary>
            <param name="options"> Read Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the members of the queue
            </summary>
            <param name="pathQueueSid"> The SID of the Queue in which to find the members </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the members of the queue
            </summary>
            <param name="pathQueueSid"> The SID of the Queue in which to find the members </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Queue.MemberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Queue.MemberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MemberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MemberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.CallSid">
            <summary>
            The SID of the Call the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.DateEnqueued">
            <summary>
            The date the member was enqueued
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.Position">
            <summary>
            This member's current position in the queue.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.WaitTime">
            <summary>
            The number of seconds the member has been in the queue.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Queue.MemberResource.QueueSid">
            <summary>
            The SID of the Queue the member is in
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchRecordingOptions">
            <summary>
            Fetch an instance of a recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchRecordingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchRecordingOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchRecordingOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteRecordingOptions">
            <summary>
            Delete a recording from your account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteRecordingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteRecordingOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteRecordingOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadRecordingOptions">
            <summary>
            Retrieve a list of recordings belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadRecordingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadRecordingOptions.DateCreatedBefore">
            <summary>
            Only include recordings that were created on this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadRecordingOptions.DateCreated">
            <summary>
            Only include recordings that were created on this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadRecordingOptions.DateCreatedAfter">
            <summary>
            Only include recordings that were created on this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadRecordingOptions.CallSid">
            <summary>
            The Call SID of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadRecordingOptions.ConferenceSid">
            <summary>
            Read by unique Conference SID for the recording
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording
            </summary>
            <param name="options"> Fetch Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording
            </summary>
            <param name="options"> Fetch Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a recording
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="options"> Delete Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="options"> Delete Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a recording from your account
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.Read(Twilio.Rest.Api.V2010.Account.ReadRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the account used to make the request
            </summary>
            <param name="options"> Read Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the account used to make the request
            </summary>
            <param name="options"> Read Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.Read(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="dateCreatedBefore"> Only include recordings that were created on this date </param>
            <param name="dateCreated"> Only include recordings that were created on this date </param>
            <param name="dateCreatedAfter"> Only include recordings that were created on this date </param>
            <param name="callSid"> The Call SID of the resources to read </param>
            <param name="conferenceSid"> Read by unique Conference SID for the recording </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.ReadAsync(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of recordings belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="dateCreatedBefore"> Only include recordings that were created on this date </param>
            <param name="dateCreated"> Only include recordings that were created on this date </param>
            <param name="dateCreatedAfter"> Only include recordings that were created on this date </param>
            <param name="callSid"> The Call SID of the resources to read </param>
            <param name="conferenceSid"> Read by unique Conference SID for the recording </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.RecordingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.RecordingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.RecordingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RecordingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RecordingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.ApiVersion">
            <summary>
            The API version used during the recording.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.CallSid">
            <summary>
            The SID of the Call the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.ConferenceSid">
            <summary>
            The unique ID for the conference associated with the recording.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.StartTime">
            <summary>
            The start time of the recording, given in RFC 2822 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.Duration">
            <summary>
            The length of the recording in seconds.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.Price">
            <summary>
            The one-time cost of creating the recording.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.PriceUnit">
            <summary>
            The currency used in the price property.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.Status">
            <summary>
            The status of the recording.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.Channels">
            <summary>
            The number of channels in the final recording file as an integer.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.Source">
            <summary>
            How the recording was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.ErrorCode">
            <summary>
            More information about why the recording is missing, if status is `absent`.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.EncryptionDetails">
            <summary>
            How to decrypt the recording.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.RecordingResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Recording.FetchAddOnResultOptions">
            <summary>
            Fetch an instance of an AddOnResult
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.FetchAddOnResultOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.FetchAddOnResultOptions.PathReferenceSid">
            <summary>
            The SID of the recording to which the result to fetch belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.FetchAddOnResultOptions.PathSid">
            <summary>
            The unique string that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.FetchAddOnResultOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchAddOnResultOptions
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the result to fetch belongs </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.FetchAddOnResultOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Recording.ReadAddOnResultOptions">
            <summary>
            Retrieve a list of results belonging to the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.ReadAddOnResultOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.ReadAddOnResultOptions.PathReferenceSid">
            <summary>
            The SID of the recording to which the result to read belongs
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.ReadAddOnResultOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadAddOnResultOptions
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the result to read belongs </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.ReadAddOnResultOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Recording.DeleteAddOnResultOptions">
            <summary>
            Delete a result and purge all associated Payloads
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.DeleteAddOnResultOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.DeleteAddOnResultOptions.PathReferenceSid">
            <summary>
            The SID of the recording to which the result to delete belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.DeleteAddOnResultOptions.PathSid">
            <summary>
            The unique string that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.DeleteAddOnResultOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteAddOnResultOptions
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the result to delete belongs </param>
            <param name="pathSid"> The unique string that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.DeleteAddOnResultOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.Fetch(Twilio.Rest.Api.V2010.Account.Recording.FetchAddOnResultOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an AddOnResult
            </summary>
            <param name="options"> Fetch AddOnResult parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Recording.FetchAddOnResultOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an AddOnResult
            </summary>
            <param name="options"> Fetch AddOnResult parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an AddOnResult
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the result to fetch belongs </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an AddOnResult
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the result to fetch belongs </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.Read(Twilio.Rest.Api.V2010.Account.Recording.ReadAddOnResultOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of results belonging to the recording
            </summary>
            <param name="options"> Read AddOnResult parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Recording.ReadAddOnResultOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of results belonging to the recording
            </summary>
            <param name="options"> Read AddOnResult parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of results belonging to the recording
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the result to read belongs </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of results belonging to the recording
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the result to read belongs </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.Delete(Twilio.Rest.Api.V2010.Account.Recording.DeleteAddOnResultOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a result and purge all associated Payloads
            </summary>
            <param name="options"> Delete AddOnResult parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Recording.DeleteAddOnResultOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a result and purge all associated Payloads
            </summary>
            <param name="options"> Delete AddOnResult parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a result and purge all associated Payloads
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the result to delete belongs </param>
            <param name="pathSid"> The unique string that identifies the resource to delete </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a result and purge all associated Payloads
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the result to delete belongs </param>
            <param name="pathSid"> The unique string that identifies the resource to delete </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AddOnResult </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AddOnResultResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AddOnResultResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.Status">
            <summary>
            The status of the result
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.AddOnSid">
            <summary>
            The SID of the Add-on to which the result belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.AddOnConfigurationSid">
            <summary>
            The SID of the Add-on configuration
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.DateCompleted">
            <summary>
            The date and time in GMT that the result was completed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.ReferenceSid">
            <summary>
            The SID of the recording to which the AddOnResult resource belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResultResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.FetchPayloadOptions">
            <summary>
            Fetch an instance of a result payload
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.FetchPayloadOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.FetchPayloadOptions.PathReferenceSid">
            <summary>
            The SID of the recording to which the AddOnResult resource that contains the payload to fetch belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.FetchPayloadOptions.PathAddOnResultSid">
            <summary>
            The SID of the AddOnResult to which the payload to fetch belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.FetchPayloadOptions.PathSid">
            <summary>
            The unique string that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.FetchPayloadOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchPayloadOptions
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the AddOnResult resource that contains the
                                   payload to fetch belongs </param>
            <param name="pathAddOnResultSid"> The SID of the AddOnResult to which the payload to fetch belongs </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.FetchPayloadOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.ReadPayloadOptions">
            <summary>
            Retrieve a list of payloads belonging to the AddOnResult
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.ReadPayloadOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.ReadPayloadOptions.PathReferenceSid">
            <summary>
            The SID of the recording to which the AddOnResult resource that contains the payloads to read belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.ReadPayloadOptions.PathAddOnResultSid">
            <summary>
            The SID of the AddOnResult to which the payloads to read belongs
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.ReadPayloadOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadPayloadOptions
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the AddOnResult resource that contains the
                                   payloads to read belongs </param>
            <param name="pathAddOnResultSid"> The SID of the AddOnResult to which the payloads to read belongs </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.ReadPayloadOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.DeletePayloadOptions">
            <summary>
            Delete a payload from the result along with all associated Data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.DeletePayloadOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.DeletePayloadOptions.PathReferenceSid">
            <summary>
            The SID of the recording to which the AddOnResult resource that contains the payloads to delete belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.DeletePayloadOptions.PathAddOnResultSid">
            <summary>
            The SID of the AddOnResult to which the payloads to delete belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.DeletePayloadOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.DeletePayloadOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeletePayloadOptions
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the AddOnResult resource that contains the
                                   payloads to delete belongs </param>
            <param name="pathAddOnResultSid"> The SID of the AddOnResult to which the payloads to delete belongs </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.DeletePayloadOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.Fetch(Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.FetchPayloadOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a result payload
            </summary>
            <param name="options"> Fetch Payload parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.FetchPayloadOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a result payload
            </summary>
            <param name="options"> Fetch Payload parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.Fetch(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a result payload
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the AddOnResult resource that contains the
                                   payload to fetch belongs </param>
            <param name="pathAddOnResultSid"> The SID of the AddOnResult to which the payload to fetch belongs </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.FetchAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a result payload
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the AddOnResult resource that contains the
                                   payload to fetch belongs </param>
            <param name="pathAddOnResultSid"> The SID of the AddOnResult to which the payload to fetch belongs </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.Read(Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.ReadPayloadOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of payloads belonging to the AddOnResult
            </summary>
            <param name="options"> Read Payload parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.ReadPayloadOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of payloads belonging to the AddOnResult
            </summary>
            <param name="options"> Read Payload parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.Read(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of payloads belonging to the AddOnResult
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the AddOnResult resource that contains the
                                   payloads to read belongs </param>
            <param name="pathAddOnResultSid"> The SID of the AddOnResult to which the payloads to read belongs </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.ReadAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of payloads belonging to the AddOnResult
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the AddOnResult resource that contains the
                                   payloads to read belongs </param>
            <param name="pathAddOnResultSid"> The SID of the AddOnResult to which the payloads to read belongs </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.Delete(Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.DeletePayloadOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a payload from the result along with all associated Data
            </summary>
            <param name="options"> Delete Payload parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.DeletePayloadOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a payload from the result along with all associated Data
            </summary>
            <param name="options"> Delete Payload parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.Delete(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a payload from the result along with all associated Data
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the AddOnResult resource that contains the
                                   payloads to delete belongs </param>
            <param name="pathAddOnResultSid"> The SID of the AddOnResult to which the payloads to delete belongs </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.DeleteAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a payload from the result along with all associated Data
            </summary>
            <param name="pathReferenceSid"> The SID of the recording to which the AddOnResult resource that contains the
                                   payloads to delete belongs </param>
            <param name="pathAddOnResultSid"> The SID of the AddOnResult to which the payloads to delete belongs </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Payload </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a PayloadResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> PayloadResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.AddOnResultSid">
            <summary>
            The SID of the AddOnResult to which the payload belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.Label">
            <summary>
            The string that describes the payload
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.AddOnSid">
            <summary>
            The SID of the Add-on to which the result belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.AddOnConfigurationSid">
            <summary>
            The SID of the Add-on configuration
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.ContentType">
            <summary>
            The MIME type of the payload
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.ReferenceSid">
            <summary>
            The SID of the recording to which the AddOnResult resource that contains the payload belongs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.AddOnResult.PayloadResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Recording.FetchTranscriptionOptions">
            <summary>
            FetchTranscriptionOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.FetchTranscriptionOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.FetchTranscriptionOptions.PathRecordingSid">
            <summary>
            The SID of the recording that created the transcriptions to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.FetchTranscriptionOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.FetchTranscriptionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTranscriptionOptions
            </summary>
            <param name="pathRecordingSid"> The SID of the recording that created the transcriptions to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.FetchTranscriptionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Recording.DeleteTranscriptionOptions">
            <summary>
            DeleteTranscriptionOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.DeleteTranscriptionOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.DeleteTranscriptionOptions.PathRecordingSid">
            <summary>
            The SID of the recording that created the transcription to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.DeleteTranscriptionOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.DeleteTranscriptionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteTranscriptionOptions
            </summary>
            <param name="pathRecordingSid"> The SID of the recording that created the transcription to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.DeleteTranscriptionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Recording.ReadTranscriptionOptions">
            <summary>
            ReadTranscriptionOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.ReadTranscriptionOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.ReadTranscriptionOptions.PathRecordingSid">
            <summary>
            The SID of the recording that created the transcriptions to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.ReadTranscriptionOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadTranscriptionOptions
            </summary>
            <param name="pathRecordingSid"> The SID of the recording that created the transcriptions to read </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.ReadTranscriptionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Fetch(Twilio.Rest.Api.V2010.Account.Recording.FetchTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Recording.FetchTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathRecordingSid"> The SID of the recording that created the transcriptions to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathRecordingSid"> The SID of the recording that created the transcriptions to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Delete(Twilio.Rest.Api.V2010.Account.Recording.DeleteTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Recording.DeleteTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathRecordingSid"> The SID of the recording that created the transcription to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathRecordingSid"> The SID of the recording that created the transcription to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Read(Twilio.Rest.Api.V2010.Account.Recording.ReadTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Recording.ReadTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathRecordingSid"> The SID of the recording that created the transcriptions to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathRecordingSid"> The SID of the recording that created the transcriptions to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TranscriptionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TranscriptionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.ApiVersion">
            <summary>
            The API version used to create the transcription
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Duration">
            <summary>
            The duration of the transcribed audio in seconds.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Price">
            <summary>
            The charge for the transcription
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.PriceUnit">
            <summary>
            The currency in which price is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.RecordingSid">
            <summary>
            The SID that identifies the transcription's recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Status">
            <summary>
            The status of the transcription
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.TranscriptionText">
            <summary>
            The text content of the transcription.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Type">
            <summary>
            The transcription type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Recording.TranscriptionResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchShortCodeOptions">
            <summary>
            Fetch an instance of a short code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchShortCodeOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchShortCodeOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchShortCodeOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchShortCodeOptions
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions">
            <summary>
            Update a short code with the following parameters
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions.PathSid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions.FriendlyName">
            <summary>
            A string to describe this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions.ApiVersion">
            <summary>
            The API version to use to start a new TwiML session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions.SmsUrl">
            <summary>
            URL Twilio will request when receiving an SMS
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions.SmsMethod">
            <summary>
            HTTP method to use when requesting the sms url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions.SmsFallbackUrl">
            <summary>
            URL Twilio will request if an error occurs in executing TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions.SmsFallbackMethod">
            <summary>
            HTTP method Twilio will use with sms_fallback_url
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateShortCodeOptions
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadShortCodeOptions">
            <summary>
            Retrieve a list of short-codes belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadShortCodeOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource(s) to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadShortCodeOptions.FriendlyName">
            <summary>
            The string that identifies the ShortCode resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadShortCodeOptions.ShortCode">
            <summary>
            Filter by ShortCode
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a short code
            </summary>
            <param name="options"> Fetch ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a short code
            </summary>
            <param name="options"> Fetch ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a short code
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a short code
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.Update(Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a short code with the following parameters
            </summary>
            <param name="options"> Update ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a short code with the following parameters
            </summary>
            <param name="options"> Update ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.Update(System.String,System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a short code with the following parameters
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to update </param>
            <param name="friendlyName"> A string to describe this resource </param>
            <param name="apiVersion"> The API version to use to start a new TwiML session </param>
            <param name="smsUrl"> URL Twilio will request when receiving an SMS </param>
            <param name="smsMethod"> HTTP method to use when requesting the sms url </param>
            <param name="smsFallbackUrl"> URL Twilio will request if an error occurs in executing TwiML </param>
            <param name="smsFallbackMethod"> HTTP method Twilio will use with sms_fallback_url </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a short code with the following parameters
            </summary>
            <param name="pathSid"> The unique string that identifies this resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to update </param>
            <param name="friendlyName"> A string to describe this resource </param>
            <param name="apiVersion"> The API version to use to start a new TwiML session </param>
            <param name="smsUrl"> URL Twilio will request when receiving an SMS </param>
            <param name="smsMethod"> HTTP method to use when requesting the sms url </param>
            <param name="smsFallbackUrl"> URL Twilio will request if an error occurs in executing TwiML </param>
            <param name="smsFallbackMethod"> HTTP method Twilio will use with sms_fallback_url </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.Read(Twilio.Rest.Api.V2010.Account.ReadShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of short-codes belonging to the account used to make the request
            </summary>
            <param name="options"> Read ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of short-codes belonging to the account used to make the request
            </summary>
            <param name="options"> Read ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.Read(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of short-codes belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to read </param>
            <param name="friendlyName"> The string that identifies the ShortCode resources to read </param>
            <param name="shortCode"> Filter by ShortCode </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.ReadAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of short-codes belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resource(s) to read </param>
            <param name="friendlyName"> The string that identifies the ShortCode resources to read </param>
            <param name="shortCode"> Filter by ShortCode </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.ShortCodeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.ShortCodeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ShortCodeResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ShortCodeResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ShortCodeResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.AccountSid">
            <summary>
            The SID of the Account that created this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.ApiVersion">
            <summary>
            The API version used to start a new TwiML session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.FriendlyName">
            <summary>
            A string that you assigned to describe this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.ShortCode">
            <summary>
            The short code. e.g., 894546.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.Sid">
            <summary>
            The unique string that identifies this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.SmsFallbackMethod">
            <summary>
            HTTP method we use to call the sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.SmsFallbackUrl">
            <summary>
            URL Twilio will request if an error occurs in executing TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.SmsMethod">
            <summary>
            HTTP method to use when requesting the sms url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.SmsUrl">
            <summary>
            URL we call when receiving an incoming SMS message to this short code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ShortCodeResource.Uri">
            <summary>
            The URI of this resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchSigningKeyOptions">
            <summary>
            FetchSigningKeyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchSigningKeyOptions.PathAccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchSigningKeyOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchSigningKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchSigningKeyOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchSigningKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.UpdateSigningKeyOptions">
            <summary>
            UpdateSigningKeyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateSigningKeyOptions.PathAccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateSigningKeyOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.UpdateSigningKeyOptions.FriendlyName">
            <summary>
            The friendly_name
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateSigningKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateSigningKeyOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.UpdateSigningKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteSigningKeyOptions">
            <summary>
            DeleteSigningKeyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteSigningKeyOptions.PathAccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteSigningKeyOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteSigningKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteSigningKeyOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteSigningKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadSigningKeyOptions">
            <summary>
            ReadSigningKeyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadSigningKeyOptions.PathAccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadSigningKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchSigningKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SigningKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchSigningKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SigningKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="pathAccountSid"> The account_sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="pathAccountSid"> The account_sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.Update(Twilio.Rest.Api.V2010.Account.UpdateSigningKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SigningKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.UpdateSigningKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SigningKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="pathAccountSid"> The account_sid </param>
            <param name="friendlyName"> The friendly_name </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="pathAccountSid"> The account_sid </param>
            <param name="friendlyName"> The friendly_name </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteSigningKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SigningKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteSigningKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SigningKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="pathAccountSid"> The account_sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="pathAccountSid"> The account_sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.Read(Twilio.Rest.Api.V2010.Account.ReadSigningKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SigningKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadSigningKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SigningKey parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The account_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The account_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SigningKey </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.SigningKeyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.SigningKeyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.SigningKeyResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SigningKeyResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SigningKeyResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.SigningKeyResource.Sid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.SigningKeyResource.FriendlyName">
            <summary>
            The friendly_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.SigningKeyResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.SigningKeyResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.ReadCredentialListOptions">
            <summary>
            Get All Credential Lists
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.ReadCredentialListOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.ReadCredentialListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.CreateCredentialListOptions">
            <summary>
            Create a Credential List
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateCredentialListOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateCredentialListOptions.FriendlyName">
            <summary>
            Human readable descriptive text
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CreateCredentialListOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateCredentialListOptions
            </summary>
            <param name="friendlyName"> Human readable descriptive text </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CreateCredentialListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.FetchCredentialListOptions">
            <summary>
            Get a Credential List
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.FetchCredentialListOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.FetchCredentialListOptions.PathSid">
            <summary>
            Fetch by unique credential list Sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.FetchCredentialListOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCredentialListOptions
            </summary>
            <param name="pathSid"> Fetch by unique credential list Sid </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.FetchCredentialListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.UpdateCredentialListOptions">
            <summary>
            Update a Credential List
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateCredentialListOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateCredentialListOptions.PathSid">
            <summary>
            Update by unique credential list Sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateCredentialListOptions.FriendlyName">
            <summary>
            Human readable descriptive text
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.UpdateCredentialListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateCredentialListOptions
            </summary>
            <param name="pathSid"> Update by unique credential list Sid </param>
            <param name="friendlyName"> Human readable descriptive text </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.UpdateCredentialListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.DeleteCredentialListOptions">
            <summary>
            Delete a Credential List
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DeleteCredentialListOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DeleteCredentialListOptions.PathSid">
            <summary>
            Delete by unique credential list Sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DeleteCredentialListOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteCredentialListOptions
            </summary>
            <param name="pathSid"> Delete by unique credential list Sid </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DeleteCredentialListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Read(Twilio.Rest.Api.V2010.Account.Sip.ReadCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Get All Credential Lists
            </summary>
            <param name="options"> Read CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Sip.ReadCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Get All Credential Lists
            </summary>
            <param name="options"> Read CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Get All Credential Lists
            </summary>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Get All Credential Lists
            </summary>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Create(Twilio.Rest.Api.V2010.Account.Sip.CreateCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a Credential List
            </summary>
            <param name="options"> Create CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Sip.CreateCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a Credential List
            </summary>
            <param name="options"> Create CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a Credential List
            </summary>
            <param name="friendlyName"> Human readable descriptive text </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a Credential List
            </summary>
            <param name="friendlyName"> Human readable descriptive text </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Fetch(Twilio.Rest.Api.V2010.Account.Sip.FetchCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Get a Credential List
            </summary>
            <param name="options"> Fetch CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Sip.FetchCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Get a Credential List
            </summary>
            <param name="options"> Fetch CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Get a Credential List
            </summary>
            <param name="pathSid"> Fetch by unique credential list Sid </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Get a Credential List
            </summary>
            <param name="pathSid"> Fetch by unique credential list Sid </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Update(Twilio.Rest.Api.V2010.Account.Sip.UpdateCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Credential List
            </summary>
            <param name="options"> Update CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.Sip.UpdateCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Credential List
            </summary>
            <param name="options"> Update CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Credential List
            </summary>
            <param name="pathSid"> Update by unique credential list Sid </param>
            <param name="friendlyName"> Human readable descriptive text </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Credential List
            </summary>
            <param name="pathSid"> Update by unique credential list Sid </param>
            <param name="friendlyName"> Human readable descriptive text </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Delete(Twilio.Rest.Api.V2010.Account.Sip.DeleteCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential List
            </summary>
            <param name="options"> Delete CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Sip.DeleteCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential List
            </summary>
            <param name="options"> Delete CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential List
            </summary>
            <param name="pathSid"> Delete by unique credential list Sid </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Credential List
            </summary>
            <param name="pathSid"> Delete by unique credential list Sid </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CredentialListResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CredentialListResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.AccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.DateCreated">
            <summary>
            The date this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.DateUpdated">
            <summary>
            The date this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.FriendlyName">
            <summary>
            Human readable descriptive text
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Sid">
            <summary>
            A string that uniquely identifies this credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.SubresourceUris">
            <summary>
            The list of credentials associated with this credential list.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialListResource.Uri">
            <summary>
            The URI for this resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.ReadCredentialOptions">
            <summary>
            Retrieve a list of credentials.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.ReadCredentialOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.ReadCredentialOptions.PathCredentialListSid">
            <summary>
            The unique id that identifies the credential list that contains the desired credentials
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.ReadCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadCredentialOptions
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that contains the desired
                                        credentials </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.ReadCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CreateCredentialOptions">
            <summary>
            Create a new credential resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CreateCredentialOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CreateCredentialOptions.PathCredentialListSid">
            <summary>
            The unique id that identifies the credential list to include the created credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CreateCredentialOptions.Username">
            <summary>
            The username for this credential.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CreateCredentialOptions.Password">
            <summary>
            The password will not be returned in the response.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CreateCredentialOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateCredentialOptions
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list to include the created
                                        credential </param>
            <param name="username"> The username for this credential. </param>
            <param name="password"> The password will not be returned in the response. </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CreateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.FetchCredentialOptions">
            <summary>
            Fetch a single credential.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.FetchCredentialOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.FetchCredentialOptions.PathCredentialListSid">
            <summary>
            The unique id that identifies the credential list that contains the desired credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.FetchCredentialOptions.PathSid">
            <summary>
            The unique id that identifies the resource to fetch.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.FetchCredentialOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchCredentialOptions
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that contains the desired
                                        credential </param>
            <param name="pathSid"> The unique id that identifies the resource to fetch. </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.FetchCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.UpdateCredentialOptions">
            <summary>
            Update a credential resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.UpdateCredentialOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.UpdateCredentialOptions.PathCredentialListSid">
            <summary>
            The unique id that identifies the credential list that includes this credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.UpdateCredentialOptions.PathSid">
            <summary>
            The unique id that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.UpdateCredentialOptions.Password">
            <summary>
            The password will not be returned in the response
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.UpdateCredentialOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateCredentialOptions
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that includes this
                                        credential </param>
            <param name="pathSid"> The unique id that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.UpdateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.DeleteCredentialOptions">
            <summary>
            Delete a credential resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.DeleteCredentialOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.DeleteCredentialOptions.PathCredentialListSid">
            <summary>
            The unique id that identifies the credential list that contains the desired credentials
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.DeleteCredentialOptions.PathSid">
            <summary>
            The unique id that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.DeleteCredentialOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteCredentialOptions
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that contains the desired
                                        credentials </param>
            <param name="pathSid"> The unique id that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.DeleteCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Read(Twilio.Rest.Api.V2010.Account.Sip.CredentialList.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credentials.
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Sip.CredentialList.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credentials.
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credentials.
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that contains the desired
                                        credentials </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credentials.
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that contains the desired
                                        credentials </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Create(Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential resource.
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential resource.
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential resource.
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list to include the created
                                        credential </param>
            <param name="username"> The username for this credential. </param>
            <param name="password"> The password will not be returned in the response. </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential resource.
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list to include the created
                                        credential </param>
            <param name="username"> The username for this credential. </param>
            <param name="password"> The password will not be returned in the response. </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Fetch(Twilio.Rest.Api.V2010.Account.Sip.CredentialList.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single credential.
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Sip.CredentialList.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single credential.
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single credential.
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that contains the desired
                                        credential </param>
            <param name="pathSid"> The unique id that identifies the resource to fetch. </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single credential.
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that contains the desired
                                        credential </param>
            <param name="pathSid"> The unique id that identifies the resource to fetch. </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Update(Twilio.Rest.Api.V2010.Account.Sip.CredentialList.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a credential resource.
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.Sip.CredentialList.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a credential resource.
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Update(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a credential resource.
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that includes this
                                        credential </param>
            <param name="pathSid"> The unique id that identifies the resource to update </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource </param>
            <param name="password"> The password will not be returned in the response </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.UpdateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a credential resource.
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that includes this
                                        credential </param>
            <param name="pathSid"> The unique id that identifies the resource to update </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource </param>
            <param name="password"> The password will not be returned in the response </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Delete(Twilio.Rest.Api.V2010.Account.Sip.CredentialList.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential resource.
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Sip.CredentialList.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential resource.
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential resource.
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that contains the desired
                                        credentials </param>
            <param name="pathSid"> The unique id that identifies the resource to delete </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential resource.
            </summary>
            <param name="pathCredentialListSid"> The unique id that identifies the credential list that contains the desired
                                        credentials </param>
            <param name="pathSid"> The unique id that identifies the resource to delete </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CredentialResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CredentialResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.AccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.CredentialListSid">
            <summary>
            The unique id that identifies the credential list that includes this credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Username">
            <summary>
            The username for this credential.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.DateCreated">
            <summary>
            The date that this resource was created, given as GMT in RFC 2822 format.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.DateUpdated">
            <summary>
            The date that this resource was last updated, given as GMT in RFC 2822 format.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CredentialList.CredentialResource.Uri">
            <summary>
            The URI for this resource, relative to https://api.twilio.com
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.ReadDomainOptions">
            <summary>
            Retrieve a list of domains belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.ReadDomainOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.ReadDomainOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions">
            <summary>
            Create a new Domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.DomainName">
            <summary>
            The unique address on Twilio to route SIP traffic
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.VoiceUrl">
            <summary>
            The URL we should call when receiving a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.VoiceMethod">
            <summary>
            The HTTP method to use with voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.VoiceFallbackUrl">
            <summary>
            The URL we should call when an error occurs in executing TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method to use with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.VoiceStatusCallbackUrl">
            <summary>
            The URL that we should call to pass status updates
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.VoiceStatusCallbackMethod">
            <summary>
            The HTTP method we should use to call `voice_status_callback_url`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.SipRegistration">
            <summary>
            Whether SIP registration is allowed
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateDomainOptions
            </summary>
            <param name="domainName"> The unique address on Twilio to route SIP traffic </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.FetchDomainOptions">
            <summary>
            Fetch an instance of a Domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.FetchDomainOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.FetchDomainOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.FetchDomainOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchDomainOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.FetchDomainOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions">
            <summary>
            Update the attributes of a domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.VoiceFallbackUrl">
            <summary>
            The URL we should call when an error occurs in executing TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.VoiceMethod">
            <summary>
            The HTTP method we should use with voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.VoiceStatusCallbackMethod">
            <summary>
            The HTTP method we should use to call voice_status_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.VoiceStatusCallbackUrl">
            <summary>
            The URL that we should call to pass status updates
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.VoiceUrl">
            <summary>
            The URL we should call when receiving a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.SipRegistration">
            <summary>
            Whether SIP registration is allowed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.DomainName">
            <summary>
            The unique address on Twilio to route SIP traffic
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateDomainOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.DeleteDomainOptions">
            <summary>
            Delete an instance of a Domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DeleteDomainOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DeleteDomainOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DeleteDomainOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteDomainOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DeleteDomainOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Read(Twilio.Rest.Api.V2010.Account.Sip.ReadDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of domains belonging to the account used to make the request
            </summary>
            <param name="options"> Read Domain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Sip.ReadDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of domains belonging to the account used to make the request
            </summary>
            <param name="options"> Read Domain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of domains belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of domains belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.DomainResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.DomainResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Create(Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Domain
            </summary>
            <param name="options"> Create Domain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Sip.CreateDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Domain
            </summary>
            <param name="options"> Create Domain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Create(System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Domain
            </summary>
            <param name="domainName"> The unique address on Twilio to route SIP traffic </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="voiceUrl"> The URL we should call when receiving a call </param>
            <param name="voiceMethod"> The HTTP method to use with voice_url </param>
            <param name="voiceFallbackUrl"> The URL we should call when an error occurs in executing TwiML </param>
            <param name="voiceFallbackMethod"> The HTTP method to use with voice_fallback_url </param>
            <param name="voiceStatusCallbackUrl"> The URL that we should call to pass status updates </param>
            <param name="voiceStatusCallbackMethod"> The HTTP method we should use to call `voice_status_callback_url` </param>
            <param name="sipRegistration"> Whether SIP registration is allowed </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.CreateAsync(System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Domain
            </summary>
            <param name="domainName"> The unique address on Twilio to route SIP traffic </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="voiceUrl"> The URL we should call when receiving a call </param>
            <param name="voiceMethod"> The HTTP method to use with voice_url </param>
            <param name="voiceFallbackUrl"> The URL we should call when an error occurs in executing TwiML </param>
            <param name="voiceFallbackMethod"> The HTTP method to use with voice_fallback_url </param>
            <param name="voiceStatusCallbackUrl"> The URL that we should call to pass status updates </param>
            <param name="voiceStatusCallbackMethod"> The HTTP method we should use to call `voice_status_callback_url` </param>
            <param name="sipRegistration"> Whether SIP registration is allowed </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Fetch(Twilio.Rest.Api.V2010.Account.Sip.FetchDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a Domain
            </summary>
            <param name="options"> Fetch Domain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Sip.FetchDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a Domain
            </summary>
            <param name="options"> Fetch Domain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a Domain
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a Domain
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Update(Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the attributes of a domain
            </summary>
            <param name="options"> Update Domain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.Sip.UpdateDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the attributes of a domain
            </summary>
            <param name="options"> Update Domain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Update(System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,Twilio.Http.HttpMethod,System.Uri,System.Uri,System.Nullable{System.Boolean},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the attributes of a domain
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="voiceFallbackMethod"> The HTTP method used with voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we should call when an error occurs in executing TwiML </param>
            <param name="voiceMethod"> The HTTP method we should use with voice_url </param>
            <param name="voiceStatusCallbackMethod"> The HTTP method we should use to call voice_status_callback_url </param>
            <param name="voiceStatusCallbackUrl"> The URL that we should call to pass status updates </param>
            <param name="voiceUrl"> The URL we should call when receiving a call </param>
            <param name="sipRegistration"> Whether SIP registration is allowed </param>
            <param name="domainName"> The unique address on Twilio to route SIP traffic </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.UpdateAsync(System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,Twilio.Http.HttpMethod,System.Uri,System.Uri,System.Nullable{System.Boolean},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the attributes of a domain
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="voiceFallbackMethod"> The HTTP method used with voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we should call when an error occurs in executing TwiML </param>
            <param name="voiceMethod"> The HTTP method we should use with voice_url </param>
            <param name="voiceStatusCallbackMethod"> The HTTP method we should use to call voice_status_callback_url </param>
            <param name="voiceStatusCallbackUrl"> The URL that we should call to pass status updates </param>
            <param name="voiceUrl"> The URL we should call when receiving a call </param>
            <param name="sipRegistration"> Whether SIP registration is allowed </param>
            <param name="domainName"> The unique address on Twilio to route SIP traffic </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Delete(Twilio.Rest.Api.V2010.Account.Sip.DeleteDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an instance of a Domain
            </summary>
            <param name="options"> Delete Domain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Sip.DeleteDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an instance of a Domain
            </summary>
            <param name="options"> Delete Domain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an instance of a Domain
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an instance of a Domain
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Domain </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DomainResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DomainResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.ApiVersion">
            <summary>
            The API version used to process the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.AuthType">
            <summary>
            The types of authentication mapped to the domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.DomainName">
            <summary>
            The unique address on Twilio to route SIP traffic
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.VoiceFallbackUrl">
            <summary>
            The URL we call when an error occurs while executing TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.VoiceMethod">
            <summary>
            The HTTP method to use with voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.VoiceStatusCallbackMethod">
            <summary>
            The HTTP method we use to call voice_status_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.VoiceStatusCallbackUrl">
            <summary>
            The URL that we call with status updates
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.VoiceUrl">
            <summary>
            The URL we call when receiving a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.SubresourceUris">
            <summary>
            A list mapping resources associated with the SIP Domain resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DomainResource.SipRegistration">
            <summary>
            Whether SIP registration is allowed
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsCredentialListMappingOptions">
            <summary>
            Create a new credential list mapping resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsCredentialListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsCredentialListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that will contain the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsCredentialListMappingOptions.CredentialListSid">
            <summary>
            The SID of the CredentialList resource to map to the SIP domain
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsCredentialListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateAuthCallsCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that will contain the new resource </param>
            <param name="credentialListSid"> The SID of the CredentialList resource to map to the SIP domain </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsCredentialListMappingOptions">
            <summary>
            Retrieve a list of credential list mappings belonging to the domain used in the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsCredentialListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsCredentialListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that contains the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsCredentialListMappingOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadAuthCallsCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsCredentialListMappingOptions">
            <summary>
            Fetch a specific instance of a credential list mapping
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsCredentialListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsCredentialListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that contains the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsCredentialListMappingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsCredentialListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchAuthCallsCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsCredentialListMappingOptions">
            <summary>
            Delete a credential list mapping from the requested domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsCredentialListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsCredentialListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that contains the resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsCredentialListMappingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsCredentialListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteAuthCallsCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.Create(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential list mapping resource
            </summary>
            <param name="options"> Create AuthCallsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential list mapping resource
            </summary>
            <param name="options"> Create AuthCallsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential list mapping resource
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that will contain the new resource </param>
            <param name="credentialListSid"> The SID of the CredentialList resource to map to the SIP domain </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential list mapping resource
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that will contain the new resource </param>
            <param name="credentialListSid"> The SID of the CredentialList resource to map to the SIP domain </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.Read(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credential list mappings belonging to the domain used in the request
            </summary>
            <param name="options"> Read AuthCallsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credential list mappings belonging to the domain used in the request
            </summary>
            <param name="options"> Read AuthCallsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credential list mappings belonging to the domain used in the request
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credential list mappings belonging to the domain used in the request
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.Fetch(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of a credential list mapping
            </summary>
            <param name="options"> Fetch AuthCallsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of a credential list mapping
            </summary>
            <param name="options"> Fetch AuthCallsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of a credential list mapping
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of a credential list mapping
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.Delete(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential list mapping from the requested domain
            </summary>
            <param name="options"> Delete AuthCallsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential list mapping from the requested domain
            </summary>
            <param name="options"> Delete AuthCallsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential list mapping from the requested domain
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential list mapping from the requested domain
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AuthCallsCredentialListMappingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AuthCallsCredentialListMappingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsCredentialListMappingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsIpAccessControlListMappingOptions">
            <summary>
            Create a new IP Access Control List mapping
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsIpAccessControlListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsIpAccessControlListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that will contain the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsIpAccessControlListMappingOptions.IpAccessControlListSid">
            <summary>
            The SID of the IpAccessControlList resource to map to the SIP domain
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsIpAccessControlListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateAuthCallsIpAccessControlListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that will contain the new resource </param>
            <param name="ipAccessControlListSid"> The SID of the IpAccessControlList resource to map to the SIP domain </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsIpAccessControlListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsIpAccessControlListMappingOptions">
            <summary>
            Retrieve a list of IP Access Control List mappings belonging to the domain used in the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsIpAccessControlListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsIpAccessControlListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that contains the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsIpAccessControlListMappingOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadAuthCallsIpAccessControlListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsIpAccessControlListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsIpAccessControlListMappingOptions">
            <summary>
            Fetch a specific instance of an IP Access Control List mapping
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsIpAccessControlListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsIpAccessControlListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that contains the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsIpAccessControlListMappingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsIpAccessControlListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchAuthCallsIpAccessControlListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsIpAccessControlListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsIpAccessControlListMappingOptions">
            <summary>
            Delete an IP Access Control List mapping from the requested domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsIpAccessControlListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsIpAccessControlListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that contains the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsIpAccessControlListMappingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsIpAccessControlListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteAuthCallsIpAccessControlListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsIpAccessControlListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.Create(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IP Access Control List mapping
            </summary>
            <param name="options"> Create AuthCallsIpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.CreateAuthCallsIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IP Access Control List mapping
            </summary>
            <param name="options"> Create AuthCallsIpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IP Access Control List mapping
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that will contain the new resource </param>
            <param name="ipAccessControlListSid"> The SID of the IpAccessControlList resource to map to the SIP domain </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IP Access Control List mapping
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that will contain the new resource </param>
            <param name="ipAccessControlListSid"> The SID of the IpAccessControlList resource to map to the SIP domain </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.Read(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IP Access Control List mappings belonging to the domain used in the request
            </summary>
            <param name="options"> Read AuthCallsIpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.ReadAuthCallsIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IP Access Control List mappings belonging to the domain used in the request
            </summary>
            <param name="options"> Read AuthCallsIpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IP Access Control List mappings belonging to the domain used in the request
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IP Access Control List mappings belonging to the domain used in the request
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.Fetch(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of an IP Access Control List mapping
            </summary>
            <param name="options"> Fetch AuthCallsIpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.FetchAuthCallsIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of an IP Access Control List mapping
            </summary>
            <param name="options"> Fetch AuthCallsIpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of an IP Access Control List mapping
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of an IP Access Control List mapping
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.Delete(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IP Access Control List mapping from the requested domain
            </summary>
            <param name="options"> Delete AuthCallsIpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.DeleteAuthCallsIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IP Access Control List mapping from the requested domain
            </summary>
            <param name="options"> Delete AuthCallsIpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IP Access Control List mapping from the requested domain
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IP Access Control List mapping from the requested domain
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthCallsIpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AuthCallsIpAccessControlListMappingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AuthCallsIpAccessControlListMappingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeCalls.AuthCallsIpAccessControlListMappingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.CreateAuthRegistrationsCredentialListMappingOptions">
            <summary>
            Create a new credential list mapping resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.CreateAuthRegistrationsCredentialListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.CreateAuthRegistrationsCredentialListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that will contain the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.CreateAuthRegistrationsCredentialListMappingOptions.CredentialListSid">
            <summary>
            The SID of the CredentialList resource to map to the SIP domain
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.CreateAuthRegistrationsCredentialListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateAuthRegistrationsCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that will contain the new resource </param>
            <param name="credentialListSid"> The SID of the CredentialList resource to map to the SIP domain </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.CreateAuthRegistrationsCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.ReadAuthRegistrationsCredentialListMappingOptions">
            <summary>
            Retrieve a list of credential list mappings belonging to the domain used in the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.ReadAuthRegistrationsCredentialListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.ReadAuthRegistrationsCredentialListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that contains the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.ReadAuthRegistrationsCredentialListMappingOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadAuthRegistrationsCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.ReadAuthRegistrationsCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.FetchAuthRegistrationsCredentialListMappingOptions">
            <summary>
            Fetch a specific instance of a credential list mapping
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.FetchAuthRegistrationsCredentialListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.FetchAuthRegistrationsCredentialListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that contains the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.FetchAuthRegistrationsCredentialListMappingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.FetchAuthRegistrationsCredentialListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchAuthRegistrationsCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.FetchAuthRegistrationsCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.DeleteAuthRegistrationsCredentialListMappingOptions">
            <summary>
            Delete a credential list mapping from the requested domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.DeleteAuthRegistrationsCredentialListMappingOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.DeleteAuthRegistrationsCredentialListMappingOptions.PathDomainSid">
            <summary>
            The SID of the SIP domain that contains the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.DeleteAuthRegistrationsCredentialListMappingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.DeleteAuthRegistrationsCredentialListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteAuthRegistrationsCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.DeleteAuthRegistrationsCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.Create(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.CreateAuthRegistrationsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential list mapping resource
            </summary>
            <param name="options"> Create AuthRegistrationsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.CreateAuthRegistrationsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential list mapping resource
            </summary>
            <param name="options"> Create AuthRegistrationsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential list mapping resource
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that will contain the new resource </param>
            <param name="credentialListSid"> The SID of the CredentialList resource to map to the SIP domain </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new credential list mapping resource
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that will contain the new resource </param>
            <param name="credentialListSid"> The SID of the CredentialList resource to map to the SIP domain </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.Read(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.ReadAuthRegistrationsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credential list mappings belonging to the domain used in the request
            </summary>
            <param name="options"> Read AuthRegistrationsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.ReadAuthRegistrationsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credential list mappings belonging to the domain used in the request
            </summary>
            <param name="options"> Read AuthRegistrationsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credential list mappings belonging to the domain used in the request
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of credential list mappings belonging to the domain used in the request
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to read </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.Fetch(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.FetchAuthRegistrationsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of a credential list mapping
            </summary>
            <param name="options"> Fetch AuthRegistrationsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.FetchAuthRegistrationsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of a credential list mapping
            </summary>
            <param name="options"> Fetch AuthRegistrationsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of a credential list mapping
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of a credential list mapping
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.Delete(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.DeleteAuthRegistrationsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential list mapping from the requested domain
            </summary>
            <param name="options"> Delete AuthRegistrationsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.DeleteAuthRegistrationsCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential list mapping from the requested domain
            </summary>
            <param name="options"> Delete AuthRegistrationsCredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential list mapping from the requested domain
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a credential list mapping from the requested domain
            </summary>
            <param name="pathDomainSid"> The SID of the SIP domain that contains the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthRegistrationsCredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AuthRegistrationsCredentialListMappingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AuthRegistrationsCredentialListMappingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.AuthTypes.AuthTypeRegistrations.AuthRegistrationsCredentialListMappingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateCredentialListMappingOptions">
            <summary>
            Create a CredentialListMapping resource for an account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateCredentialListMappingOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateCredentialListMappingOptions.PathDomainSid">
            <summary>
            A string that identifies the SIP Domain for which the CredentialList resource will be mapped
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateCredentialListMappingOptions.CredentialListSid">
            <summary>
            A string that identifies the CredentialList resource to map to the SIP domain
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateCredentialListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain for which the CredentialList resource will be
                                mapped </param>
            <param name="credentialListSid"> A string that identifies the CredentialList resource to map to the SIP domain
                                    </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadCredentialListMappingOptions">
            <summary>
            Read multiple CredentialListMapping resources from an account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadCredentialListMappingOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadCredentialListMappingOptions.PathDomainSid">
            <summary>
            A string that identifies the SIP Domain that includes the resource to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadCredentialListMappingOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain that includes the resource to read </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchCredentialListMappingOptions">
            <summary>
            Fetch a single CredentialListMapping resource from an account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchCredentialListMappingOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchCredentialListMappingOptions.PathDomainSid">
            <summary>
            A string that identifies the SIP Domain that includes the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchCredentialListMappingOptions.PathSid">
            <summary>
            A string that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchCredentialListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain that includes the resource to fetch </param>
            <param name="pathSid"> A string that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteCredentialListMappingOptions">
            <summary>
            Delete a CredentialListMapping resource from an account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteCredentialListMappingOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteCredentialListMappingOptions.PathDomainSid">
            <summary>
            A string that identifies the SIP Domain that includes the resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteCredentialListMappingOptions.PathSid">
            <summary>
            A string that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteCredentialListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteCredentialListMappingOptions
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain that includes the resource to delete </param>
            <param name="pathSid"> A string that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteCredentialListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.Create(Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a CredentialListMapping resource for an account.
            </summary>
            <param name="options"> Create CredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a CredentialListMapping resource for an account.
            </summary>
            <param name="options"> Create CredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a CredentialListMapping resource for an account.
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain for which the CredentialList resource will be
                                mapped </param>
            <param name="credentialListSid"> A string that identifies the CredentialList resource to map to the SIP domain
                                    </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a CredentialListMapping resource for an account.
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain for which the CredentialList resource will be
                                mapped </param>
            <param name="credentialListSid"> A string that identifies the CredentialList resource to map to the SIP domain
                                    </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.Read(Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read multiple CredentialListMapping resources from an account.
            </summary>
            <param name="options"> Read CredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read multiple CredentialListMapping resources from an account.
            </summary>
            <param name="options"> Read CredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read multiple CredentialListMapping resources from an account.
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain that includes the resource to read </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read multiple CredentialListMapping resources from an account.
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain that includes the resource to read </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.Fetch(Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single CredentialListMapping resource from an account.
            </summary>
            <param name="options"> Fetch CredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single CredentialListMapping resource from an account.
            </summary>
            <param name="options"> Fetch CredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single CredentialListMapping resource from an account.
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain that includes the resource to fetch </param>
            <param name="pathSid"> A string that identifies the resource to fetch </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a single CredentialListMapping resource from an account.
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain that includes the resource to fetch </param>
            <param name="pathSid"> A string that identifies the resource to fetch </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.Delete(Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a CredentialListMapping resource from an account.
            </summary>
            <param name="options"> Delete CredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteCredentialListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a CredentialListMapping resource from an account.
            </summary>
            <param name="options"> Delete CredentialListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a CredentialListMapping resource from an account.
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain that includes the resource to delete </param>
            <param name="pathSid"> A string that identifies the resource to delete </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a CredentialListMapping resource from an account.
            </summary>
            <param name="pathDomainSid"> A string that identifies the SIP Domain that includes the resource to delete </param>
            <param name="pathSid"> A string that identifies the resource to delete </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CredentialListMappingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CredentialListMappingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.AccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.DateCreated">
            <summary>
            The date that this resource was created, given as GMT in RFC 2822 format.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.DateUpdated">
            <summary>
            The date that this resource was last updated, given as GMT in RFC 2822 format.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.FriendlyName">
            <summary>
            A human readable descriptive text for this resource, up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.Uri">
            <summary>
            The URI for this resource, relative to https://api.twilio.com
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CredentialListMappingResource.SubresourceUris">
            <summary>
            The credentials associated with this resource.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchIpAccessControlListMappingOptions">
            <summary>
            Fetch an IpAccessControlListMapping resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchIpAccessControlListMappingOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchIpAccessControlListMappingOptions.PathDomainSid">
            <summary>
            A string that uniquely identifies the SIP Domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchIpAccessControlListMappingOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies the resource to fetch.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchIpAccessControlListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchIpAccessControlListMappingOptions
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
            <param name="pathSid"> A 34 character string that uniquely identifies the resource to fetch. </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchIpAccessControlListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateIpAccessControlListMappingOptions">
            <summary>
            Create a new IpAccessControlListMapping resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateIpAccessControlListMappingOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateIpAccessControlListMappingOptions.PathDomainSid">
            <summary>
            A string that uniquely identifies the SIP Domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateIpAccessControlListMappingOptions.IpAccessControlListSid">
            <summary>
            The unique id of the IP access control list to map to the SIP domain
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateIpAccessControlListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateIpAccessControlListMappingOptions
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
            <param name="ipAccessControlListSid"> The unique id of the IP access control list to map to the SIP domain </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateIpAccessControlListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadIpAccessControlListMappingOptions">
            <summary>
            Retrieve a list of IpAccessControlListMapping resources.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadIpAccessControlListMappingOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadIpAccessControlListMappingOptions.PathDomainSid">
            <summary>
            A string that uniquely identifies the SIP Domain
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadIpAccessControlListMappingOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadIpAccessControlListMappingOptions
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadIpAccessControlListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteIpAccessControlListMappingOptions">
            <summary>
            Delete an IpAccessControlListMapping resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteIpAccessControlListMappingOptions.PathAccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteIpAccessControlListMappingOptions.PathDomainSid">
            <summary>
            A string that uniquely identifies the SIP Domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteIpAccessControlListMappingOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies the resource to delete.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteIpAccessControlListMappingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteIpAccessControlListMappingOptions
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
            <param name="pathSid"> A 34 character string that uniquely identifies the resource to delete. </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteIpAccessControlListMappingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.Fetch(Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an IpAccessControlListMapping resource.
            </summary>
            <param name="options"> Fetch IpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.FetchIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an IpAccessControlListMapping resource.
            </summary>
            <param name="options"> Fetch IpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an IpAccessControlListMapping resource.
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
            <param name="pathSid"> A 34 character string that uniquely identifies the resource to fetch. </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an IpAccessControlListMapping resource.
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
            <param name="pathSid"> A 34 character string that uniquely identifies the resource to fetch. </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.Create(Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAccessControlListMapping resource.
            </summary>
            <param name="options"> Create IpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.CreateIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAccessControlListMapping resource.
            </summary>
            <param name="options"> Create IpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAccessControlListMapping resource.
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
            <param name="ipAccessControlListSid"> The unique id of the IP access control list to map to the SIP domain </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAccessControlListMapping resource.
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
            <param name="ipAccessControlListSid"> The unique id of the IP access control list to map to the SIP domain </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.Read(Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IpAccessControlListMapping resources.
            </summary>
            <param name="options"> Read IpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.ReadIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IpAccessControlListMapping resources.
            </summary>
            <param name="options"> Read IpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IpAccessControlListMapping resources.
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IpAccessControlListMapping resources.
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.Delete(Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAccessControlListMapping resource.
            </summary>
            <param name="options"> Delete IpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Sip.Domain.DeleteIpAccessControlListMappingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAccessControlListMapping resource.
            </summary>
            <param name="options"> Delete IpAccessControlListMapping parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAccessControlListMapping resource.
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
            <param name="pathSid"> A 34 character string that uniquely identifies the resource to delete. </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAccessControlListMapping resource.
            </summary>
            <param name="pathDomainSid"> A string that uniquely identifies the SIP Domain </param>
            <param name="pathSid"> A 34 character string that uniquely identifies the resource to delete. </param>
            <param name="pathAccountSid"> The unique id of the Account that is responsible for this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlListMapping </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a IpAccessControlListMappingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> IpAccessControlListMappingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.AccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.DateCreated">
            <summary>
            The date that this resource was created, given as GMT in RFC 2822 format.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.DateUpdated">
            <summary>
            The date that this resource was last updated, given as GMT in RFC 2822 format.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.FriendlyName">
            <summary>
            A human readable descriptive text for this resource, up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.Uri">
            <summary>
            The URI for this resource, relative to https://api.twilio.com
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.Domain.IpAccessControlListMappingResource.SubresourceUris">
            <summary>
            The list of IP addresses associated with this domain.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.ReadIpAccessControlListOptions">
            <summary>
            Retrieve a list of IpAccessControlLists that belong to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.ReadIpAccessControlListOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.ReadIpAccessControlListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.CreateIpAccessControlListOptions">
            <summary>
            Create a new IpAccessControlList resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateIpAccessControlListOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.CreateIpAccessControlListOptions.FriendlyName">
            <summary>
            A human readable description of this resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CreateIpAccessControlListOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateIpAccessControlListOptions
            </summary>
            <param name="friendlyName"> A human readable description of this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.CreateIpAccessControlListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.FetchIpAccessControlListOptions">
            <summary>
            Fetch a specific instance of an IpAccessControlList
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.FetchIpAccessControlListOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.FetchIpAccessControlListOptions.PathSid">
            <summary>
            A string that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.FetchIpAccessControlListOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchIpAccessControlListOptions
            </summary>
            <param name="pathSid"> A string that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.FetchIpAccessControlListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.UpdateIpAccessControlListOptions">
            <summary>
            Rename an IpAccessControlList
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateIpAccessControlListOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateIpAccessControlListOptions.PathSid">
            <summary>
            A string that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.UpdateIpAccessControlListOptions.FriendlyName">
            <summary>
            A human readable description of this resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.UpdateIpAccessControlListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateIpAccessControlListOptions
            </summary>
            <param name="pathSid"> A string that identifies the resource to update </param>
            <param name="friendlyName"> A human readable description of this resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.UpdateIpAccessControlListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.DeleteIpAccessControlListOptions">
            <summary>
            Delete an IpAccessControlList from the requested account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DeleteIpAccessControlListOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.DeleteIpAccessControlListOptions.PathSid">
            <summary>
            A string that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DeleteIpAccessControlListOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteIpAccessControlListOptions
            </summary>
            <param name="pathSid"> A string that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.DeleteIpAccessControlListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Read(Twilio.Rest.Api.V2010.Account.Sip.ReadIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IpAccessControlLists that belong to the account used to make the request
            </summary>
            <param name="options"> Read IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Sip.ReadIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IpAccessControlLists that belong to the account used to make the request
            </summary>
            <param name="options"> Read IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IpAccessControlLists that belong to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of IpAccessControlLists that belong to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Create(Twilio.Rest.Api.V2010.Account.Sip.CreateIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAccessControlList resource
            </summary>
            <param name="options"> Create IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Sip.CreateIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAccessControlList resource
            </summary>
            <param name="options"> Create IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAccessControlList resource
            </summary>
            <param name="friendlyName"> A human readable description of this resource </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAccessControlList resource
            </summary>
            <param name="friendlyName"> A human readable description of this resource </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Fetch(Twilio.Rest.Api.V2010.Account.Sip.FetchIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of an IpAccessControlList
            </summary>
            <param name="options"> Fetch IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Sip.FetchIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of an IpAccessControlList
            </summary>
            <param name="options"> Fetch IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of an IpAccessControlList
            </summary>
            <param name="pathSid"> A string that identifies the resource to fetch </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific instance of an IpAccessControlList
            </summary>
            <param name="pathSid"> A string that identifies the resource to fetch </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Update(Twilio.Rest.Api.V2010.Account.Sip.UpdateIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Rename an IpAccessControlList
            </summary>
            <param name="options"> Update IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.Sip.UpdateIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Rename an IpAccessControlList
            </summary>
            <param name="options"> Update IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Rename an IpAccessControlList
            </summary>
            <param name="pathSid"> A string that identifies the resource to update </param>
            <param name="friendlyName"> A human readable description of this resource </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Rename an IpAccessControlList
            </summary>
            <param name="pathSid"> A string that identifies the resource to update </param>
            <param name="friendlyName"> A human readable description of this resource </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Delete(Twilio.Rest.Api.V2010.Account.Sip.DeleteIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAccessControlList from the requested account
            </summary>
            <param name="options"> Delete IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Sip.DeleteIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAccessControlList from the requested account
            </summary>
            <param name="options"> Delete IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAccessControlList from the requested account
            </summary>
            <param name="pathSid"> A string that identifies the resource to delete </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAccessControlList from the requested account
            </summary>
            <param name="pathSid"> A string that identifies the resource to delete </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a IpAccessControlListResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> IpAccessControlListResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Sid">
            <summary>
            A string that uniquely identifies this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.AccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.FriendlyName">
            <summary>
            A human readable description of this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.DateCreated">
            <summary>
            The date this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.DateUpdated">
            <summary>
            The date this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.SubresourceUris">
            <summary>
            The IP addresses associated with this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlListResource.Uri">
            <summary>
            The URI for this resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.ReadIpAddressOptions">
            <summary>
            Read multiple IpAddress resources.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.ReadIpAddressOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.ReadIpAddressOptions.PathIpAccessControlListSid">
            <summary>
            The IpAccessControlList Sid that identifies the IpAddress resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.ReadIpAddressOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadIpAddressOptions
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             read </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.ReadIpAddressOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.CreateIpAddressOptions">
            <summary>
            Create a new IpAddress resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.CreateIpAddressOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.CreateIpAddressOptions.PathIpAccessControlListSid">
            <summary>
            The IpAccessControlList Sid with which to associate the created IpAddress resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.CreateIpAddressOptions.FriendlyName">
            <summary>
            A human readable descriptive text for this resource, up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.CreateIpAddressOptions.IpAddress">
            <summary>
            An IP address in dotted decimal notation from which you want to accept traffic. Any SIP requests from this IP address will be allowed by Twilio. IPv4 only supported today.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.CreateIpAddressOptions.CidrPrefixLength">
            <summary>
            An integer representing the length of the CIDR prefix to use with this IP address when accepting traffic. By default the entire IP address is used.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.CreateIpAddressOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateIpAddressOptions
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid with which to associate the created IpAddress
                                             resource </param>
            <param name="friendlyName"> A human readable descriptive text for this resource, up to 64 characters long. </param>
            <param name="ipAddress"> An IP address in dotted decimal notation from which you want to accept traffic. Any SIP
                            requests from this IP address will be allowed by Twilio. IPv4 only supported today. </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.CreateIpAddressOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.FetchIpAddressOptions">
            <summary>
            Read one IpAddress resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.FetchIpAddressOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.FetchIpAddressOptions.PathIpAccessControlListSid">
            <summary>
            The IpAccessControlList Sid that identifies the IpAddress resources to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.FetchIpAddressOptions.PathSid">
            <summary>
            A string that identifies the IpAddress resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.FetchIpAddressOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchIpAddressOptions
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             fetch </param>
            <param name="pathSid"> A string that identifies the IpAddress resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.FetchIpAddressOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.UpdateIpAddressOptions">
            <summary>
            Update an IpAddress resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.UpdateIpAddressOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.UpdateIpAddressOptions.PathIpAccessControlListSid">
            <summary>
            The IpAccessControlList Sid that identifies the IpAddress resources to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.UpdateIpAddressOptions.PathSid">
            <summary>
            A string that identifies the IpAddress resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.UpdateIpAddressOptions.IpAddress">
            <summary>
            An IP address in dotted decimal notation from which you want to accept traffic. Any SIP requests from this IP address will be allowed by Twilio. IPv4 only supported today.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.UpdateIpAddressOptions.FriendlyName">
            <summary>
            A human readable descriptive text for this resource, up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.UpdateIpAddressOptions.CidrPrefixLength">
            <summary>
            An integer representing the length of the CIDR prefix to use with this IP address when accepting traffic. By default the entire IP address is used.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.UpdateIpAddressOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateIpAddressOptions
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             update </param>
            <param name="pathSid"> A string that identifies the IpAddress resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.UpdateIpAddressOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.DeleteIpAddressOptions">
            <summary>
            Delete an IpAddress resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.DeleteIpAddressOptions.PathAccountSid">
            <summary>
            The unique sid that identifies this account
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.DeleteIpAddressOptions.PathIpAccessControlListSid">
            <summary>
            The IpAccessControlList Sid that identifies the IpAddress resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.DeleteIpAddressOptions.PathSid">
            <summary>
            A string that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.DeleteIpAddressOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteIpAddressOptions
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             delete </param>
            <param name="pathSid"> A string that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.DeleteIpAddressOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Read(Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.ReadIpAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read multiple IpAddress resources.
            </summary>
            <param name="options"> Read IpAddress parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.ReadIpAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read multiple IpAddress resources.
            </summary>
            <param name="options"> Read IpAddress parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read multiple IpAddress resources.
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             read </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read multiple IpAddress resources.
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             read </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Create(Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.CreateIpAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAddress resource.
            </summary>
            <param name="options"> Create IpAddress parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.CreateIpAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAddress resource.
            </summary>
            <param name="options"> Create IpAddress parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Create(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAddress resource.
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid with which to associate the created IpAddress
                                             resource </param>
            <param name="friendlyName"> A human readable descriptive text for this resource, up to 64 characters long. </param>
            <param name="ipAddress"> An IP address in dotted decimal notation from which you want to accept traffic. Any SIP
                            requests from this IP address will be allowed by Twilio. IPv4 only supported today. </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="cidrPrefixLength"> An integer representing the length of the CIDR prefix to use with this IP address
                                   when accepting traffic. By default the entire IP address is used. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.CreateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new IpAddress resource.
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid with which to associate the created IpAddress
                                             resource </param>
            <param name="friendlyName"> A human readable descriptive text for this resource, up to 64 characters long. </param>
            <param name="ipAddress"> An IP address in dotted decimal notation from which you want to accept traffic. Any SIP
                            requests from this IP address will be allowed by Twilio. IPv4 only supported today. </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="cidrPrefixLength"> An integer representing the length of the CIDR prefix to use with this IP address
                                   when accepting traffic. By default the entire IP address is used. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Fetch(Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.FetchIpAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read one IpAddress resource.
            </summary>
            <param name="options"> Fetch IpAddress parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.FetchIpAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read one IpAddress resource.
            </summary>
            <param name="options"> Fetch IpAddress parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read one IpAddress resource.
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             fetch </param>
            <param name="pathSid"> A string that identifies the IpAddress resource to fetch </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Read one IpAddress resource.
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             fetch </param>
            <param name="pathSid"> A string that identifies the IpAddress resource to fetch </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Update(Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.UpdateIpAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an IpAddress resource.
            </summary>
            <param name="options"> Update IpAddress parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.UpdateIpAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an IpAddress resource.
            </summary>
            <param name="options"> Update IpAddress parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Update(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an IpAddress resource.
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             update </param>
            <param name="pathSid"> A string that identifies the IpAddress resource to update </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="ipAddress"> An IP address in dotted decimal notation from which you want to accept traffic. Any SIP
                            requests from this IP address will be allowed by Twilio. IPv4 only supported today. </param>
            <param name="friendlyName"> A human readable descriptive text for this resource, up to 64 characters long. </param>
            <param name="cidrPrefixLength"> An integer representing the length of the CIDR prefix to use with this IP address
                                   when accepting traffic. By default the entire IP address is used. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an IpAddress resource.
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             update </param>
            <param name="pathSid"> A string that identifies the IpAddress resource to update </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="ipAddress"> An IP address in dotted decimal notation from which you want to accept traffic. Any SIP
                            requests from this IP address will be allowed by Twilio. IPv4 only supported today. </param>
            <param name="friendlyName"> A human readable descriptive text for this resource, up to 64 characters long. </param>
            <param name="cidrPrefixLength"> An integer representing the length of the CIDR prefix to use with this IP address
                                   when accepting traffic. By default the entire IP address is used. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Delete(Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.DeleteIpAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAddress resource.
            </summary>
            <param name="options"> Delete IpAddress parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.DeleteIpAddressOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAddress resource.
            </summary>
            <param name="options"> Delete IpAddress parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAddress resource.
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             delete </param>
            <param name="pathSid"> A string that identifies the resource to delete </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an IpAddress resource.
            </summary>
            <param name="pathIpAccessControlListSid"> The IpAccessControlList Sid that identifies the IpAddress resources to
                                             delete </param>
            <param name="pathSid"> A string that identifies the resource to delete </param>
            <param name="pathAccountSid"> The unique sid that identifies this account </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAddress </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a IpAddressResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> IpAddressResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.AccountSid">
            <summary>
            The unique id of the Account that is responsible for this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.FriendlyName">
            <summary>
            A human readable descriptive text for this resource, up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.IpAddress">
            <summary>
            An IP address in dotted decimal notation from which you want to accept traffic. Any SIP requests from this IP address will be allowed by Twilio. IPv4 only supported today.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.CidrPrefixLength">
            <summary>
            An integer representing the length of the CIDR prefix to use with this IP address when accepting traffic. By default the entire IP address is used.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.IpAccessControlListSid">
            <summary>
            The unique id of the IpAccessControlList resource that includes this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.DateCreated">
            <summary>
            The date that this resource was created, given as GMT in RFC 2822 format.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.DateUpdated">
            <summary>
            The date that this resource was last updated, given as GMT in RFC 2822 format.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Sip.IpAccessControlList.IpAddressResource.Uri">
            <summary>
            The URI for this resource, relative to https://api.twilio.com
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.CreateTokenOptions">
            <summary>
            Create a new token for ICE servers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateTokenOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateTokenOptions.Ttl">
            <summary>
            The duration in seconds the credentials are valid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateTokenOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TokenResource.Create(Twilio.Rest.Api.V2010.Account.CreateTokenOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new token for ICE servers
            </summary>
            <param name="options"> Create Token parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Token </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TokenResource.CreateAsync(Twilio.Rest.Api.V2010.Account.CreateTokenOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new token for ICE servers
            </summary>
            <param name="options"> Create Token parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Token </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TokenResource.Create(System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new token for ICE servers
            </summary>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="ttl"> The duration in seconds the credentials are valid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Token </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TokenResource.CreateAsync(System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new token for ICE servers
            </summary>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="ttl"> The duration in seconds the credentials are valid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Token </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TokenResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TokenResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TokenResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TokenResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TokenResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TokenResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TokenResource.IceServers">
            <summary>
            An array representing the ephemeral credentials
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TokenResource.Password">
            <summary>
            The temporary password used for authenticating
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TokenResource.Ttl">
            <summary>
            The duration in seconds the credentials are valid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TokenResource.Username">
            <summary>
            The temporary username that uniquely identifies a Token
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.FetchTranscriptionOptions">
            <summary>
            Fetch an instance of a Transcription
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchTranscriptionOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.FetchTranscriptionOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchTranscriptionOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchTranscriptionOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.FetchTranscriptionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.DeleteTranscriptionOptions">
            <summary>
            Delete a transcription from the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteTranscriptionOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.DeleteTranscriptionOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteTranscriptionOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteTranscriptionOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.DeleteTranscriptionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.ReadTranscriptionOptions">
            <summary>
            Retrieve a list of transcriptions belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ReadTranscriptionOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ReadTranscriptionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Fetch(Twilio.Rest.Api.V2010.Account.FetchTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a Transcription
            </summary>
            <param name="options"> Fetch Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.FetchAsync(Twilio.Rest.Api.V2010.Account.FetchTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a Transcription
            </summary>
            <param name="options"> Fetch Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a Transcription
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of a Transcription
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Delete(Twilio.Rest.Api.V2010.Account.DeleteTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a transcription from the account used to make the request
            </summary>
            <param name="options"> Delete Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.DeleteTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a transcription from the account used to make the request
            </summary>
            <param name="options"> Delete Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a transcription from the account used to make the request
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a transcription from the account used to make the request
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Read(Twilio.Rest.Api.V2010.Account.ReadTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of transcriptions belonging to the account used to make the request
            </summary>
            <param name="options"> Read Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.ReadAsync(Twilio.Rest.Api.V2010.Account.ReadTranscriptionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of transcriptions belonging to the account used to make the request
            </summary>
            <param name="options"> Read Transcription parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of transcriptions belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of transcriptions belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Transcription </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.TranscriptionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.TranscriptionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.TranscriptionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TranscriptionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TranscriptionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.ApiVersion">
            <summary>
            The API version used to create the transcription
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Duration">
            <summary>
            The duration of the transcribed audio in seconds.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Price">
            <summary>
            The charge for the transcription
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.PriceUnit">
            <summary>
            The currency in which price is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.RecordingSid">
            <summary>
            The SID that identifies the transcription's recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Status">
            <summary>
            The status of the transcription
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.TranscriptionText">
            <summary>
            The text content of the transcription.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Type">
            <summary>
            The transcription type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.TranscriptionResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.ReadRecordOptions">
            <summary>
            Retrieve a list of usage-records belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.ReadRecordOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.ReadRecordOptions.Category">
            <summary>
            The usage category of the UsageRecord resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.ReadRecordOptions.StartDate">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.ReadRecordOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.ReadRecordOptions.IncludeSubaccounts">
            <summary>
            Whether to include usage from the master account and all its subaccounts
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.ReadRecordOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.Read(Twilio.Rest.Api.V2010.Account.Usage.ReadRecordOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of usage-records belonging to the account used to make the request
            </summary>
            <param name="options"> Read Record parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Record </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Usage.ReadRecordOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of usage-records belonging to the account used to make the request
            </summary>
            <param name="options"> Read Record parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Record </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.Read(System.String,Twilio.Rest.Api.V2010.Account.Usage.RecordResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of usage-records belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Record </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.ReadAsync(System.String,Twilio.Rest.Api.V2010.Account.Usage.RecordResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of usage-records belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Record </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.RecordResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.RecordResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RecordResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RecordResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.AccountSid">
            <summary>
            The SID of the Account accrued the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.ApiVersion">
            <summary>
            The API version used to create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.AsOf">
            <summary>
            Usage records up to date as of this timestamp
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.Category">
            <summary>
            The category of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.Count">
            <summary>
            The number of usage events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.CountUnit">
            <summary>
            The units in which count is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.Description">
            <summary>
            A plain-language description of the usage category
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.EndDate">
            <summary>
            The last date for which usage is included in the UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.Price">
            <summary>
            The total price of the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.PriceUnit">
            <summary>
            The currency in which `price` is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.StartDate">
            <summary>
            The first date for which usage is included in this UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.Usage">
            <summary>
            The amount of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.RecordResource.UsageUnit">
            <summary>
            The units in which usage is measured
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadAllTimeOptions">
            <summary>
            ReadAllTimeOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadAllTimeOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadAllTimeOptions.Category">
            <summary>
            The usage category of the UsageRecord resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadAllTimeOptions.StartDate">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadAllTimeOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadAllTimeOptions.IncludeSubaccounts">
            <summary>
            Whether to include usage from the master account and all its subaccounts
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadAllTimeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.Read(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadAllTimeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read AllTime parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AllTime </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadAllTimeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read AllTime parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AllTime </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.Read(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AllTime </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.ReadAsync(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AllTime </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AllTimeResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AllTimeResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.AccountSid">
            <summary>
            The SID of the Account accrued the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.ApiVersion">
            <summary>
            The API version used to create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.AsOf">
            <summary>
            Usage records up to date as of this timestamp
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.Category">
            <summary>
            The category of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.Count">
            <summary>
            The number of usage events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.CountUnit">
            <summary>
            The units in which count is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.Description">
            <summary>
            A plain-language description of the usage category
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.EndDate">
            <summary>
            The last date for which usage is included in the UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.Price">
            <summary>
            The total price of the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.PriceUnit">
            <summary>
            The currency in which `price` is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.StartDate">
            <summary>
            The first date for which usage is included in this UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.Usage">
            <summary>
            The amount of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.AllTimeResource.UsageUnit">
            <summary>
            The units in which usage is measured
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadDailyOptions">
            <summary>
            ReadDailyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadDailyOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadDailyOptions.Category">
            <summary>
            The usage category of the UsageRecord resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadDailyOptions.StartDate">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadDailyOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadDailyOptions.IncludeSubaccounts">
            <summary>
            Whether to include usage from the master account and all its subaccounts
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadDailyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.Read(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadDailyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Daily parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Daily </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadDailyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Daily parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Daily </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.Read(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Daily </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.ReadAsync(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Daily </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DailyResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DailyResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.AccountSid">
            <summary>
            The SID of the Account accrued the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.ApiVersion">
            <summary>
            The API version used to create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.AsOf">
            <summary>
            Usage records up to date as of this timestamp
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.Category">
            <summary>
            The category of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.Count">
            <summary>
            The number of usage events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.CountUnit">
            <summary>
            The units in which count is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.Description">
            <summary>
            A plain-language description of the usage category
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.EndDate">
            <summary>
            The last date for which usage is included in the UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.Price">
            <summary>
            The total price of the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.PriceUnit">
            <summary>
            The currency in which `price` is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.StartDate">
            <summary>
            The first date for which usage is included in this UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.Usage">
            <summary>
            The amount of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.DailyResource.UsageUnit">
            <summary>
            The units in which usage is measured
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadLastMonthOptions">
            <summary>
            ReadLastMonthOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadLastMonthOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadLastMonthOptions.Category">
            <summary>
            The usage category of the UsageRecord resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadLastMonthOptions.StartDate">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadLastMonthOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadLastMonthOptions.IncludeSubaccounts">
            <summary>
            Whether to include usage from the master account and all its subaccounts
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadLastMonthOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.Read(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadLastMonthOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read LastMonth parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of LastMonth </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadLastMonthOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read LastMonth parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of LastMonth </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.Read(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of LastMonth </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.ReadAsync(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of LastMonth </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a LastMonthResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> LastMonthResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.AccountSid">
            <summary>
            The SID of the Account accrued the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.ApiVersion">
            <summary>
            The API version used to create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.AsOf">
            <summary>
            Usage records up to date as of this timestamp
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.Category">
            <summary>
            The category of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.Count">
            <summary>
            The number of usage events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.CountUnit">
            <summary>
            The units in which count is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.Description">
            <summary>
            A plain-language description of the usage category
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.EndDate">
            <summary>
            The last date for which usage is included in the UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.Price">
            <summary>
            The total price of the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.PriceUnit">
            <summary>
            The currency in which `price` is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.StartDate">
            <summary>
            The first date for which usage is included in this UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.Usage">
            <summary>
            The amount of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.LastMonthResource.UsageUnit">
            <summary>
            The units in which usage is measured
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadMonthlyOptions">
            <summary>
            ReadMonthlyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadMonthlyOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadMonthlyOptions.Category">
            <summary>
            The usage category of the UsageRecord resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadMonthlyOptions.StartDate">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadMonthlyOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadMonthlyOptions.IncludeSubaccounts">
            <summary>
            Whether to include usage from the master account and all its subaccounts
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadMonthlyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.Read(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadMonthlyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Monthly parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Monthly </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadMonthlyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Monthly parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Monthly </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.Read(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Monthly </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.ReadAsync(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Monthly </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MonthlyResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MonthlyResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.AccountSid">
            <summary>
            The SID of the Account accrued the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.ApiVersion">
            <summary>
            The API version used to create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.AsOf">
            <summary>
            Usage records up to date as of this timestamp
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.Category">
            <summary>
            The category of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.Count">
            <summary>
            The number of usage events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.CountUnit">
            <summary>
            The units in which count is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.Description">
            <summary>
            A plain-language description of the usage category
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.EndDate">
            <summary>
            The last date for which usage is included in the UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.Price">
            <summary>
            The total price of the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.PriceUnit">
            <summary>
            The currency in which `price` is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.StartDate">
            <summary>
            The first date for which usage is included in this UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.Usage">
            <summary>
            The amount of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.MonthlyResource.UsageUnit">
            <summary>
            The units in which usage is measured
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadThisMonthOptions">
            <summary>
            ReadThisMonthOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadThisMonthOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadThisMonthOptions.Category">
            <summary>
            The usage category of the UsageRecord resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadThisMonthOptions.StartDate">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadThisMonthOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadThisMonthOptions.IncludeSubaccounts">
            <summary>
            Whether to include usage from the master account and all its subaccounts
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadThisMonthOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.Read(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadThisMonthOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read ThisMonth parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ThisMonth </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadThisMonthOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read ThisMonth parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ThisMonth </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.Read(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ThisMonth </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.ReadAsync(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ThisMonth </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ThisMonthResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ThisMonthResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.AccountSid">
            <summary>
            The SID of the Account accrued the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.ApiVersion">
            <summary>
            The API version used to create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.AsOf">
            <summary>
            Usage records up to date as of this timestamp
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.Category">
            <summary>
            The category of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.Count">
            <summary>
            The number of usage events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.CountUnit">
            <summary>
            The units in which count is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.Description">
            <summary>
            A plain-language description of the usage category
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.EndDate">
            <summary>
            The last date for which usage is included in the UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.Price">
            <summary>
            The total price of the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.PriceUnit">
            <summary>
            The currency in which `price` is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.StartDate">
            <summary>
            The first date for which usage is included in this UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.Usage">
            <summary>
            The amount of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ThisMonthResource.UsageUnit">
            <summary>
            The units in which usage is measured
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadTodayOptions">
            <summary>
            ReadTodayOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadTodayOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadTodayOptions.Category">
            <summary>
            The usage category of the UsageRecord resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadTodayOptions.StartDate">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadTodayOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadTodayOptions.IncludeSubaccounts">
            <summary>
            Whether to include usage from the master account and all its subaccounts
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadTodayOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.Read(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadTodayOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Today parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Today </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadTodayOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Today parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Today </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.Read(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Today </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.ReadAsync(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Today </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TodayResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TodayResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.AccountSid">
            <summary>
            The SID of the Account accrued the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.ApiVersion">
            <summary>
            The API version used to create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.AsOf">
            <summary>
            Usage records up to date as of this timestamp
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.Category">
            <summary>
            The category of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.Count">
            <summary>
            The number of usage events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.CountUnit">
            <summary>
            The units in which count is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.Description">
            <summary>
            A plain-language description of the usage category
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.EndDate">
            <summary>
            The last date for which usage is included in the UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.Price">
            <summary>
            The total price of the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.PriceUnit">
            <summary>
            The currency in which `price` is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.StartDate">
            <summary>
            The first date for which usage is included in this UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.Usage">
            <summary>
            The amount of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.TodayResource.UsageUnit">
            <summary>
            The units in which usage is measured
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYearlyOptions">
            <summary>
            ReadYearlyOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYearlyOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYearlyOptions.Category">
            <summary>
            The usage category of the UsageRecord resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYearlyOptions.StartDate">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYearlyOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYearlyOptions.IncludeSubaccounts">
            <summary>
            Whether to include usage from the master account and all its subaccounts
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYearlyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.Read(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYearlyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Yearly parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Yearly </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYearlyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Yearly parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Yearly </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.Read(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Yearly </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.ReadAsync(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Yearly </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a YearlyResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> YearlyResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.AccountSid">
            <summary>
            The SID of the Account accrued the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.ApiVersion">
            <summary>
            The API version used to create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.AsOf">
            <summary>
            Usage records up to date as of this timestamp
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.Category">
            <summary>
            The category of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.Count">
            <summary>
            The number of usage events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.CountUnit">
            <summary>
            The units in which count is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.Description">
            <summary>
            A plain-language description of the usage category
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.EndDate">
            <summary>
            The last date for which usage is included in the UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.Price">
            <summary>
            The total price of the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.PriceUnit">
            <summary>
            The currency in which `price` is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.StartDate">
            <summary>
            The first date for which usage is included in this UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.Usage">
            <summary>
            The amount of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YearlyResource.UsageUnit">
            <summary>
            The units in which usage is measured
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYesterdayOptions">
            <summary>
            ReadYesterdayOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYesterdayOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYesterdayOptions.Category">
            <summary>
            The usage category of the UsageRecord resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYesterdayOptions.StartDate">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYesterdayOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYesterdayOptions.IncludeSubaccounts">
            <summary>
            Whether to include usage from the master account and all its subaccounts
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYesterdayOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.Read(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYesterdayOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Yesterday parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Yesterday </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Usage.Record.ReadYesterdayOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Yesterday parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Yesterday </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.Read(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Yesterday </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.ReadAsync(System.String,Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.CategoryEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="category"> The usage category of the UsageRecord resources to read </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Yesterday </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a YesterdayResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> YesterdayResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.AccountSid">
            <summary>
            The SID of the Account accrued the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.ApiVersion">
            <summary>
            The API version used to create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.AsOf">
            <summary>
            Usage records up to date as of this timestamp
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.Category">
            <summary>
            The category of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.Count">
            <summary>
            The number of usage events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.CountUnit">
            <summary>
            The units in which count is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.Description">
            <summary>
            A plain-language description of the usage category
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.EndDate">
            <summary>
            The last date for which usage is included in the UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.Price">
            <summary>
            The total price of the usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.PriceUnit">
            <summary>
            The currency in which `price` is measured
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.StartDate">
            <summary>
            The first date for which usage is included in this UsageRecord
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.SubresourceUris">
            <summary>
            A list of related resources identified by their relative URIs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.Usage">
            <summary>
            The amount of usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.Record.YesterdayResource.UsageUnit">
            <summary>
            The units in which usage is measured
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.FetchTriggerOptions">
            <summary>
            Fetch and instance of a usage-trigger
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.FetchTriggerOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.FetchTriggerOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.FetchTriggerOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchTriggerOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.FetchTriggerOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.UpdateTriggerOptions">
            <summary>
            Update an instance of a usage trigger
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.UpdateTriggerOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.UpdateTriggerOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.UpdateTriggerOptions.CallbackMethod">
            <summary>
            The HTTP method to use to call callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.UpdateTriggerOptions.CallbackUrl">
            <summary>
            The URL we call when the trigger fires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.UpdateTriggerOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.UpdateTriggerOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateTriggerOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.UpdateTriggerOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.DeleteTriggerOptions">
            <summary>
            DeleteTriggerOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.DeleteTriggerOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.DeleteTriggerOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.DeleteTriggerOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteTriggerOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.DeleteTriggerOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions">
            <summary>
            Create a new UsageTrigger
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions.PathAccountSid">
            <summary>
            The SID of the Account that will create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions.CallbackUrl">
            <summary>
            The URL we call when the trigger fires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions.TriggerValue">
            <summary>
            The usage value at which the trigger should fire
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions.UsageCategory">
            <summary>
            The usage category the trigger watches
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions.CallbackMethod">
            <summary>
            The HTTP method to use to call callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions.Recurring">
            <summary>
            The frequency of a recurring UsageTrigger
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions.TriggerBy">
            <summary>
            The field in the UsageRecord resource that fires the trigger
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions.#ctor(System.Uri,System.String,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.UsageCategoryEnum)">
            <summary>
            Construct a new CreateTriggerOptions
            </summary>
            <param name="callbackUrl"> The URL we call when the trigger fires </param>
            <param name="triggerValue"> The usage value at which the trigger should fire </param>
            <param name="usageCategory"> The usage category the trigger watches </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.Usage.ReadTriggerOptions">
            <summary>
            Retrieve a list of usage-triggers belonging to the account used to make the request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.ReadTriggerOptions.PathAccountSid">
            <summary>
            The SID of the Account that created the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.ReadTriggerOptions.Recurring">
            <summary>
            The frequency of recurring UsageTriggers to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.ReadTriggerOptions.TriggerBy">
            <summary>
            The trigger field of the UsageTriggers to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.ReadTriggerOptions.UsageCategory">
            <summary>
            The usage category of the UsageTriggers to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.ReadTriggerOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Fetch(Twilio.Rest.Api.V2010.Account.Usage.FetchTriggerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch and instance of a usage-trigger
            </summary>
            <param name="options"> Fetch Trigger parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.FetchAsync(Twilio.Rest.Api.V2010.Account.Usage.FetchTriggerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch and instance of a usage-trigger
            </summary>
            <param name="options"> Fetch Trigger parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch and instance of a usage-trigger
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch and instance of a usage-trigger
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Update(Twilio.Rest.Api.V2010.Account.Usage.UpdateTriggerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an instance of a usage trigger
            </summary>
            <param name="options"> Update Trigger parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.UpdateAsync(Twilio.Rest.Api.V2010.Account.Usage.UpdateTriggerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an instance of a usage trigger
            </summary>
            <param name="options"> Update Trigger parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Update(System.String,System.String,Twilio.Http.HttpMethod,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an instance of a usage trigger
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="callbackMethod"> The HTTP method to use to call callback_url </param>
            <param name="callbackUrl"> The URL we call when the trigger fires </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.UpdateAsync(System.String,System.String,Twilio.Http.HttpMethod,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an instance of a usage trigger
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to update </param>
            <param name="callbackMethod"> The HTTP method to use to call callback_url </param>
            <param name="callbackUrl"> The URL we call when the trigger fires </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Delete(Twilio.Rest.Api.V2010.Account.Usage.DeleteTriggerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Trigger parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.DeleteAsync(Twilio.Rest.Api.V2010.Account.Usage.DeleteTriggerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Trigger parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="pathAccountSid"> The SID of the Account that created the resources to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Create(Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new UsageTrigger
            </summary>
            <param name="options"> Create Trigger parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.CreateAsync(Twilio.Rest.Api.V2010.Account.Usage.CreateTriggerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new UsageTrigger
            </summary>
            <param name="options"> Create Trigger parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Create(System.Uri,System.String,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.UsageCategoryEnum,System.String,Twilio.Http.HttpMethod,System.String,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.RecurringEnum,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.TriggerFieldEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new UsageTrigger
            </summary>
            <param name="callbackUrl"> The URL we call when the trigger fires </param>
            <param name="triggerValue"> The usage value at which the trigger should fire </param>
            <param name="usageCategory"> The usage category the trigger watches </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="callbackMethod"> The HTTP method to use to call callback_url </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="recurring"> The frequency of a recurring UsageTrigger </param>
            <param name="triggerBy"> The field in the UsageRecord resource that fires the trigger </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.CreateAsync(System.Uri,System.String,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.UsageCategoryEnum,System.String,Twilio.Http.HttpMethod,System.String,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.RecurringEnum,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.TriggerFieldEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new UsageTrigger
            </summary>
            <param name="callbackUrl"> The URL we call when the trigger fires </param>
            <param name="triggerValue"> The usage value at which the trigger should fire </param>
            <param name="usageCategory"> The usage category the trigger watches </param>
            <param name="pathAccountSid"> The SID of the Account that will create the resource </param>
            <param name="callbackMethod"> The HTTP method to use to call callback_url </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="recurring"> The frequency of a recurring UsageTrigger </param>
            <param name="triggerBy"> The field in the UsageRecord resource that fires the trigger </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Read(Twilio.Rest.Api.V2010.Account.Usage.ReadTriggerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of usage-triggers belonging to the account used to make the request
            </summary>
            <param name="options"> Read Trigger parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.ReadAsync(Twilio.Rest.Api.V2010.Account.Usage.ReadTriggerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of usage-triggers belonging to the account used to make the request
            </summary>
            <param name="options"> Read Trigger parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Read(System.String,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.RecurringEnum,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.TriggerFieldEnum,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.UsageCategoryEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of usage-triggers belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="recurring"> The frequency of recurring UsageTriggers to read </param>
            <param name="triggerBy"> The trigger field of the UsageTriggers to read </param>
            <param name="usageCategory"> The usage category of the UsageTriggers to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.ReadAsync(System.String,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.RecurringEnum,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.TriggerFieldEnum,Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.UsageCategoryEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of usage-triggers belonging to the account used to make the request
            </summary>
            <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
            <param name="recurring"> The frequency of recurring UsageTriggers to read </param>
            <param name="triggerBy"> The trigger field of the UsageTriggers to read </param>
            <param name="usageCategory"> The usage category of the UsageTriggers to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trigger </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.NextPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.TriggerResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Api.V2010.Account.Usage.TriggerResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TriggerResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TriggerResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.AccountSid">
            <summary>
            The SID of the Account that this trigger monitors
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.ApiVersion">
            <summary>
            The API version used to create the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.CallbackMethod">
            <summary>
            The HTTP method we use to call callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.CallbackUrl">
            <summary>
            he URL we call when the trigger fires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.CurrentValue">
            <summary>
            The current value of the field the trigger is watching
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.DateFired">
            <summary>
            The RFC 2822 date and time in GMT that the trigger was last fired
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT that the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.FriendlyName">
            <summary>
            The string that you assigned to describe the trigger
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Recurring">
            <summary>
            The frequency of a recurring UsageTrigger
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.TriggerBy">
            <summary>
            The field in the UsageRecord resource that fires the trigger
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.TriggerValue">
            <summary>
            The value at which the trigger will fire
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.Uri">
            <summary>
            The URI of the resource, relative to `https://api.twilio.com`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.UsageCategory">
            <summary>
            The usage category the trigger watches
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.Usage.TriggerResource.UsageRecordUri">
            <summary>
            The URI of the UsageRecord resource this trigger watches
            </summary>
        </member>
        <member name="T:Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions">
            <summary>
            CreateValidationRequestOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions.PathAccountSid">
            <summary>
            The SID of the Account responsible for the new Caller ID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions.PhoneNumber">
            <summary>
            The phone number to verify in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions.CallDelay">
            <summary>
            The number of seconds to delay before initiating the verification call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions.Extension">
            <summary>
            The digits to dial after connecting the verification call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions.StatusCallbackMethod">
            <summary>
            The HTTP method we should use to call status_callback
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions.#ctor(Twilio.Types.PhoneNumber)">
            <summary>
            Construct a new CreateValidationRequestOptions
            </summary>
            <param name="phoneNumber"> The phone number to verify in E.164 format </param>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ValidationRequestResource.Create(Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create ValidationRequest parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ValidationRequest </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ValidationRequestResource.CreateAsync(Twilio.Rest.Api.V2010.Account.CreateValidationRequestOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create ValidationRequest parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ValidationRequest </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ValidationRequestResource.Create(Twilio.Types.PhoneNumber,System.String,System.String,System.Nullable{System.Int32},System.String,System.Uri,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="phoneNumber"> The phone number to verify in E.164 format </param>
            <param name="pathAccountSid"> The SID of the Account responsible for the new Caller ID </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="callDelay"> The number of seconds to delay before initiating the verification call </param>
            <param name="extension"> The digits to dial after connecting the verification call </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ValidationRequest </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ValidationRequestResource.CreateAsync(Twilio.Types.PhoneNumber,System.String,System.String,System.Nullable{System.Int32},System.String,System.Uri,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="phoneNumber"> The phone number to verify in E.164 format </param>
            <param name="pathAccountSid"> The SID of the Account responsible for the new Caller ID </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="callDelay"> The number of seconds to delay before initiating the verification call </param>
            <param name="extension"> The digits to dial after connecting the verification call </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ValidationRequest </returns>
        </member>
        <member name="M:Twilio.Rest.Api.V2010.Account.ValidationRequestResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ValidationRequestResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ValidationRequestResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ValidationRequestResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ValidationRequestResource.PhoneNumber">
            <summary>
            The phone number to verify in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ValidationRequestResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ValidationRequestResource.ValidationCode">
            <summary>
            The 6 digit validation code that someone must enter to validate the Caller ID  when `phone_number` is called
            </summary>
        </member>
        <member name="P:Twilio.Rest.Api.V2010.Account.ValidationRequestResource.CallSid">
            <summary>
            The SID of the Call the resource is associated with
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.FetchFormOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch the forms for a specific Form Type.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.FetchFormOptions.PathFormType">
            <summary>
            The Type of this Form
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.FetchFormOptions.#ctor(Twilio.Rest.Authy.V1.FormResource.FormTypesEnum)">
            <summary>
            Construct a new FetchFormOptions
            </summary>
            <param name="pathFormType"> The Type of this Form </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.FetchFormOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.FormResource.Fetch(Twilio.Rest.Authy.V1.FetchFormOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the forms for a specific Form Type.
            </summary>
            <param name="options"> Fetch Form parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Form </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.FormResource.FetchAsync(Twilio.Rest.Authy.V1.FetchFormOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the forms for a specific Form Type.
            </summary>
            <param name="options"> Fetch Form parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Form </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.FormResource.Fetch(Twilio.Rest.Authy.V1.FormResource.FormTypesEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the forms for a specific Form Type.
            </summary>
            <param name="pathFormType"> The Type of this Form </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Form </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.FormResource.FetchAsync(Twilio.Rest.Authy.V1.FormResource.FormTypesEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the forms for a specific Form Type.
            </summary>
            <param name="pathFormType"> The Type of this Form </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Form </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.FormResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FormResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FormResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.FormResource.FormType">
            <summary>
            The Type of this Form
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.FormResource.Forms">
            <summary>
            Object that contains the available forms for this type.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.FormResource.FormMeta">
            <summary>
            Additional information for the available forms for this type.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.FormResource.Url">
            <summary>
            The URL to access the forms for this type.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.CreateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Service for the Account
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.CreateServiceOptions.FriendlyName">
            <summary>
            A human readable description of this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.CreateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateServiceOptions
            </summary>
            <param name="friendlyName"> A human readable description of this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.DeleteServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.DeleteServiceOptions.PathSid">
            <summary>
            A string that uniquely identifies this Service.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> A string that uniquely identifies this Service. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.FetchServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch a specific Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.FetchServiceOptions.PathSid">
            <summary>
            A string that uniquely identifies this Service.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> A string that uniquely identifies this Service. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.ReadServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Services for an Account.
             </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.UpdateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update a specific Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.UpdateServiceOptions.PathSid">
            <summary>
            A string that uniquely identifies this Service.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.UpdateServiceOptions.FriendlyName">
            <summary>
            A human readable description of this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> A string that uniquely identifies this Service. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.Create(Twilio.Rest.Authy.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service for the Account
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.CreateAsync(Twilio.Rest.Authy.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service for the Account
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.Create(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service for the Account
            </summary>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.CreateAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service for the Account
            </summary>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.Delete(Twilio.Rest.Authy.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Service.
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.DeleteAsync(Twilio.Rest.Authy.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Service.
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Service.
            </summary>
            <param name="pathSid"> A string that uniquely identifies this Service. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Service.
            </summary>
            <param name="pathSid"> A string that uniquely identifies this Service. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.Fetch(Twilio.Rest.Authy.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Service.
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.FetchAsync(Twilio.Rest.Authy.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Service.
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Service.
            </summary>
            <param name="pathSid"> A string that uniquely identifies this Service. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Service.
            </summary>
            <param name="pathSid"> A string that uniquely identifies this Service. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.Read(Twilio.Rest.Authy.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services for an Account.
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.ReadAsync(Twilio.Rest.Authy.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services for an Account.
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services for an Account.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services for an Account.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Authy.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Authy.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.Update(Twilio.Rest.Authy.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service.
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.UpdateAsync(Twilio.Rest.Authy.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service.
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.Update(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service.
            </summary>
            <param name="pathSid"> A string that uniquely identifies this Service. </param>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.UpdateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service.
            </summary>
            <param name="pathSid"> A string that uniquely identifies this Service. </param>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.ServiceResource.Sid">
            <summary>
            A string that uniquely identifies this Service.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.ServiceResource.FriendlyName">
            <summary>
            A human readable description of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.ServiceResource.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.ServiceResource.DateCreated">
            <summary>
            The date this Service was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.ServiceResource.DateUpdated">
            <summary>
            The date this Service was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.ServiceResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.ServiceResource.Links">
            <summary>
            Nested resource URLs.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.CreateEntityOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Entity for the Service
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.CreateEntityOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.CreateEntityOptions.Identity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.CreateEntityOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateEntityOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="identity"> Unique identity of the Entity </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.CreateEntityOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.DeleteEntityOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific Entity.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.DeleteEntityOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.DeleteEntityOptions.PathIdentity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.DeleteEntityOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteEntityOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.DeleteEntityOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.FetchEntityOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch a specific Entity.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.FetchEntityOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.FetchEntityOptions.PathIdentity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.FetchEntityOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchEntityOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.FetchEntityOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.ReadEntityOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Entities for a Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.ReadEntityOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.ReadEntityOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadEntityOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.ReadEntityOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.Create(Twilio.Rest.Authy.V1.Service.CreateEntityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Entity for the Service
            </summary>
            <param name="options"> Create Entity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.CreateAsync(Twilio.Rest.Authy.V1.Service.CreateEntityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Entity for the Service
            </summary>
            <param name="options"> Create Entity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Entity for the Service
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="identity"> Unique identity of the Entity </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Entity for the Service
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="identity"> Unique identity of the Entity </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.Delete(Twilio.Rest.Authy.V1.Service.DeleteEntityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Entity.
            </summary>
            <param name="options"> Delete Entity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.DeleteAsync(Twilio.Rest.Authy.V1.Service.DeleteEntityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Entity.
            </summary>
            <param name="options"> Delete Entity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Entity.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Entity.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.Fetch(Twilio.Rest.Authy.V1.Service.FetchEntityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Entity.
            </summary>
            <param name="options"> Fetch Entity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.FetchAsync(Twilio.Rest.Authy.V1.Service.FetchEntityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Entity.
            </summary>
            <param name="options"> Fetch Entity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Entity.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Entity.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.Read(Twilio.Rest.Authy.V1.Service.ReadEntityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Entities for a Service.
            </summary>
            <param name="options"> Read Entity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.ReadAsync(Twilio.Rest.Authy.V1.Service.ReadEntityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Entities for a Service.
            </summary>
            <param name="options"> Read Entity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Entities for a Service.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Entities for a Service.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Entity </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.NextPage(Twilio.Base.Page{Twilio.Rest.Authy.V1.Service.EntityResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Authy.V1.Service.EntityResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.EntityResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a EntityResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> EntityResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.EntityResource.Sid">
            <summary>
            A string that uniquely identifies this Entity.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.EntityResource.Identity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.EntityResource.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.EntityResource.ServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.EntityResource.DateCreated">
            <summary>
            The date this Entity was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.EntityResource.DateUpdated">
            <summary>
            The date this Entity was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.EntityResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.EntityResource.Links">
            <summary>
            Nested resource URLs.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.Entity.CreateFactorOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Factor for the Entity
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.CreateFactorOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.CreateFactorOptions.PathIdentity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.CreateFactorOptions.Binding">
            <summary>
            A unique binding for this Factor
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.CreateFactorOptions.FriendlyName">
            <summary>
            The friendly name of this Factor
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.CreateFactorOptions.FactorType">
            <summary>
            The Type of this Factor
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.CreateFactorOptions.#ctor(System.String,System.String,System.String,System.String,Twilio.Rest.Authy.V1.Service.Entity.FactorResource.FactorTypesEnum)">
            <summary>
            Construct a new CreateFactorOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="binding"> A unique binding for this Factor </param>
            <param name="friendlyName"> The friendly name of this Factor </param>
            <param name="factorType"> The Type of this Factor </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.CreateFactorOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.Entity.DeleteFactorOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific Factor.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.DeleteFactorOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.DeleteFactorOptions.PathIdentity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.DeleteFactorOptions.PathSid">
            <summary>
            A string that uniquely identifies this Factor.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.DeleteFactorOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteFactorOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathSid"> A string that uniquely identifies this Factor. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.DeleteFactorOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.Entity.FetchFactorOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch a specific Factor.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FetchFactorOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FetchFactorOptions.PathIdentity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FetchFactorOptions.PathSid">
            <summary>
            A string that uniquely identifies this Factor.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FetchFactorOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchFactorOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathSid"> A string that uniquely identifies this Factor. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FetchFactorOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.Entity.ReadFactorOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Factors for an Entity.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.ReadFactorOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.ReadFactorOptions.PathIdentity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.ReadFactorOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadFactorOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.ReadFactorOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.Entity.UpdateFactorOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update a specific Factor. This endpoint can be used to Verify a Factor if passed an `AuthPayload` param.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.UpdateFactorOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.UpdateFactorOptions.PathIdentity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.UpdateFactorOptions.PathSid">
            <summary>
            A string that uniquely identifies this Factor.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.UpdateFactorOptions.AuthPayload">
            <summary>
            Optional payload to verify the Factor for the first time
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.UpdateFactorOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateFactorOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathSid"> A string that uniquely identifies this Factor. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.UpdateFactorOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Create(Twilio.Rest.Authy.V1.Service.Entity.CreateFactorOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Factor for the Entity
            </summary>
            <param name="options"> Create Factor parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.CreateAsync(Twilio.Rest.Authy.V1.Service.Entity.CreateFactorOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Factor for the Entity
            </summary>
            <param name="options"> Create Factor parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Create(System.String,System.String,System.String,System.String,Twilio.Rest.Authy.V1.Service.Entity.FactorResource.FactorTypesEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Factor for the Entity
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="binding"> A unique binding for this Factor </param>
            <param name="friendlyName"> The friendly name of this Factor </param>
            <param name="factorType"> The Type of this Factor </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Rest.Authy.V1.Service.Entity.FactorResource.FactorTypesEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Factor for the Entity
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="binding"> A unique binding for this Factor </param>
            <param name="friendlyName"> The friendly name of this Factor </param>
            <param name="factorType"> The Type of this Factor </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Delete(Twilio.Rest.Authy.V1.Service.Entity.DeleteFactorOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Factor.
            </summary>
            <param name="options"> Delete Factor parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.DeleteAsync(Twilio.Rest.Authy.V1.Service.Entity.DeleteFactorOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Factor.
            </summary>
            <param name="options"> Delete Factor parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Factor.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathSid"> A string that uniquely identifies this Factor. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Factor.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathSid"> A string that uniquely identifies this Factor. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Fetch(Twilio.Rest.Authy.V1.Service.Entity.FetchFactorOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Factor.
            </summary>
            <param name="options"> Fetch Factor parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.FetchAsync(Twilio.Rest.Authy.V1.Service.Entity.FetchFactorOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Factor.
            </summary>
            <param name="options"> Fetch Factor parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Factor.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathSid"> A string that uniquely identifies this Factor. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Factor.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathSid"> A string that uniquely identifies this Factor. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Read(Twilio.Rest.Authy.V1.Service.Entity.ReadFactorOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Factors for an Entity.
            </summary>
            <param name="options"> Read Factor parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.ReadAsync(Twilio.Rest.Authy.V1.Service.Entity.ReadFactorOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Factors for an Entity.
            </summary>
            <param name="options"> Read Factor parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Factors for an Entity.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Factors for an Entity.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.NextPage(Twilio.Base.Page{Twilio.Rest.Authy.V1.Service.Entity.FactorResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Authy.V1.Service.Entity.FactorResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Update(Twilio.Rest.Authy.V1.Service.Entity.UpdateFactorOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Factor. This endpoint can be used to Verify a Factor if passed an `AuthPayload` param.
            </summary>
            <param name="options"> Update Factor parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.UpdateAsync(Twilio.Rest.Authy.V1.Service.Entity.UpdateFactorOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Factor. This endpoint can be used to Verify a Factor if passed an `AuthPayload` param.
            </summary>
            <param name="options"> Update Factor parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Update(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Factor. This endpoint can be used to Verify a Factor if passed an `AuthPayload` param.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathSid"> A string that uniquely identifies this Factor. </param>
            <param name="authPayload"> Optional payload to verify the Factor for the first time </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.UpdateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Factor. This endpoint can be used to Verify a Factor if passed an `AuthPayload` param.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathSid"> A string that uniquely identifies this Factor. </param>
            <param name="authPayload"> Optional payload to verify the Factor for the first time </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Factor </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FactorResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FactorResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Sid">
            <summary>
            A string that uniquely identifies this Factor.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.ServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.EntitySid">
            <summary>
            Entity Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Identity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.DateCreated">
            <summary>
            The date this Factor was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.DateUpdated">
            <summary>
            The date this Factor was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.FriendlyName">
            <summary>
            A human readable description of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Status">
            <summary>
            The Status of this Factor
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.FactorType">
            <summary>
            The Type of this Factor
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.FactorStrength">
            <summary>
            The Strength of this Factor
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.FactorResource.Links">
            <summary>
            Nested resource URLs.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.Entity.Factor.CreateChallengeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Challenge for the Factor
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.CreateChallengeOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.CreateChallengeOptions.PathIdentity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.CreateChallengeOptions.PathFactorSid">
            <summary>
            Factor Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.CreateChallengeOptions.ExpirationDate">
            <summary>
            The future date in which this Challenge will expire
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.CreateChallengeOptions.Details">
            <summary>
            Public details provided to contextualize the Challenge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.CreateChallengeOptions.HiddenDetails">
            <summary>
            Hidden details provided to contextualize the Challenge
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.CreateChallengeOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateChallengeOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.CreateChallengeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.Entity.Factor.DeleteChallengeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific Challenge.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.DeleteChallengeOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.DeleteChallengeOptions.PathIdentity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.DeleteChallengeOptions.PathFactorSid">
            <summary>
            Factor Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.DeleteChallengeOptions.PathSid">
            <summary>
            A string that uniquely identifies this Challenge.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.DeleteChallengeOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteChallengeOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Challenge. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.DeleteChallengeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.Entity.Factor.FetchChallengeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch a specific Challenge.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.FetchChallengeOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.FetchChallengeOptions.PathIdentity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.FetchChallengeOptions.PathFactorSid">
            <summary>
            Factor Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.FetchChallengeOptions.PathSid">
            <summary>
            A string that uniquely identifies this Challenge, or `latest`.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.FetchChallengeOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new FetchChallengeOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Challenge, or `latest`. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.FetchChallengeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Authy.V1.Service.Entity.Factor.UpdateChallengeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Verify a specific Challenge.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.UpdateChallengeOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.UpdateChallengeOptions.PathIdentity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.UpdateChallengeOptions.PathFactorSid">
            <summary>
            Factor Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.UpdateChallengeOptions.PathSid">
            <summary>
            A string that uniquely identifies this Challenge, or `latest`.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.UpdateChallengeOptions.AuthPayload">
            <summary>
            Optional payload to verify the Challenge
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.UpdateChallengeOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateChallengeOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Challenge, or `latest`. </param>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.UpdateChallengeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Create(Twilio.Rest.Authy.V1.Service.Entity.Factor.CreateChallengeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Challenge for the Factor
            </summary>
            <param name="options"> Create Challenge parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.CreateAsync(Twilio.Rest.Authy.V1.Service.Entity.Factor.CreateChallengeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Challenge for the Factor
            </summary>
            <param name="options"> Create Challenge parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Create(System.String,System.String,System.String,System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Challenge for the Factor
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
            <param name="expirationDate"> The future date in which this Challenge will expire </param>
            <param name="details"> Public details provided to contextualize the Challenge </param>
            <param name="hiddenDetails"> Hidden details provided to contextualize the Challenge </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.CreateAsync(System.String,System.String,System.String,System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Challenge for the Factor
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
            <param name="expirationDate"> The future date in which this Challenge will expire </param>
            <param name="details"> Public details provided to contextualize the Challenge </param>
            <param name="hiddenDetails"> Hidden details provided to contextualize the Challenge </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Delete(Twilio.Rest.Authy.V1.Service.Entity.Factor.DeleteChallengeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Challenge.
            </summary>
            <param name="options"> Delete Challenge parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.DeleteAsync(Twilio.Rest.Authy.V1.Service.Entity.Factor.DeleteChallengeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Challenge.
            </summary>
            <param name="options"> Delete Challenge parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Delete(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Challenge.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Challenge. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.DeleteAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Challenge.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Challenge. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Fetch(Twilio.Rest.Authy.V1.Service.Entity.Factor.FetchChallengeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Challenge.
            </summary>
            <param name="options"> Fetch Challenge parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.FetchAsync(Twilio.Rest.Authy.V1.Service.Entity.Factor.FetchChallengeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Challenge.
            </summary>
            <param name="options"> Fetch Challenge parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Fetch(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Challenge.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Challenge, or `latest`. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.FetchAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Challenge.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Challenge, or `latest`. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Update(Twilio.Rest.Authy.V1.Service.Entity.Factor.UpdateChallengeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Verify a specific Challenge.
            </summary>
            <param name="options"> Update Challenge parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.UpdateAsync(Twilio.Rest.Authy.V1.Service.Entity.Factor.UpdateChallengeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Verify a specific Challenge.
            </summary>
            <param name="options"> Update Challenge parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Update(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Verify a specific Challenge.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Challenge, or `latest`. </param>
            <param name="authPayload"> Optional payload to verify the Challenge </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Verify a specific Challenge.
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="pathIdentity"> Unique identity of the Entity </param>
            <param name="pathFactorSid"> Factor Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Challenge, or `latest`. </param>
            <param name="authPayload"> Optional payload to verify the Challenge </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Challenge </returns>
        </member>
        <member name="M:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ChallengeResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ChallengeResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Sid">
            <summary>
            A string that uniquely identifies this Challenge.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.ServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.EntitySid">
            <summary>
            Entity Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Identity">
            <summary>
            Unique identity of the Entity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.FactorSid">
            <summary>
            Factor Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.DateCreated">
            <summary>
            The date this Challenge was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.DateUpdated">
            <summary>
            The date this Challenge was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.DateResponded">
            <summary>
            The date this Challenge was responded
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.ExpirationDate">
            <summary>
            The date this Challenge is expired
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Status">
            <summary>
            The Status of this Challenge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.RespondedReason">
            <summary>
            The Reason of this Challenge `status`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Details">
            <summary>
            Public details provided to contextualize the Challenge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.HiddenDetails">
            <summary>
            Hidden details provided to contextualize the Challenge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.FactorType">
            <summary>
            The Factor Type of this Challenge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.FactorStrength">
            <summary>
            The Factor Strength of this Challenge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Authy.V1.Service.Entity.Factor.ChallengeResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.FetchAssistantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchAssistantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.FetchAssistantOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.FetchAssistantOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchAssistantOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.FetchAssistantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.ReadAssistantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadAssistantOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.ReadAssistantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.CreateAssistantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateAssistantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.CreateAssistantOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.CreateAssistantOptions.LogQueries">
            <summary>
            Whether queries should be logged and kept after training
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.CreateAssistantOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.CreateAssistantOptions.CallbackUrl">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.CreateAssistantOptions.CallbackEvents">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.CreateAssistantOptions.StyleSheet">
            <summary>
            A JSON string that defines the Assistant's style sheet
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.CreateAssistantOptions.Defaults">
            <summary>
            A JSON object that defines the Assistant's default tasks for various scenarios
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.CreateAssistantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateAssistantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions.LogQueries">
            <summary>
            Whether queries should be logged and kept after training
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions.CallbackUrl">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions.CallbackEvents">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions.StyleSheet">
            <summary>
            A JSON string that defines the Assistant's style sheet
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions.Defaults">
            <summary>
            A JSON object that defines the Assistant's [default tasks](https://www.twilio.com/docs/autopilot/api/assistant/defaults) for various scenarios
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions.DevelopmentStage">
            <summary>
            A string describing the state of the assistant.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateAssistantOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.UpdateAssistantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.DeleteAssistantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteAssistantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.DeleteAssistantOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.DeleteAssistantOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteAssistantOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.DeleteAssistantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.Fetch(Twilio.Rest.Autopilot.V1.FetchAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.FetchAsync(Twilio.Rest.Autopilot.V1.FetchAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.Read(Twilio.Rest.Autopilot.V1.ReadAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.ReadAsync(Twilio.Rest.Autopilot.V1.ReadAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.NextPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.AssistantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.AssistantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.Create(Twilio.Rest.Autopilot.V1.CreateAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.CreateAsync(Twilio.Rest.Autopilot.V1.CreateAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.Create(System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.String,System.Object,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="logQueries"> Whether queries should be logged and kept after training </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the new resource </param>
            <param name="callbackUrl"> Reserved </param>
            <param name="callbackEvents"> Reserved </param>
            <param name="styleSheet"> A JSON string that defines the Assistant's style sheet </param>
            <param name="defaults"> A JSON object that defines the Assistant's default tasks for various scenarios </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.CreateAsync(System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.String,System.Object,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="logQueries"> Whether queries should be logged and kept after training </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the new resource </param>
            <param name="callbackUrl"> Reserved </param>
            <param name="callbackEvents"> Reserved </param>
            <param name="styleSheet"> A JSON string that defines the Assistant's style sheet </param>
            <param name="defaults"> A JSON object that defines the Assistant's default tasks for various scenarios </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.Update(Twilio.Rest.Autopilot.V1.UpdateAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.UpdateAsync(Twilio.Rest.Autopilot.V1.UpdateAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.Update(System.String,System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.String,System.Object,System.Object,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="logQueries"> Whether queries should be logged and kept after training </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="callbackUrl"> Reserved </param>
            <param name="callbackEvents"> Reserved </param>
            <param name="styleSheet"> A JSON string that defines the Assistant's style sheet </param>
            <param name="defaults"> A JSON object that defines the Assistant's [default
                           tasks](https://www.twilio.com/docs/autopilot/api/assistant/defaults) for various scenarios </param>
            <param name="developmentStage"> A string describing the state of the assistant. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.UpdateAsync(System.String,System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.String,System.Object,System.Object,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="logQueries"> Whether queries should be logged and kept after training </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="callbackUrl"> Reserved </param>
            <param name="callbackEvents"> Reserved </param>
            <param name="styleSheet"> A JSON string that defines the Assistant's style sheet </param>
            <param name="defaults"> A JSON object that defines the Assistant's [default
                           tasks](https://www.twilio.com/docs/autopilot/api/assistant/defaults) for various scenarios </param>
            <param name="developmentStage"> A string describing the state of the assistant. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.Delete(Twilio.Rest.Autopilot.V1.DeleteAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.DeleteAsync(Twilio.Rest.Autopilot.V1.DeleteAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.AssistantResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AssistantResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AssistantResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.LatestModelBuildSid">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.Links">
            <summary>
            A list of the URLs of the Assistant's related resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.LogQueries">
            <summary>
            Whether queries should be logged and kept after training
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.DevelopmentStage">
            <summary>
            A string describing the state of the assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.NeedsModelBuild">
            <summary>
            Whether model needs to be rebuilt
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.Url">
            <summary>
            The absolute URL of the Assistant resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.CallbackUrl">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.AssistantResource.CallbackEvents">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FetchDefaultsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchDefaultsOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchDefaultsOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchDefaultsOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchDefaultsOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchDefaultsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.UpdateDefaultsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateDefaultsOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateDefaultsOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateDefaultsOptions.Defaults">
            <summary>
            A JSON string that describes the default task links.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateDefaultsOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateDefaultsOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateDefaultsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.FetchDefaultsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Defaults parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Defaults </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.FetchDefaultsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Defaults parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Defaults </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Defaults </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Defaults </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.Update(Twilio.Rest.Autopilot.V1.Assistant.UpdateDefaultsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Defaults parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Defaults </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.UpdateAsync(Twilio.Rest.Autopilot.V1.Assistant.UpdateDefaultsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Defaults parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Defaults </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.Update(System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="defaults"> A JSON string that describes the default task links. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Defaults </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.UpdateAsync(System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="defaults"> A JSON string that describes the default task links. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Defaults </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DefaultsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DefaultsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.Url">
            <summary>
            The absolute URL of the Defaults resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DefaultsResource.Data">
            <summary>
            The JSON string that describes the default task links
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FetchDialogueOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchDialogueOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchDialogueOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchDialogueOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchDialogueOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchDialogueOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchDialogueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DialogueResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.FetchDialogueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Dialogue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Dialogue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DialogueResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.FetchDialogueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Dialogue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Dialogue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DialogueResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Dialogue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DialogueResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Dialogue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DialogueResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DialogueResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DialogueResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DialogueResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DialogueResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DialogueResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DialogueResource.Data">
            <summary>
            The JSON string that describes the dialogue session object
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DialogueResource.Url">
            <summary>
            The absolute URL of the Dialogue resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FetchFieldTypeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchFieldTypeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchFieldTypeOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchFieldTypeOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchFieldTypeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchFieldTypeOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchFieldTypeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.ReadFieldTypeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadFieldTypeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ReadFieldTypeOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant with the FieldType resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ReadFieldTypeOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadFieldTypeOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the FieldType resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ReadFieldTypeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.CreateFieldTypeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateFieldTypeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateFieldTypeOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateFieldTypeOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateFieldTypeOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.CreateFieldTypeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateFieldTypeOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the new resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.CreateFieldTypeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.UpdateFieldTypeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateFieldTypeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateFieldTypeOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant with the FieldType resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateFieldTypeOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateFieldTypeOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateFieldTypeOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateFieldTypeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateFieldTypeOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the FieldType resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateFieldTypeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.DeleteFieldTypeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteFieldTypeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DeleteFieldTypeOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant with the FieldType resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DeleteFieldTypeOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DeleteFieldTypeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteFieldTypeOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the FieldType resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DeleteFieldTypeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.FetchFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.FetchFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Read(Twilio.Rest.Autopilot.V1.Assistant.ReadFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.ReadAsync(Twilio.Rest.Autopilot.V1.Assistant.ReadFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the FieldType resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the FieldType resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.NextPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Create(Twilio.Rest.Autopilot.V1.Assistant.CreateFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.CreateAsync(Twilio.Rest.Autopilot.V1.Assistant.CreateFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the new resource </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the new resource </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Update(Twilio.Rest.Autopilot.V1.Assistant.UpdateFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.UpdateAsync(Twilio.Rest.Autopilot.V1.Assistant.UpdateFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Update(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the FieldType resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.UpdateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the FieldType resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Delete(Twilio.Rest.Autopilot.V1.Assistant.DeleteFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.DeleteAsync(Twilio.Rest.Autopilot.V1.Assistant.DeleteFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the FieldType resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the FieldType resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FieldTypeResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FieldTypeResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Links">
            <summary>
            A list of the URLs of related resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldTypeResource.Url">
            <summary>
            The absolute URL of the FieldType resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FetchFieldValueOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchFieldValueOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FetchFieldValueOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the FieldType associated with the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FetchFieldValueOptions.PathFieldTypeSid">
            <summary>
            The SID of the Field Type associated with  the Field Value to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FetchFieldValueOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FetchFieldValueOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchFieldValueOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   resource to fetch </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with  the Field Value to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FetchFieldValueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FieldType.ReadFieldValueOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadFieldValueOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.ReadFieldValueOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the FieldType associated with the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.ReadFieldValueOptions.PathFieldTypeSid">
            <summary>
            The SID of the Field Type associated with the Field Value to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.ReadFieldValueOptions.Language">
            <summary>
            The ISO language-country tag that identifies the language of the value
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.ReadFieldValueOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadFieldValueOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   resources to read </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with the Field Value to read </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.ReadFieldValueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FieldType.CreateFieldValueOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateFieldValueOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.CreateFieldValueOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the FieldType associated with the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.CreateFieldValueOptions.PathFieldTypeSid">
            <summary>
            The SID of the Field Type associated with the Field Value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.CreateFieldValueOptions.Language">
            <summary>
            The ISO language-country tag that identifies the language of the value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.CreateFieldValueOptions.Value">
            <summary>
            The Field Value data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.CreateFieldValueOptions.SynonymOf">
            <summary>
            The string value that indicates which word the field value is a synonym of
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.CreateFieldValueOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new CreateFieldValueOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   new resource </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with the Field Value </param>
            <param name="language"> The ISO language-country tag that identifies the language of the value </param>
            <param name="value"> The Field Value data </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.CreateFieldValueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FieldType.DeleteFieldValueOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteFieldValueOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.DeleteFieldValueOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the FieldType associated with the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.DeleteFieldValueOptions.PathFieldTypeSid">
            <summary>
            The SID of the Field Type associated with the Field Value to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.DeleteFieldValueOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.DeleteFieldValueOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteFieldValueOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   resources to delete </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with the Field Value to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.DeleteFieldValueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.FieldType.FetchFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.FieldType.FetchFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   resource to fetch </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with  the Field Value to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   resource to fetch </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with  the Field Value to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Read(Twilio.Rest.Autopilot.V1.Assistant.FieldType.ReadFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.ReadAsync(Twilio.Rest.Autopilot.V1.Assistant.FieldType.ReadFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Read(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   resources to read </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with the Field Value to read </param>
            <param name="language"> The ISO language-country tag that identifies the language of the value </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.ReadAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   resources to read </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with the Field Value to read </param>
            <param name="language"> The ISO language-country tag that identifies the language of the value </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.NextPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Create(Twilio.Rest.Autopilot.V1.Assistant.FieldType.CreateFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.CreateAsync(Twilio.Rest.Autopilot.V1.Assistant.FieldType.CreateFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   new resource </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with the Field Value </param>
            <param name="language"> The ISO language-country tag that identifies the language of the value </param>
            <param name="value"> The Field Value data </param>
            <param name="synonymOf"> The string value that indicates which word the field value is a synonym of </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   new resource </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with the Field Value </param>
            <param name="language"> The ISO language-country tag that identifies the language of the value </param>
            <param name="value"> The Field Value data </param>
            <param name="synonymOf"> The string value that indicates which word the field value is a synonym of </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Delete(Twilio.Rest.Autopilot.V1.Assistant.FieldType.DeleteFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.DeleteAsync(Twilio.Rest.Autopilot.V1.Assistant.FieldType.DeleteFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   resources to delete </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with the Field Value to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the FieldType associated with the
                                   resources to delete </param>
            <param name="pathFieldTypeSid"> The SID of the Field Type associated with the Field Value to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FieldValueResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FieldValueResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.FieldTypeSid">
            <summary>
            The SID of the Field Type associated with the Field Value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Language">
            <summary>
            The ISO language-country tag that identifies the language of the value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the FieldType associated with the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Value">
            <summary>
            The Field Value data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.Url">
            <summary>
            The absolute URL of the FieldValue resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FieldType.FieldValueResource.SynonymOf">
            <summary>
            The word for which the field value is a synonym of
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FetchModelBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchModelBuildOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchModelBuildOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchModelBuildOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchModelBuildOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchModelBuildOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchModelBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.ReadModelBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadModelBuildOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ReadModelBuildOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ReadModelBuildOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadModelBuildOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ReadModelBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.CreateModelBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateModelBuildOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateModelBuildOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateModelBuildOptions.StatusCallback">
            <summary>
            The URL we should call using a POST method to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateModelBuildOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the new resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.CreateModelBuildOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateModelBuildOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.CreateModelBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.UpdateModelBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateModelBuildOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateModelBuildOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateModelBuildOptions.PathSid">
            <summary>
            The unique string that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateModelBuildOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateModelBuildOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateModelBuildOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateModelBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.DeleteModelBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteModelBuildOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DeleteModelBuildOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DeleteModelBuildOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DeleteModelBuildOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteModelBuildOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DeleteModelBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.FetchModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.FetchModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Read(Twilio.Rest.Autopilot.V1.Assistant.ReadModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.ReadAsync(Twilio.Rest.Autopilot.V1.Assistant.ReadModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.NextPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Create(Twilio.Rest.Autopilot.V1.Assistant.CreateModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.CreateAsync(Twilio.Rest.Autopilot.V1.Assistant.CreateModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Create(System.String,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="statusCallback"> The URL we should call using a POST method to send status information to your
                                 application </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.CreateAsync(System.String,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="statusCallback"> The URL we should call using a POST method to send status information to your
                                 application </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Update(Twilio.Rest.Autopilot.V1.Assistant.UpdateModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.UpdateAsync(Twilio.Rest.Autopilot.V1.Assistant.UpdateModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource to update </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource to update </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Delete(Twilio.Rest.Autopilot.V1.Assistant.DeleteModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.DeleteAsync(Twilio.Rest.Autopilot.V1.Assistant.DeleteModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ModelBuildResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ModelBuildResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Status">
            <summary>
            The status of the model build process
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.Url">
            <summary>
            The absolute URL of the ModelBuild resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.BuildDuration">
            <summary>
            The time in seconds it took to build the model
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ModelBuildResource.ErrorCode">
            <summary>
            More information about why the model build failed, if `status` is `failed`
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FetchQueryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchQueryOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchQueryOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchQueryOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchQueryOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchQueryOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchQueryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.ReadQueryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadQueryOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ReadQueryOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ReadQueryOptions.Language">
            <summary>
            The ISO language-country string that specifies the language used by the Query resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ReadQueryOptions.ModelBuild">
            <summary>
            The SID or unique name of the Model Build to be queried
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ReadQueryOptions.Status">
            <summary>
            The status of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ReadQueryOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadQueryOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ReadQueryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.CreateQueryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateQueryOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateQueryOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateQueryOptions.Language">
            <summary>
            The ISO language-country string that specifies the language used for the new query
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateQueryOptions.Query">
            <summary>
            The end-user's natural language input
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateQueryOptions.Tasks">
            <summary>
            The list of tasks to limit the new query to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateQueryOptions.ModelBuild">
            <summary>
            The SID or unique name of the Model Build to be queried
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.CreateQueryOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateQueryOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="language"> The ISO language-country string that specifies the language used for the new query </param>
            <param name="query"> The end-user's natural language input </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.CreateQueryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.UpdateQueryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateQueryOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateQueryOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateQueryOptions.PathSid">
            <summary>
            The unique string that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateQueryOptions.SampleSid">
            <summary>
            The SID of an optional reference to the Sample created from the query
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateQueryOptions.Status">
            <summary>
            The new status of the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateQueryOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateQueryOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateQueryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.DeleteQueryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteQueryOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DeleteQueryOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DeleteQueryOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DeleteQueryOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteQueryOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DeleteQueryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.FetchQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.FetchQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Read(Twilio.Rest.Autopilot.V1.Assistant.ReadQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.ReadAsync(Twilio.Rest.Autopilot.V1.Assistant.ReadQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Read(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
            <param name="language"> The ISO language-country string that specifies the language used by the Query resources to
                           read </param>
            <param name="modelBuild"> The SID or unique name of the Model Build to be queried </param>
            <param name="status"> The status of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.ReadAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
            <param name="language"> The ISO language-country string that specifies the language used by the Query resources to
                           read </param>
            <param name="modelBuild"> The SID or unique name of the Model Build to be queried </param>
            <param name="status"> The status of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.NextPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.QueryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.QueryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Create(Twilio.Rest.Autopilot.V1.Assistant.CreateQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.CreateAsync(Twilio.Rest.Autopilot.V1.Assistant.CreateQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="language"> The ISO language-country string that specifies the language used for the new query </param>
            <param name="query"> The end-user's natural language input </param>
            <param name="tasks"> The list of tasks to limit the new query to </param>
            <param name="modelBuild"> The SID or unique name of the Model Build to be queried </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="language"> The ISO language-country string that specifies the language used for the new query </param>
            <param name="query"> The end-user's natural language input </param>
            <param name="tasks"> The list of tasks to limit the new query to </param>
            <param name="modelBuild"> The SID or unique name of the Model Build to be queried </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Update(Twilio.Rest.Autopilot.V1.Assistant.UpdateQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.UpdateAsync(Twilio.Rest.Autopilot.V1.Assistant.UpdateQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Update(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource to update </param>
            <param name="sampleSid"> The SID of an optional reference to the Sample created from the query </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.UpdateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource to update </param>
            <param name="sampleSid"> The SID of an optional reference to the Sample created from the query </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Delete(Twilio.Rest.Autopilot.V1.Assistant.DeleteQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.DeleteAsync(Twilio.Rest.Autopilot.V1.Assistant.DeleteQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a QueryResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> QueryResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Results">
            <summary>
            The natural language analysis results that include the Task recognized, the confidence score, and a list of identified Fields
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Language">
            <summary>
            The ISO language-country string that specifies the language used by the Query
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.ModelBuildSid">
            <summary>
            The SID of the [Model Build](https://www.twilio.com/docs/autopilot/api/model-build) queried
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Query">
            <summary>
            The end-user's natural language input
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.SampleSid">
            <summary>
            The SID of an optional reference to the Sample created from the query
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Status">
            <summary>
            The status of the Query
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.Url">
            <summary>
            The absolute URL of the Query resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.QueryResource.SourceChannel">
            <summary>
            The communication channel from where the end-user input came
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FetchStyleSheetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Returns Style sheet JSON object for the Assistant
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchStyleSheetOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant with the StyleSheet resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchStyleSheetOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchStyleSheetOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the StyleSheet resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchStyleSheetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.UpdateStyleSheetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Updates the style sheet for an Assistant identified by `assistant_sid`.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateStyleSheetOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant with the StyleSheet resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateStyleSheetOptions.StyleSheet">
            <summary>
            The JSON string that describes the style sheet object
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateStyleSheetOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateStyleSheetOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the StyleSheet resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateStyleSheetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.FetchStyleSheetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns Style sheet JSON object for the Assistant
            </summary>
            <param name="options"> Fetch StyleSheet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.FetchStyleSheetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns Style sheet JSON object for the Assistant
            </summary>
            <param name="options"> Fetch StyleSheet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns Style sheet JSON object for the Assistant
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the StyleSheet resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns Style sheet JSON object for the Assistant
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the StyleSheet resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.Update(Twilio.Rest.Autopilot.V1.Assistant.UpdateStyleSheetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the style sheet for an Assistant identified by `assistant_sid`.
            </summary>
            <param name="options"> Update StyleSheet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.UpdateAsync(Twilio.Rest.Autopilot.V1.Assistant.UpdateStyleSheetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the style sheet for an Assistant identified by `assistant_sid`.
            </summary>
            <param name="options"> Update StyleSheet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.Update(System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the style sheet for an Assistant identified by `assistant_sid`.
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the StyleSheet resource to update </param>
            <param name="styleSheet"> The JSON string that describes the style sheet object </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.UpdateAsync(System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the style sheet for an Assistant identified by `assistant_sid`.
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant with the StyleSheet resource to update </param>
            <param name="styleSheet"> The JSON string that describes the style sheet object </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a StyleSheetResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> StyleSheetResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.Url">
            <summary>
            The absolute URL of the StyleSheet resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.StyleSheetResource.Data">
            <summary>
            The JSON string that describes the style sheet object
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FetchTaskOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchTaskOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchTaskOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchTaskOptions.PathSid">
            <summary>
            The unique string that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchTaskOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.ReadTaskOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadTaskOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ReadTaskOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ReadTaskOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadTaskOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ReadTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.CreateTaskOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateTaskOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateTaskOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateTaskOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateTaskOptions.FriendlyName">
            <summary>
             descriptive string that you create to describe the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateTaskOptions.Actions">
            <summary>
            The JSON string that specifies the actions that instruct the Assistant on how to perform the task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateTaskOptions.ActionsUrl">
            <summary>
            The URL from which the Assistant can fetch actions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.CreateTaskOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateTaskOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.CreateTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.UpdateTaskOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateTaskOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateTaskOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateTaskOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateTaskOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateTaskOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateTaskOptions.Actions">
            <summary>
            The JSON string that specifies the actions that instruct the Assistant on how to perform the task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateTaskOptions.ActionsUrl">
            <summary>
            The URL from which the Assistant can fetch actions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateTaskOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateTaskOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.DeleteTaskOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteTaskOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DeleteTaskOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DeleteTaskOptions.PathSid">
            <summary>
            The unique string that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DeleteTaskOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteTaskOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DeleteTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.FetchTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.FetchTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Read(Twilio.Rest.Autopilot.V1.Assistant.ReadTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.ReadAsync(Twilio.Rest.Autopilot.V1.Assistant.ReadTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.NextPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.TaskResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.TaskResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Create(Twilio.Rest.Autopilot.V1.Assistant.CreateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.CreateAsync(Twilio.Rest.Autopilot.V1.Assistant.CreateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Create(System.String,System.String,System.String,System.Object,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="friendlyName">  descriptive string that you create to describe the new resource </param>
            <param name="actions"> The JSON string that specifies the actions that instruct the Assistant on how to perform the
                          task </param>
            <param name="actionsUrl"> The URL from which the Assistant can fetch actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.CreateAsync(System.String,System.String,System.String,System.Object,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="friendlyName">  descriptive string that you create to describe the new resource </param>
            <param name="actions"> The JSON string that specifies the actions that instruct the Assistant on how to perform the
                          task </param>
            <param name="actionsUrl"> The URL from which the Assistant can fetch actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Update(Twilio.Rest.Autopilot.V1.Assistant.UpdateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.UpdateAsync(Twilio.Rest.Autopilot.V1.Assistant.UpdateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Update(System.String,System.String,System.String,System.String,System.Object,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="actions"> The JSON string that specifies the actions that instruct the Assistant on how to perform the
                          task </param>
            <param name="actionsUrl"> The URL from which the Assistant can fetch actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Object,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="actions"> The JSON string that specifies the actions that instruct the Assistant on how to perform the
                          task </param>
            <param name="actionsUrl"> The URL from which the Assistant can fetch actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Delete(Twilio.Rest.Autopilot.V1.Assistant.DeleteTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.DeleteAsync(Twilio.Rest.Autopilot.V1.Assistant.DeleteTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Links">
            <summary>
            A list of the URLs of related resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.ActionsUrl">
            <summary>
            The URL from which the Assistant can fetch actions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.TaskResource.Url">
            <summary>
            The absolute URL of the Task resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchFieldOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchFieldOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchFieldOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchFieldOptions.PathTaskSid">
            <summary>
            The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource associated with the Field resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchFieldOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchFieldOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchFieldOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resource to fetch </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the Field resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchFieldOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.ReadFieldOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadFieldOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.ReadFieldOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the resources to read.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.ReadFieldOptions.PathTaskSid">
            <summary>
            The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource associated with the Field resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.ReadFieldOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadFieldOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to read. </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the Field resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.ReadFieldOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateFieldOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateFieldOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateFieldOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateFieldOptions.PathTaskSid">
            <summary>
            The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource associated with the new Field resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateFieldOptions.FieldType">
            <summary>
            The Field Type of this field
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateFieldOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the new resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateFieldOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new CreateFieldOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the new
                                   resource </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the new Field resource </param>
            <param name="fieldType"> The Field Type of this field </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the new resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateFieldOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteFieldOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteFieldOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteFieldOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteFieldOptions.PathTaskSid">
            <summary>
            The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource associated with the Field resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteFieldOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteFieldOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteFieldOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to delete </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the Field resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteFieldOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.Task.FetchFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.FetchFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resource to fetch </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the Field resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resource to fetch </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the Field resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.Read(Twilio.Rest.Autopilot.V1.Assistant.Task.ReadFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.ReadAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.ReadFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to read. </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the Field resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to read. </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the Field resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.NextPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.Create(Twilio.Rest.Autopilot.V1.Assistant.Task.CreateFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.CreateAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.CreateFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the new
                                   resource </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the new Field resource </param>
            <param name="fieldType"> The Field Type of this field </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the new
                                   resource </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the new Field resource </param>
            <param name="fieldType"> The Field Type of this field </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.Delete(Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.DeleteAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to delete </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the Field resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to delete </param>
            <param name="pathTaskSid"> The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource
                              associated with the Field resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FieldResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FieldResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.FieldType">
            <summary>
            The Field Type of the field
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.TaskSid">
            <summary>
            The SID of the [Task](https://www.twilio.com/docs/autopilot/api/task) resource associated with this Field
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FieldResource.Url">
            <summary>
            The absolute URL of the Field resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchSampleOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchSampleOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchSampleOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchSampleOptions.PathTaskSid">
            <summary>
            The SID of the Task associated with the Sample resource to create
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchSampleOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchSampleOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchSampleOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resource to fetch </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to create </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchSampleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.ReadSampleOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadSampleOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.ReadSampleOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.ReadSampleOptions.PathTaskSid">
            <summary>
            The SID of the Task associated with the Sample resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.ReadSampleOptions.Language">
            <summary>
            The ISO language-country string that specifies the language used for the sample
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.ReadSampleOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadSampleOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to read </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.ReadSampleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateSampleOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateSampleOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateSampleOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateSampleOptions.PathTaskSid">
            <summary>
            The SID of the Task associated with the Sample resource to create
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateSampleOptions.Language">
            <summary>
            The ISO language-country string that specifies the language used for the new sample
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateSampleOptions.TaggedText">
            <summary>
            The text example of how end users might express the task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateSampleOptions.SourceChannel">
            <summary>
            The communication channel from which the new sample was captured
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateSampleOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new CreateSampleOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the new
                                   resource </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to create </param>
            <param name="language"> The ISO language-country string that specifies the language used for the new sample </param>
            <param name="taggedText"> The text example of how end users might express the task </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.CreateSampleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateSampleOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateSampleOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateSampleOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateSampleOptions.PathTaskSid">
            <summary>
            The SID of the Task associated with the Sample resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateSampleOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateSampleOptions.Language">
            <summary>
            The ISO language-country string that specifies the language used for the sample
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateSampleOptions.TaggedText">
            <summary>
            The text example of how end users might express the task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateSampleOptions.SourceChannel">
            <summary>
            The communication channel from which the sample was captured
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateSampleOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateSampleOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resource to update </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateSampleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteSampleOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteSampleOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteSampleOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteSampleOptions.PathTaskSid">
            <summary>
            The SID of the Task associated with the Sample resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteSampleOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteSampleOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteSampleOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to delete </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteSampleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.Task.FetchSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.FetchSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resource to fetch </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to create </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resource to fetch </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to create </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Read(Twilio.Rest.Autopilot.V1.Assistant.Task.ReadSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.ReadAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.ReadSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Read(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to read </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resources to read </param>
            <param name="language"> The ISO language-country string that specifies the language used for the sample </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.ReadAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to read </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resources to read </param>
            <param name="language"> The ISO language-country string that specifies the language used for the sample </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.NextPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Create(Twilio.Rest.Autopilot.V1.Assistant.Task.CreateSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.CreateAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.CreateSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the new
                                   resource </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to create </param>
            <param name="language"> The ISO language-country string that specifies the language used for the new sample </param>
            <param name="taggedText"> The text example of how end users might express the task </param>
            <param name="sourceChannel"> The communication channel from which the new sample was captured </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the new
                                   resource </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to create </param>
            <param name="language"> The ISO language-country string that specifies the language used for the new sample </param>
            <param name="taggedText"> The text example of how end users might express the task </param>
            <param name="sourceChannel"> The communication channel from which the new sample was captured </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Update(Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.UpdateAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Update(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resource to update </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="language"> The ISO language-country string that specifies the language used for the sample </param>
            <param name="taggedText"> The text example of how end users might express the task </param>
            <param name="sourceChannel"> The communication channel from which the sample was captured </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resource to update </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="language"> The ISO language-country string that specifies the language used for the sample </param>
            <param name="taggedText"> The text example of how end users might express the task </param>
            <param name="sourceChannel"> The communication channel from which the sample was captured </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Delete(Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.DeleteAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.DeleteSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to delete </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
                                   resources to delete </param>
            <param name="pathTaskSid"> The SID of the Task associated with the Sample resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SampleResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SampleResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.TaskSid">
            <summary>
            The SID of the Task associated with the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Language">
            <summary>
            An ISO language-country string that specifies the language used for the sample
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.TaggedText">
            <summary>
            The text example of how end users might express the task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.Url">
            <summary>
            The absolute URL of the Sample resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.SampleResource.SourceChannel">
            <summary>
            The communication channel from which the sample was captured
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskActionsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Returns JSON actions for the Task.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskActionsOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task for which the task actions to fetch were defined
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskActionsOptions.PathTaskSid">
            <summary>
            The SID of the Task for which the task actions to fetch were defined
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskActionsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskActionsOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task for which the task actions
                                   to fetch were defined </param>
            <param name="pathTaskSid"> The SID of the Task for which the task actions to fetch were defined </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskActionsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateTaskActionsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Updates the actions of an Task identified by {TaskSid} or {TaskUniqueName}.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateTaskActionsOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task for which the task actions to update were defined
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateTaskActionsOptions.PathTaskSid">
            <summary>
            The SID of the Task for which the task actions to update were defined
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateTaskActionsOptions.Actions">
            <summary>
            The JSON string that specifies the actions that instruct the Assistant on how to perform the task
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateTaskActionsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateTaskActionsOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task for which the task actions
                                   to update were defined </param>
            <param name="pathTaskSid"> The SID of the Task for which the task actions to update were defined </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateTaskActionsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns JSON actions for the Task.
            </summary>
            <param name="options"> Fetch TaskActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns JSON actions for the Task.
            </summary>
            <param name="options"> Fetch TaskActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns JSON actions for the Task.
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task for which the task actions
                                   to fetch were defined </param>
            <param name="pathTaskSid"> The SID of the Task for which the task actions to fetch were defined </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns JSON actions for the Task.
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task for which the task actions
                                   to fetch were defined </param>
            <param name="pathTaskSid"> The SID of the Task for which the task actions to fetch were defined </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.Update(Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateTaskActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the actions of an Task identified by {TaskSid} or {TaskUniqueName}.
            </summary>
            <param name="options"> Update TaskActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.UpdateAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.UpdateTaskActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the actions of an Task identified by {TaskSid} or {TaskUniqueName}.
            </summary>
            <param name="options"> Update TaskActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.Update(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the actions of an Task identified by {TaskSid} or {TaskUniqueName}.
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task for which the task actions
                                   to update were defined </param>
            <param name="pathTaskSid"> The SID of the Task for which the task actions to update were defined </param>
            <param name="actions"> The JSON string that specifies the actions that instruct the Assistant on how to perform the
                          task </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.UpdateAsync(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the actions of an Task identified by {TaskSid} or {TaskUniqueName}.
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task for which the task actions
                                   to update were defined </param>
            <param name="pathTaskSid"> The SID of the Task for which the task actions to update were defined </param>
            <param name="actions"> The JSON string that specifies the actions that instruct the Assistant on how to perform the
                          task </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskActionsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskActionsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.TaskSid">
            <summary>
            The SID of the Task associated with the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.Url">
            <summary>
            The absolute URL of the TaskActions resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskActionsResource.Data">
            <summary>
            The JSON string that specifies the actions that instruct the Assistant on how to perform the task
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskStatisticsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchTaskStatisticsOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskStatisticsOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskStatisticsOptions.PathTaskSid">
            <summary>
            The SID of the Task that is associated with the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskStatisticsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskStatisticsOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathTaskSid"> The SID of the Task that is associated with the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskStatisticsResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskStatisticsResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.Task.FetchTaskStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskStatisticsResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathTaskSid"> The SID of the Task that is associated with the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskStatisticsResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathTaskSid"> The SID of the Task that is associated with the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskStatisticsResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the Task associated with the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskStatisticsResource.TaskSid">
            <summary>
            The SID of the Task for which the statistics were collected
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskStatisticsResource.SamplesCount">
            <summary>
            The total number of Samples associated with the Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskStatisticsResource.FieldsCount">
            <summary>
            The total number of Fields associated with the Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.Task.TaskStatisticsResource.Url">
            <summary>
            The absolute URL of the TaskStatistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.FetchWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchWebhookOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.FetchWebhookOptions.PathSid">
            <summary>
            The unique string that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchWebhookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchWebhookOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.FetchWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.ReadWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.ReadWebhookOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ReadWebhookOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadWebhookOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.ReadWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.CreateWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateWebhookOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateWebhookOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateWebhookOptions.Events">
            <summary>
            The list of space-separated events that this Webhook will subscribe to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateWebhookOptions.WebhookUrl">
            <summary>
            The URL associated with this Webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.CreateWebhookOptions.WebhookMethod">
            <summary>
            The method to be used when calling the webhook's URL.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.CreateWebhookOptions.#ctor(System.String,System.String,System.String,System.Uri)">
            <summary>
            Construct a new CreateWebhookOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="events"> The list of space-separated events that this Webhook will subscribe to. </param>
            <param name="webhookUrl"> The URL associated with this Webhook. </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.CreateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.UpdateWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateWebhookOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateWebhookOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateWebhookOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateWebhookOptions.Events">
            <summary>
            The list of space-separated events that this Webhook will subscribe to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateWebhookOptions.WebhookUrl">
            <summary>
            The URL associated with this Webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.UpdateWebhookOptions.WebhookMethod">
            <summary>
            The method to be used when calling the webhook's URL.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateWebhookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateWebhookOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.UpdateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Autopilot.V1.Assistant.DeleteWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DeleteWebhookOptions.PathAssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.DeleteWebhookOptions.PathSid">
            <summary>
            The unique string that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DeleteWebhookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteWebhookOptions
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.DeleteWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Fetch(Twilio.Rest.Autopilot.V1.Assistant.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.FetchAsync(Twilio.Rest.Autopilot.V1.Assistant.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Read(Twilio.Rest.Autopilot.V1.Assistant.ReadWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.ReadAsync(Twilio.Rest.Autopilot.V1.Assistant.ReadWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.NextPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.WebhookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Autopilot.V1.Assistant.WebhookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Create(Twilio.Rest.Autopilot.V1.Assistant.CreateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.CreateAsync(Twilio.Rest.Autopilot.V1.Assistant.CreateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Create(System.String,System.String,System.String,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="events"> The list of space-separated events that this Webhook will subscribe to. </param>
            <param name="webhookUrl"> The URL associated with this Webhook. </param>
            <param name="webhookMethod"> The method to be used when calling the webhook's URL. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.CreateAsync(System.String,System.String,System.String,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="events"> The list of space-separated events that this Webhook will subscribe to. </param>
            <param name="webhookUrl"> The URL associated with this Webhook. </param>
            <param name="webhookMethod"> The method to be used when calling the webhook's URL. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Update(Twilio.Rest.Autopilot.V1.Assistant.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.UpdateAsync(Twilio.Rest.Autopilot.V1.Assistant.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Update(System.String,System.String,System.String,System.String,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="events"> The list of space-separated events that this Webhook will subscribe to. </param>
            <param name="webhookUrl"> The URL associated with this Webhook. </param>
            <param name="webhookMethod"> The method to be used when calling the webhook's URL. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="events"> The list of space-separated events that this Webhook will subscribe to. </param>
            <param name="webhookUrl"> The URL associated with this Webhook. </param>
            <param name="webhookMethod"> The method to be used when calling the webhook's URL. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Delete(Twilio.Rest.Autopilot.V1.Assistant.DeleteWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.DeleteAsync(Twilio.Rest.Autopilot.V1.Assistant.DeleteWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to delete </param>
            <param name="pathSid"> The unique string that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WebhookResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WebhookResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Url">
            <summary>
            The absolute URL of the Webhook resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.AssistantSid">
            <summary>
            The SID of the Assistant that is the parent of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.Events">
            <summary>
            The list of space-separated events that this Webhook is subscribed to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.WebhookUrl">
            <summary>
            The URL associated with this Webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Autopilot.V1.Assistant.WebhookResource.WebhookMethod">
            <summary>
            The method used when calling the webhook's URL.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.ReadCredentialOptions">
            <summary>
            ReadCredentialOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ReadCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.CreateCredentialOptions">
            <summary>
            CreateCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CreateCredentialOptions.Type">
            <summary>
            The type of push-notification service the credential is for
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CreateCredentialOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CreateCredentialOptions.Certificate">
            <summary>
            [APN only] The URL encoded representation of the certificate
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CreateCredentialOptions.PrivateKey">
            <summary>
            [APN only] The URL encoded representation of the private key
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CreateCredentialOptions.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CreateCredentialOptions.ApiKey">
            <summary>
            [GCM only] The API key for the project that was obtained from the Google Developer console for your GCM Service application credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CreateCredentialOptions.Secret">
            <summary>
            [FCM only] The Server key of your project from Firebase console
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CreateCredentialOptions.#ctor(Twilio.Rest.Chat.V1.CredentialResource.PushServiceEnum)">
            <summary>
            Construct a new CreateCredentialOptions
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CreateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.FetchCredentialOptions">
            <summary>
            FetchCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.FetchCredentialOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.FetchCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCredentialOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.FetchCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.UpdateCredentialOptions">
            <summary>
            UpdateCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateCredentialOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateCredentialOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateCredentialOptions.Certificate">
            <summary>
            [APN only] The URL encoded representation of the certificate
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateCredentialOptions.PrivateKey">
            <summary>
            [APN only] The URL encoded representation of the private key
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateCredentialOptions.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateCredentialOptions.ApiKey">
            <summary>
            [GCM only] The API key for the project that was obtained from the Google Developer console for your GCM Service application credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateCredentialOptions.Secret">
            <summary>
            [FCM only] The Server key of your project from Firebase console
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.UpdateCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateCredentialOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.UpdateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.DeleteCredentialOptions">
            <summary>
            DeleteCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.DeleteCredentialOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.DeleteCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteCredentialOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.DeleteCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.Read(Twilio.Rest.Chat.V1.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.ReadAsync(Twilio.Rest.Chat.V1.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.Create(Twilio.Rest.Chat.V1.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.CreateAsync(Twilio.Rest.Chat.V1.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.Create(Twilio.Rest.Chat.V1.CredentialResource.PushServiceEnum,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.CreateAsync(Twilio.Rest.Chat.V1.CredentialResource.PushServiceEnum,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.Fetch(Twilio.Rest.Chat.V1.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.FetchAsync(Twilio.Rest.Chat.V1.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.Update(Twilio.Rest.Chat.V1.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.UpdateAsync(Twilio.Rest.Chat.V1.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.Update(System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.Delete(Twilio.Rest.Chat.V1.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.DeleteAsync(Twilio.Rest.Chat.V1.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CredentialResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CredentialResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CredentialResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CredentialResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CredentialResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CredentialResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CredentialResource.Type">
            <summary>
            The type of push-notification service the credential is for
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CredentialResource.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CredentialResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CredentialResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CredentialResource.Url">
            <summary>
            The absolute URL of the Credential resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.FetchServiceOptions">
            <summary>
            FetchServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.FetchServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.DeleteServiceOptions">
            <summary>
            DeleteServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.DeleteServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.CreateServiceOptions">
            <summary>
            CreateServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.CreateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CreateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateServiceOptions
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.ReadServiceOptions">
            <summary>
            ReadServiceOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.UpdateServiceOptions">
            <summary>
            UpdateServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.DefaultServiceRoleSid">
            <summary>
            The service role assigned to users when they are added to the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.DefaultChannelRoleSid">
            <summary>
            The channel role assigned to users when they are added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.DefaultChannelCreatorRoleSid">
            <summary>
            The channel role assigned to a channel creator when they join a new channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.ReadStatusEnabled">
            <summary>
            Whether to enable the Message Consumption Horizon feature
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.ReachabilityEnabled">
            <summary>
            Whether to enable the Reachability Indicator feature for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.TypingIndicatorTimeout">
            <summary>
            How long in seconds to wait before assuming the user is no longer typing
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.ConsumptionReportInterval">
            <summary>
            DEPRECATED
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.NotificationsNewMessageEnabled">
            <summary>
            Whether to send a notification when a new message is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.NotificationsNewMessageTemplate">
            <summary>
            The template to use to create the notification text displayed when a new message is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.NotificationsAddedToChannelEnabled">
            <summary>
            Whether to send a notification when a member is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.NotificationsAddedToChannelTemplate">
            <summary>
            The template to use to create the notification text displayed when a member is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.NotificationsRemovedFromChannelEnabled">
            <summary>
            Whether to send a notification to a user when they are removed from a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.NotificationsRemovedFromChannelTemplate">
            <summary>
            The template to use to create the notification text displayed to a user when they are removed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.NotificationsInvitedToChannelEnabled">
            <summary>
            Whether to send a notification when a user is invited to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.NotificationsInvitedToChannelTemplate">
            <summary>
            The template to use to create the notification text displayed when a user is invited to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.PreWebhookUrl">
            <summary>
            The webhook URL for pre-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.PostWebhookUrl">
            <summary>
            The URL for post-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhookMethod">
            <summary>
            The HTTP method  to use for both PRE and POST webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhookFilters">
            <summary>
            The list of WebHook events that are enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageSendUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_send event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageSendMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_message_send.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageUpdateUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_update event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageUpdateMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_message_update.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageRemoveUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_remove event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageRemoveMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_message_remove.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelAddUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_add event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelAddMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_channel_add.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelDestroyUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_destroy event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelDestroyMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_channel_destroy.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelUpdateUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_update event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelUpdateMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_channel_update.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMemberAddUrl">
            <summary>
            The URL of the webhook to call in response to the on_member_add event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMemberAddMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_member_add.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMemberRemoveUrl">
            <summary>
            The URL of the webhook to call in response to the on_member_remove event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMemberRemoveMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_member_remove.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageSentUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_sent event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageSentMethod">
            <summary>
            The URL of the webhook to call in response to the on_message_sent event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageUpdatedUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_updated event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageUpdatedMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_message_updated.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageRemovedUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_removed event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMessageRemovedMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_message_removed.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelAddedUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_added event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelAddedMethod">
            <summary>
            The URL of the webhook to call in response to the on_channel_added event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelDestroyedUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_added event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelDestroyedMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_channel_destroyed.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelUpdatedUrl">
            <summary>
            he URL of the webhook to call in response to the on_channel_updated event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnChannelUpdatedMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_channel_updated.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMemberAddedUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_updated event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMemberAddedMethod">
            <summary>
            he HTTP method to use when calling the webhooks.on_channel_updated.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMemberRemovedUrl">
            <summary>
            The URL of the webhook to call in response to the on_member_removed event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.WebhooksOnMemberRemovedMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_member_removed.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.LimitsChannelMembers">
            <summary>
            The maximum number of Members that can be added to Channels within this Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.UpdateServiceOptions.LimitsUserChannels">
            <summary>
            The maximum number of Channels Users can be a Member of within this Service
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.Fetch(Twilio.Rest.Chat.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.FetchAsync(Twilio.Rest.Chat.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.Delete(Twilio.Rest.Chat.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.DeleteAsync(Twilio.Rest.Chat.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.Create(Twilio.Rest.Chat.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.CreateAsync(Twilio.Rest.Chat.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.Create(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.CreateAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.Read(Twilio.Rest.Chat.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.ReadAsync(Twilio.Rest.Chat.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.Update(Twilio.Rest.Chat.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.UpdateAsync(Twilio.Rest.Chat.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.Update(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="defaultServiceRoleSid"> The service role assigned to users when they are added to the service </param>
            <param name="defaultChannelRoleSid"> The channel role assigned to users when they are added to a channel </param>
            <param name="defaultChannelCreatorRoleSid"> The channel role assigned to a channel creator when they join a new
                                               channel </param>
            <param name="readStatusEnabled"> Whether to enable the Message Consumption Horizon feature </param>
            <param name="reachabilityEnabled"> Whether to enable the Reachability Indicator feature for this Service instance
                                      </param>
            <param name="typingIndicatorTimeout"> How long in seconds to wait before assuming the user is no longer typing
                                         </param>
            <param name="consumptionReportInterval"> DEPRECATED </param>
            <param name="notificationsNewMessageEnabled"> Whether to send a notification when a new message is added to a
                                                 channel </param>
            <param name="notificationsNewMessageTemplate"> The template to use to create the notification text displayed when a
                                                  new message is added to a channel </param>
            <param name="notificationsAddedToChannelEnabled"> Whether to send a notification when a member is added to a
                                                     channel </param>
            <param name="notificationsAddedToChannelTemplate"> The template to use to create the notification text displayed
                                                      when a member is added to a channel </param>
            <param name="notificationsRemovedFromChannelEnabled"> Whether to send a notification to a user when they are
                                                         removed from a channel </param>
            <param name="notificationsRemovedFromChannelTemplate"> The template to use to create the notification text
                                                          displayed to a user when they are removed </param>
            <param name="notificationsInvitedToChannelEnabled"> Whether to send a notification when a user is invited to a
                                                       channel </param>
            <param name="notificationsInvitedToChannelTemplate"> The template to use to create the notification text displayed
                                                        when a user is invited to a channel </param>
            <param name="preWebhookUrl"> The webhook URL for pre-event webhooks </param>
            <param name="postWebhookUrl"> The URL for post-event webhooks </param>
            <param name="webhookMethod"> The HTTP method  to use for both PRE and POST webhooks </param>
            <param name="webhookFilters"> The list of WebHook events that are enabled for this Service instance </param>
            <param name="webhooksOnMessageSendUrl"> The URL of the webhook to call in response to the on_message_send event
                                           </param>
            <param name="webhooksOnMessageSendMethod"> The HTTP method to use when calling the webhooks.on_message_send.url
                                              </param>
            <param name="webhooksOnMessageUpdateUrl"> The URL of the webhook to call in response to the on_message_update event
                                             </param>
            <param name="webhooksOnMessageUpdateMethod"> The HTTP method to use when calling the webhooks.on_message_update.url
                                                </param>
            <param name="webhooksOnMessageRemoveUrl"> The URL of the webhook to call in response to the on_message_remove event
                                             </param>
            <param name="webhooksOnMessageRemoveMethod"> The HTTP method to use when calling the webhooks.on_message_remove.url
                                                </param>
            <param name="webhooksOnChannelAddUrl"> The URL of the webhook to call in response to the on_channel_add event
                                          </param>
            <param name="webhooksOnChannelAddMethod"> The HTTP method to use when calling the webhooks.on_channel_add.url
                                             </param>
            <param name="webhooksOnChannelDestroyUrl"> The URL of the webhook to call in response to the on_channel_destroy
                                              event </param>
            <param name="webhooksOnChannelDestroyMethod"> The HTTP method to use when calling the
                                                 webhooks.on_channel_destroy.url </param>
            <param name="webhooksOnChannelUpdateUrl"> The URL of the webhook to call in response to the on_channel_update event
                                             </param>
            <param name="webhooksOnChannelUpdateMethod"> The HTTP method to use when calling the webhooks.on_channel_update.url
                                                </param>
            <param name="webhooksOnMemberAddUrl"> The URL of the webhook to call in response to the on_member_add event </param>
            <param name="webhooksOnMemberAddMethod"> The HTTP method to use when calling the webhooks.on_member_add.url </param>
            <param name="webhooksOnMemberRemoveUrl"> The URL of the webhook to call in response to the on_member_remove event
                                            </param>
            <param name="webhooksOnMemberRemoveMethod"> The HTTP method to use when calling the webhooks.on_member_remove.url
                                               </param>
            <param name="webhooksOnMessageSentUrl"> The URL of the webhook to call in response to the on_message_sent event
                                           </param>
            <param name="webhooksOnMessageSentMethod"> The URL of the webhook to call in response to the on_message_sent event
                                              </param>
            <param name="webhooksOnMessageUpdatedUrl"> The URL of the webhook to call in response to the on_message_updated
                                              event </param>
            <param name="webhooksOnMessageUpdatedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_message_updated.url </param>
            <param name="webhooksOnMessageRemovedUrl"> The URL of the webhook to call in response to the on_message_removed
                                              event </param>
            <param name="webhooksOnMessageRemovedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_message_removed.url </param>
            <param name="webhooksOnChannelAddedUrl"> The URL of the webhook to call in response to the on_channel_added event
                                            </param>
            <param name="webhooksOnChannelAddedMethod"> The URL of the webhook to call in response to the on_channel_added
                                               event </param>
            <param name="webhooksOnChannelDestroyedUrl"> The URL of the webhook to call in response to the on_channel_added
                                                event </param>
            <param name="webhooksOnChannelDestroyedMethod"> The HTTP method to use when calling the
                                                   webhooks.on_channel_destroyed.url </param>
            <param name="webhooksOnChannelUpdatedUrl"> he URL of the webhook to call in response to the on_channel_updated
                                              event </param>
            <param name="webhooksOnChannelUpdatedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_channel_updated.url </param>
            <param name="webhooksOnMemberAddedUrl"> The URL of the webhook to call in response to the on_channel_updated event
                                           </param>
            <param name="webhooksOnMemberAddedMethod"> he HTTP method to use when calling the webhooks.on_channel_updated.url
                                              </param>
            <param name="webhooksOnMemberRemovedUrl"> The URL of the webhook to call in response to the on_member_removed event
                                             </param>
            <param name="webhooksOnMemberRemovedMethod"> The HTTP method to use when calling the webhooks.on_member_removed.url
                                                </param>
            <param name="limitsChannelMembers"> The maximum number of Members that can be added to Channels within this Service
                                       </param>
            <param name="limitsUserChannels"> The maximum number of Channels Users can be a Member of within this Service
                                     </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="defaultServiceRoleSid"> The service role assigned to users when they are added to the service </param>
            <param name="defaultChannelRoleSid"> The channel role assigned to users when they are added to a channel </param>
            <param name="defaultChannelCreatorRoleSid"> The channel role assigned to a channel creator when they join a new
                                               channel </param>
            <param name="readStatusEnabled"> Whether to enable the Message Consumption Horizon feature </param>
            <param name="reachabilityEnabled"> Whether to enable the Reachability Indicator feature for this Service instance
                                      </param>
            <param name="typingIndicatorTimeout"> How long in seconds to wait before assuming the user is no longer typing
                                         </param>
            <param name="consumptionReportInterval"> DEPRECATED </param>
            <param name="notificationsNewMessageEnabled"> Whether to send a notification when a new message is added to a
                                                 channel </param>
            <param name="notificationsNewMessageTemplate"> The template to use to create the notification text displayed when a
                                                  new message is added to a channel </param>
            <param name="notificationsAddedToChannelEnabled"> Whether to send a notification when a member is added to a
                                                     channel </param>
            <param name="notificationsAddedToChannelTemplate"> The template to use to create the notification text displayed
                                                      when a member is added to a channel </param>
            <param name="notificationsRemovedFromChannelEnabled"> Whether to send a notification to a user when they are
                                                         removed from a channel </param>
            <param name="notificationsRemovedFromChannelTemplate"> The template to use to create the notification text
                                                          displayed to a user when they are removed </param>
            <param name="notificationsInvitedToChannelEnabled"> Whether to send a notification when a user is invited to a
                                                       channel </param>
            <param name="notificationsInvitedToChannelTemplate"> The template to use to create the notification text displayed
                                                        when a user is invited to a channel </param>
            <param name="preWebhookUrl"> The webhook URL for pre-event webhooks </param>
            <param name="postWebhookUrl"> The URL for post-event webhooks </param>
            <param name="webhookMethod"> The HTTP method  to use for both PRE and POST webhooks </param>
            <param name="webhookFilters"> The list of WebHook events that are enabled for this Service instance </param>
            <param name="webhooksOnMessageSendUrl"> The URL of the webhook to call in response to the on_message_send event
                                           </param>
            <param name="webhooksOnMessageSendMethod"> The HTTP method to use when calling the webhooks.on_message_send.url
                                              </param>
            <param name="webhooksOnMessageUpdateUrl"> The URL of the webhook to call in response to the on_message_update event
                                             </param>
            <param name="webhooksOnMessageUpdateMethod"> The HTTP method to use when calling the webhooks.on_message_update.url
                                                </param>
            <param name="webhooksOnMessageRemoveUrl"> The URL of the webhook to call in response to the on_message_remove event
                                             </param>
            <param name="webhooksOnMessageRemoveMethod"> The HTTP method to use when calling the webhooks.on_message_remove.url
                                                </param>
            <param name="webhooksOnChannelAddUrl"> The URL of the webhook to call in response to the on_channel_add event
                                          </param>
            <param name="webhooksOnChannelAddMethod"> The HTTP method to use when calling the webhooks.on_channel_add.url
                                             </param>
            <param name="webhooksOnChannelDestroyUrl"> The URL of the webhook to call in response to the on_channel_destroy
                                              event </param>
            <param name="webhooksOnChannelDestroyMethod"> The HTTP method to use when calling the
                                                 webhooks.on_channel_destroy.url </param>
            <param name="webhooksOnChannelUpdateUrl"> The URL of the webhook to call in response to the on_channel_update event
                                             </param>
            <param name="webhooksOnChannelUpdateMethod"> The HTTP method to use when calling the webhooks.on_channel_update.url
                                                </param>
            <param name="webhooksOnMemberAddUrl"> The URL of the webhook to call in response to the on_member_add event </param>
            <param name="webhooksOnMemberAddMethod"> The HTTP method to use when calling the webhooks.on_member_add.url </param>
            <param name="webhooksOnMemberRemoveUrl"> The URL of the webhook to call in response to the on_member_remove event
                                            </param>
            <param name="webhooksOnMemberRemoveMethod"> The HTTP method to use when calling the webhooks.on_member_remove.url
                                               </param>
            <param name="webhooksOnMessageSentUrl"> The URL of the webhook to call in response to the on_message_sent event
                                           </param>
            <param name="webhooksOnMessageSentMethod"> The URL of the webhook to call in response to the on_message_sent event
                                              </param>
            <param name="webhooksOnMessageUpdatedUrl"> The URL of the webhook to call in response to the on_message_updated
                                              event </param>
            <param name="webhooksOnMessageUpdatedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_message_updated.url </param>
            <param name="webhooksOnMessageRemovedUrl"> The URL of the webhook to call in response to the on_message_removed
                                              event </param>
            <param name="webhooksOnMessageRemovedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_message_removed.url </param>
            <param name="webhooksOnChannelAddedUrl"> The URL of the webhook to call in response to the on_channel_added event
                                            </param>
            <param name="webhooksOnChannelAddedMethod"> The URL of the webhook to call in response to the on_channel_added
                                               event </param>
            <param name="webhooksOnChannelDestroyedUrl"> The URL of the webhook to call in response to the on_channel_added
                                                event </param>
            <param name="webhooksOnChannelDestroyedMethod"> The HTTP method to use when calling the
                                                   webhooks.on_channel_destroyed.url </param>
            <param name="webhooksOnChannelUpdatedUrl"> he URL of the webhook to call in response to the on_channel_updated
                                              event </param>
            <param name="webhooksOnChannelUpdatedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_channel_updated.url </param>
            <param name="webhooksOnMemberAddedUrl"> The URL of the webhook to call in response to the on_channel_updated event
                                           </param>
            <param name="webhooksOnMemberAddedMethod"> he HTTP method to use when calling the webhooks.on_channel_updated.url
                                              </param>
            <param name="webhooksOnMemberRemovedUrl"> The URL of the webhook to call in response to the on_member_removed event
                                             </param>
            <param name="webhooksOnMemberRemovedMethod"> The HTTP method to use when calling the webhooks.on_member_removed.url
                                                </param>
            <param name="limitsChannelMembers"> The maximum number of Members that can be added to Channels within this Service
                                       </param>
            <param name="limitsUserChannels"> The maximum number of Channels Users can be a Member of within this Service
                                     </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.DefaultServiceRoleSid">
            <summary>
            The service role assigned to users when they are added to the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.DefaultChannelRoleSid">
            <summary>
            The channel role assigned to users when they are added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.DefaultChannelCreatorRoleSid">
            <summary>
            The channel role assigned to a channel creator when they join a new channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.ReadStatusEnabled">
            <summary>
            Whether the Message Consumption Horizon feature is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.ReachabilityEnabled">
            <summary>
            Whether the Reachability Indicator feature is enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.TypingIndicatorTimeout">
            <summary>
            How long in seconds to wait before assuming the user is no longer typing
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.ConsumptionReportInterval">
            <summary>
            DEPRECATED
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.Limits">
            <summary>
            An object that describes the limits of the service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.Webhooks">
            <summary>
            An object that contains information about the webhooks configured for this service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.PreWebhookUrl">
            <summary>
            The webhook URL for pre-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.PostWebhookUrl">
            <summary>
            The URL for post-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.WebhookMethod">
            <summary>
            The HTTP method  to use for both PRE and POST webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.WebhookFilters">
            <summary>
            The list of WebHook events that are enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.Notifications">
            <summary>
            The notification configuration for the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.Url">
            <summary>
            The absolute URL of the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.ServiceResource.Links">
            <summary>
            The absolute URLs of the Service's Channels, Roles, and Users
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.FetchChannelOptions">
            <summary>
            FetchChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.FetchChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.FetchChannelOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.FetchChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.FetchChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.DeleteChannelOptions">
            <summary>
            DeleteChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.DeleteChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.DeleteChannelOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.DeleteChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.DeleteChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.CreateChannelOptions">
            <summary>
            CreateChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateChannelOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateChannelOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateChannelOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateChannelOptions.Type">
            <summary>
            The visibility of the channel
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.CreateChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.CreateChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.ReadChannelOptions">
            <summary>
            ReadChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ReadChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ReadChannelOptions.Type">
            <summary>
            The visibility of the channel to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ReadChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ReadChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.UpdateChannelOptions">
            <summary>
            UpdateChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateChannelOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateChannelOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateChannelOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateChannelOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UpdateChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UpdateChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.Fetch(Twilio.Rest.Chat.V1.Service.FetchChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.FetchAsync(Twilio.Rest.Chat.V1.Service.FetchChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.Delete(Twilio.Rest.Chat.V1.Service.DeleteChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.DeleteAsync(Twilio.Rest.Chat.V1.Service.DeleteChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.Create(Twilio.Rest.Chat.V1.Service.CreateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.CreateAsync(Twilio.Rest.Chat.V1.Service.CreateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.Create(System.String,System.String,System.String,System.String,Twilio.Rest.Chat.V1.Service.ChannelResource.ChannelTypeEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="type"> The visibility of the channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Rest.Chat.V1.Service.ChannelResource.ChannelTypeEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="type"> The visibility of the channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.Read(Twilio.Rest.Chat.V1.Service.ReadChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.ReadAsync(Twilio.Rest.Chat.V1.Service.ReadChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.Read(System.String,System.Collections.Generic.List{Twilio.Rest.Chat.V1.Service.ChannelResource.ChannelTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="type"> The visibility of the channel to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.ReadAsync(System.String,System.Collections.Generic.List{Twilio.Rest.Chat.V1.Service.ChannelResource.ChannelTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="type"> The visibility of the channel to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.ChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.ChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.Update(Twilio.Rest.Chat.V1.Service.UpdateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.UpdateAsync(Twilio.Rest.Chat.V1.Service.UpdateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.Update(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.Type">
            <summary>
            The visibility of the channel. Can be: `public` or `private`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.CreatedBy">
            <summary>
            The identity of the User that created the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.MembersCount">
            <summary>
            The number of Members in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.MessagesCount">
            <summary>
            The number of Messages in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.Url">
            <summary>
            The absolute URL of the Channel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ChannelResource.Links">
            <summary>
            Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.FetchInviteOptions">
            <summary>
            FetchInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.FetchInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.FetchInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to fetch belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.FetchInviteOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.FetchInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.FetchInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.CreateInviteOptions">
            <summary>
            CreateInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateInviteOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateInviteOptions.RoleSid">
            <summary>
            The Role assigned to the new member
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.CreateInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.CreateInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.ReadInviteOptions">
            <summary>
            ReadInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.ReadInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.ReadInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resources to read belong to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.ReadInviteOptions.Identity">
            <summary>
            The `identity` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.ReadInviteOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.ReadInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.DeleteInviteOptions">
            <summary>
            DeleteInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.DeleteInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.DeleteInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.DeleteInviteOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.DeleteInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.DeleteInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.Fetch(Twilio.Rest.Chat.V1.Service.Channel.FetchInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.FetchAsync(Twilio.Rest.Chat.V1.Service.Channel.FetchInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.Create(Twilio.Rest.Chat.V1.Service.Channel.CreateInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.CreateAsync(Twilio.Rest.Chat.V1.Service.Channel.CreateInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The Role assigned to the new member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The Role assigned to the new member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.Read(Twilio.Rest.Chat.V1.Service.Channel.ReadInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.ReadAsync(Twilio.Rest.Chat.V1.Service.Channel.ReadInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.Read(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.ReadAsync(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.Channel.InviteResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.Channel.InviteResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.Delete(Twilio.Rest.Chat.V1.Service.Channel.DeleteInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.DeleteAsync(Twilio.Rest.Chat.V1.Service.Channel.DeleteInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a InviteResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> InviteResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.ChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.RoleSid">
            <summary>
            The SID of the Role assigned to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.CreatedBy">
            <summary>
            The identity of the User that created the invite
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.InviteResource.Url">
            <summary>
            The absolute URL of the Invite resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.FetchMemberOptions">
            <summary>
            FetchMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.FetchMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.FetchMemberOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.FetchMemberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.FetchMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.FetchMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.CreateMemberOptions">
            <summary>
            CreateMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateMemberOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the new member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateMemberOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateMemberOptions.RoleSid">
            <summary>
            The SID of the Role to assign to the member
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.CreateMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.CreateMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.ReadMemberOptions">
            <summary>
            ReadMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.ReadMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.ReadMemberOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.ReadMemberOptions.Identity">
            <summary>
            The `identity` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.ReadMemberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.ReadMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.DeleteMemberOptions">
            <summary>
            DeleteMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.DeleteMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.DeleteMemberOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the message to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.DeleteMemberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.DeleteMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.DeleteMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.UpdateMemberOptions">
            <summary>
            UpdateMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.UpdateMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.UpdateMemberOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the member to update belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.UpdateMemberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.UpdateMemberOptions.RoleSid">
            <summary>
            The SID of the Role to assign to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.UpdateMemberOptions.LastConsumedMessageIndex">
            <summary>
            The index of the last consumed Message for the Channel for the Member
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.UpdateMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the member to update belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.UpdateMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Fetch(Twilio.Rest.Chat.V1.Service.Channel.FetchMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.FetchAsync(Twilio.Rest.Chat.V1.Service.Channel.FetchMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Create(Twilio.Rest.Chat.V1.Service.Channel.CreateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.CreateAsync(Twilio.Rest.Chat.V1.Service.Channel.CreateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Read(Twilio.Rest.Chat.V1.Service.Channel.ReadMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.ReadAsync(Twilio.Rest.Chat.V1.Service.Channel.ReadMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Read(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.ReadAsync(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.Channel.MemberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.Channel.MemberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Delete(Twilio.Rest.Chat.V1.Service.Channel.DeleteMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.DeleteAsync(Twilio.Rest.Chat.V1.Service.Channel.DeleteMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Update(Twilio.Rest.Chat.V1.Service.Channel.UpdateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.UpdateAsync(Twilio.Rest.Chat.V1.Service.Channel.UpdateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Update(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the member to update belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last consumed Message for the Channel for the Member
                                           </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the member to update belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last consumed Message for the Channel for the Member
                                           </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MemberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MemberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.ChannelSid">
            <summary>
            The unique ID of the Channel for the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.RoleSid">
            <summary>
            The SID of the Role assigned to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.LastConsumedMessageIndex">
            <summary>
            The index of the last Message that the Member has read within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.LastConsumptionTimestamp">
            <summary>
            The ISO 8601 based timestamp string that represents the date-time of the last Message read event for the Member within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MemberResource.Url">
            <summary>
            The absolute URL of the Member resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.FetchMessageOptions">
            <summary>
            FetchMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.FetchMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.FetchMessageOptions.PathChannelSid">
            <summary>
            The unique ID of the Channel the message to fetch belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.FetchMessageOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.FetchMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.FetchMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.CreateMessageOptions">
            <summary>
            CreateMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateMessageOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateMessageOptions.Body">
            <summary>
            The message to send to the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateMessageOptions.From">
            <summary>
            The identity of the new message's author
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.CreateMessageOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.CreateMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new resource belongs to </param>
            <param name="body"> The message to send to the channel </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.CreateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.ReadMessageOptions">
            <summary>
            ReadMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.ReadMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.ReadMessageOptions.PathChannelSid">
            <summary>
            The unique ID of the Channel the message to read belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.ReadMessageOptions.Order">
            <summary>
            The sort order of the returned messages
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.ReadMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to read belongs to </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.ReadMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.DeleteMessageOptions">
            <summary>
            DeleteMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.DeleteMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.DeleteMessageOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the message to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.DeleteMessageOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.DeleteMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.DeleteMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.Channel.UpdateMessageOptions">
            <summary>
            UpdateMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.UpdateMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.UpdateMessageOptions.PathChannelSid">
            <summary>
            he unique ID of the Channel the message belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.UpdateMessageOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.UpdateMessageOptions.Body">
            <summary>
            The message to send to the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.UpdateMessageOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.UpdateMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> he unique ID of the Channel the message belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.UpdateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Fetch(Twilio.Rest.Chat.V1.Service.Channel.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.FetchAsync(Twilio.Rest.Chat.V1.Service.Channel.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Create(Twilio.Rest.Chat.V1.Service.Channel.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.CreateAsync(Twilio.Rest.Chat.V1.Service.Channel.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new resource belongs to </param>
            <param name="body"> The message to send to the channel </param>
            <param name="from"> The identity of the new message's author </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new resource belongs to </param>
            <param name="body"> The message to send to the channel </param>
            <param name="from"> The identity of the new message's author </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Read(Twilio.Rest.Chat.V1.Service.Channel.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.ReadAsync(Twilio.Rest.Chat.V1.Service.Channel.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Read(System.String,System.String,Twilio.Rest.Chat.V1.Service.Channel.MessageResource.OrderTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to read belongs to </param>
            <param name="order"> The sort order of the returned messages </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.ReadAsync(System.String,System.String,Twilio.Rest.Chat.V1.Service.Channel.MessageResource.OrderTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to read belongs to </param>
            <param name="order"> The sort order of the returned messages </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.Channel.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.Channel.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Delete(Twilio.Rest.Chat.V1.Service.Channel.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.DeleteAsync(Twilio.Rest.Chat.V1.Service.Channel.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Update(Twilio.Rest.Chat.V1.Service.Channel.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.UpdateAsync(Twilio.Rest.Chat.V1.Service.Channel.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Update(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> he unique ID of the Channel the message belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="body"> The message to send to the channel </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> he unique ID of the Channel the message belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="body"> The message to send to the channel </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MessageResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MessageResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.To">
            <summary>
            The SID of the Channel that the message was sent to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.ChannelSid">
            <summary>
            The unique ID of the Channel the Message resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.WasEdited">
            <summary>
            Whether the message has been edited since  it was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.From">
            <summary>
            The identity of the message's author
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Body">
            <summary>
            The content of the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Index">
            <summary>
            The index of the message within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.Channel.MessageResource.Url">
            <summary>
            The absolute URL of the Message resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.FetchRoleOptions">
            <summary>
            FetchRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.FetchRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.FetchRoleOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.FetchRoleOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.FetchRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.DeleteRoleOptions">
            <summary>
            DeleteRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.DeleteRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.DeleteRoleOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.DeleteRoleOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.DeleteRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.CreateRoleOptions">
            <summary>
            CreateRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateRoleOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateRoleOptions.Type">
            <summary>
            The type of role
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateRoleOptions.Permission">
            <summary>
            A permission the role should have
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.CreateRoleOptions.#ctor(System.String,System.String,Twilio.Rest.Chat.V1.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String})">
            <summary>
            Construct a new CreateRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.CreateRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.ReadRoleOptions">
            <summary>
            ReadRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ReadRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ReadRoleOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ReadRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.UpdateRoleOptions">
            <summary>
            UpdateRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateRoleOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateRoleOptions.Permission">
            <summary>
            A permission the role should have
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UpdateRoleOptions.#ctor(System.String,System.String,System.Collections.Generic.List{System.String})">
            <summary>
            Construct a new UpdateRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="permission"> A permission the role should have </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UpdateRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.Fetch(Twilio.Rest.Chat.V1.Service.FetchRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.FetchAsync(Twilio.Rest.Chat.V1.Service.FetchRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.Delete(Twilio.Rest.Chat.V1.Service.DeleteRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.DeleteAsync(Twilio.Rest.Chat.V1.Service.DeleteRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.Create(Twilio.Rest.Chat.V1.Service.CreateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.CreateAsync(Twilio.Rest.Chat.V1.Service.CreateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.Create(System.String,System.String,Twilio.Rest.Chat.V1.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.CreateAsync(System.String,System.String,Twilio.Rest.Chat.V1.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.Read(Twilio.Rest.Chat.V1.Service.ReadRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.ReadAsync(Twilio.Rest.Chat.V1.Service.ReadRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.RoleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.RoleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.Update(Twilio.Rest.Chat.V1.Service.UpdateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.UpdateAsync(Twilio.Rest.Chat.V1.Service.UpdateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.Update(System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.UpdateAsync(System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.RoleResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RoleResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RoleResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.RoleResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.RoleResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.RoleResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.RoleResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.RoleResource.Type">
            <summary>
            The type of role
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.RoleResource.Permissions">
            <summary>
            An array of the permissions the role has been granted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.RoleResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.RoleResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.RoleResource.Url">
            <summary>
            The absolute URL of the Role resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.FetchUserOptions">
            <summary>
            FetchUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.FetchUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.FetchUserOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.FetchUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.FetchUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.DeleteUserOptions">
            <summary>
            DeleteUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.DeleteUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.DeleteUserOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.DeleteUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.DeleteUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.CreateUserOptions">
            <summary>
            CreateUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the new resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateUserOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateUserOptions.RoleSid">
            <summary>
            The SID of the Role assigned to this user
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateUserOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.CreateUserOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.CreateUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.CreateUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.ReadUserOptions">
            <summary>
            ReadUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.ReadUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ReadUserOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.ReadUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.UpdateUserOptions">
            <summary>
            UpdateUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateUserOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateUserOptions.RoleSid">
            <summary>
            The SID id of the Role assigned to this user
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateUserOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UpdateUserOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UpdateUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UpdateUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.Fetch(Twilio.Rest.Chat.V1.Service.FetchUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.FetchAsync(Twilio.Rest.Chat.V1.Service.FetchUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.Delete(Twilio.Rest.Chat.V1.Service.DeleteUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.DeleteAsync(Twilio.Rest.Chat.V1.Service.DeleteUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.Create(Twilio.Rest.Chat.V1.Service.CreateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.CreateAsync(Twilio.Rest.Chat.V1.Service.CreateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.Read(Twilio.Rest.Chat.V1.Service.ReadUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.ReadAsync(Twilio.Rest.Chat.V1.Service.ReadUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.UserResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.UserResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.Update(Twilio.Rest.Chat.V1.Service.UpdateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.UpdateAsync(Twilio.Rest.Chat.V1.Service.UpdateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.Update(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="roleSid"> The SID id of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="roleSid"> The SID id of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.UserResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UserResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UserResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.RoleSid">
            <summary>
            The SID of the assigned to the user
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.IsOnline">
            <summary>
            Whether the User is actively connected to the Service instance and online
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.IsNotifiable">
            <summary>
            Whether the User has a potentially valid Push Notification registration for the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.JoinedChannelsCount">
            <summary>
            The number of Channels this User is a Member of
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.Links">
            <summary>
            The absolute URLs of the Channel and Binding resources related to the user
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.UserResource.Url">
            <summary>
            The absolute URL of the User resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V1.Service.User.ReadUserChannelOptions">
            <summary>
            List all Channels for a given User.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.User.ReadUserChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.User.ReadUserChannelOptions.PathUserSid">
            <summary>
            The SID of the User to fetch the User Channel resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.User.ReadUserChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadUserChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.User.ReadUserChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.Read(Twilio.Rest.Chat.V1.Service.User.ReadUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="options"> Read UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.ReadAsync(Twilio.Rest.Chat.V1.Service.User.ReadUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="options"> Read UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.User.UserChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V1.Service.User.UserChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UserChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UserChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.ChannelSid">
            <summary>
            The SID of the Channel the resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.MemberSid">
            <summary>
            The SID of the User as a Member in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.Status">
            <summary>
            The status of the User on the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.LastConsumedMessageIndex">
            <summary>
            The index of the last Message in the Channel the Member has read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.UnreadMessagesCount">
            <summary>
            The number of unread Messages in the Channel for the User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V1.Service.User.UserChannelResource.Links">
            <summary>
            Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.ReadCredentialOptions">
            <summary>
            ReadCredentialOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ReadCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.CreateCredentialOptions">
            <summary>
            CreateCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CreateCredentialOptions.Type">
            <summary>
            The type of push-notification service the credential is for
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CreateCredentialOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CreateCredentialOptions.Certificate">
            <summary>
            [APN only] The URL encoded representation of the certificate
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CreateCredentialOptions.PrivateKey">
            <summary>
            [APN only] The URL encoded representation of the private key
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CreateCredentialOptions.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CreateCredentialOptions.ApiKey">
            <summary>
            [GCM only] The API key for the project that was obtained from the Google Developer console for your GCM Service application credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CreateCredentialOptions.Secret">
            <summary>
            [FCM only] The Server key of your project from Firebase console
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CreateCredentialOptions.#ctor(Twilio.Rest.Chat.V2.CredentialResource.PushServiceEnum)">
            <summary>
            Construct a new CreateCredentialOptions
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CreateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.FetchCredentialOptions">
            <summary>
            FetchCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.FetchCredentialOptions.PathSid">
            <summary>
            The SID of the Credential resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.FetchCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCredentialOptions
            </summary>
            <param name="pathSid"> The SID of the Credential resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.FetchCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.UpdateCredentialOptions">
            <summary>
            UpdateCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateCredentialOptions.PathSid">
            <summary>
            The SID of the Credential resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateCredentialOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateCredentialOptions.Certificate">
            <summary>
            [APN only] The URL encoded representation of the certificate
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateCredentialOptions.PrivateKey">
            <summary>
            [APN only] The URL encoded representation of the private key
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateCredentialOptions.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateCredentialOptions.ApiKey">
            <summary>
            [GCM only] The API key for the project that was obtained from the Google Developer console for your GCM Service application credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateCredentialOptions.Secret">
            <summary>
            [FCM only] The Server key of your project from Firebase console
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.UpdateCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateCredentialOptions
            </summary>
            <param name="pathSid"> The SID of the Credential resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.UpdateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.DeleteCredentialOptions">
            <summary>
            DeleteCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.DeleteCredentialOptions.PathSid">
            <summary>
            The SID of the Credential resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.DeleteCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteCredentialOptions
            </summary>
            <param name="pathSid"> The SID of the Credential resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.DeleteCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.Read(Twilio.Rest.Chat.V2.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.ReadAsync(Twilio.Rest.Chat.V2.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.Create(Twilio.Rest.Chat.V2.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.CreateAsync(Twilio.Rest.Chat.V2.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.Create(Twilio.Rest.Chat.V2.CredentialResource.PushServiceEnum,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.CreateAsync(Twilio.Rest.Chat.V2.CredentialResource.PushServiceEnum,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.Fetch(Twilio.Rest.Chat.V2.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.FetchAsync(Twilio.Rest.Chat.V2.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the Credential resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the Credential resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.Update(Twilio.Rest.Chat.V2.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.UpdateAsync(Twilio.Rest.Chat.V2.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.Update(System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the Credential resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the Credential resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.Delete(Twilio.Rest.Chat.V2.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.DeleteAsync(Twilio.Rest.Chat.V2.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Credential resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Credential resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CredentialResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CredentialResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CredentialResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CredentialResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CredentialResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CredentialResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CredentialResource.Type">
            <summary>
            The type of push-notification service the credential is for
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CredentialResource.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CredentialResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CredentialResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CredentialResource.Url">
            <summary>
            The absolute URL of the Credential resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.FetchServiceOptions">
            <summary>
            FetchServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.FetchServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.DeleteServiceOptions">
            <summary>
            DeleteServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.DeleteServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.CreateServiceOptions">
            <summary>
            CreateServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.CreateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CreateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateServiceOptions
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.ReadServiceOptions">
            <summary>
            ReadServiceOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.UpdateServiceOptions">
            <summary>
            UpdateServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.DefaultServiceRoleSid">
            <summary>
            The service role assigned to users when they are added to the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.DefaultChannelRoleSid">
            <summary>
            The channel role assigned to users when they are added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.DefaultChannelCreatorRoleSid">
            <summary>
            The channel role assigned to a channel creator when they join a new channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.ReadStatusEnabled">
            <summary>
            Whether to enable the Message Consumption Horizon feature
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.ReachabilityEnabled">
            <summary>
            Whether to enable the Reachability Indicator feature for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.TypingIndicatorTimeout">
            <summary>
            How long in seconds to wait before assuming the user is no longer typing
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.ConsumptionReportInterval">
            <summary>
            DEPRECATED
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsNewMessageEnabled">
            <summary>
            Whether to send a notification when a new message is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsNewMessageTemplate">
            <summary>
            The template to use to create the notification text displayed when a new message is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsNewMessageSound">
            <summary>
            The name of the sound to play when a new message is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsNewMessageBadgeCountEnabled">
            <summary>
            Whether the new message badge is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsAddedToChannelEnabled">
            <summary>
            Whether to send a notification when a member is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsAddedToChannelTemplate">
            <summary>
            The template to use to create the notification text displayed when a member is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsAddedToChannelSound">
            <summary>
            The name of the sound to play when a member is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsRemovedFromChannelEnabled">
            <summary>
            Whether to send a notification to a user when they are removed from a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsRemovedFromChannelTemplate">
            <summary>
            The template to use to create the notification text displayed to a user when they are removed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsRemovedFromChannelSound">
            <summary>
            The name of the sound to play to a user when they are removed from a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsInvitedToChannelEnabled">
            <summary>
            Whether to send a notification when a user is invited to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsInvitedToChannelTemplate">
            <summary>
            The template to use to create the notification text displayed when a user is invited to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsInvitedToChannelSound">
            <summary>
            The name of the sound to play when a user is invited to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.PreWebhookUrl">
            <summary>
            The webhook URL for pre-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.PostWebhookUrl">
            <summary>
            The URL for post-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.WebhookMethod">
            <summary>
            The HTTP method  to use for both PRE and POST webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.WebhookFilters">
            <summary>
            The list of webhook events that are enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.LimitsChannelMembers">
            <summary>
            The maximum number of Members that can be added to Channels within this Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.LimitsUserChannels">
            <summary>
            The maximum number of Channels Users can be a Member of within this Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.MediaCompatibilityMessage">
            <summary>
            The message to send when a media message has no text
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.PreWebhookRetryCount">
            <summary>
            Count of times webhook will be retried in case of timeout or 429/503/504 HTTP responses
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.PostWebhookRetryCount">
            <summary>
            The number of times calls to the `post_webhook_url` will be retried
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.UpdateServiceOptions.NotificationsLogEnabled">
            <summary>
            Whether to log notifications
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.Fetch(Twilio.Rest.Chat.V2.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.FetchAsync(Twilio.Rest.Chat.V2.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.Delete(Twilio.Rest.Chat.V2.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.DeleteAsync(Twilio.Rest.Chat.V2.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.Create(Twilio.Rest.Chat.V2.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.CreateAsync(Twilio.Rest.Chat.V2.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.Create(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.CreateAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.Read(Twilio.Rest.Chat.V2.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.ReadAsync(Twilio.Rest.Chat.V2.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.Update(Twilio.Rest.Chat.V2.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.UpdateAsync(Twilio.Rest.Chat.V2.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.Update(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int32},System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="defaultServiceRoleSid"> The service role assigned to users when they are added to the service </param>
            <param name="defaultChannelRoleSid"> The channel role assigned to users when they are added to a channel </param>
            <param name="defaultChannelCreatorRoleSid"> The channel role assigned to a channel creator when they join a new
                                               channel </param>
            <param name="readStatusEnabled"> Whether to enable the Message Consumption Horizon feature </param>
            <param name="reachabilityEnabled"> Whether to enable the Reachability Indicator feature for this Service instance
                                      </param>
            <param name="typingIndicatorTimeout"> How long in seconds to wait before assuming the user is no longer typing
                                         </param>
            <param name="consumptionReportInterval"> DEPRECATED </param>
            <param name="notificationsNewMessageEnabled"> Whether to send a notification when a new message is added to a
                                                 channel </param>
            <param name="notificationsNewMessageTemplate"> The template to use to create the notification text displayed when a
                                                  new message is added to a channel </param>
            <param name="notificationsNewMessageSound"> The name of the sound to play when a new message is added to a channel
                                               </param>
            <param name="notificationsNewMessageBadgeCountEnabled"> Whether the new message badge is enabled </param>
            <param name="notificationsAddedToChannelEnabled"> Whether to send a notification when a member is added to a
                                                     channel </param>
            <param name="notificationsAddedToChannelTemplate"> The template to use to create the notification text displayed
                                                      when a member is added to a channel </param>
            <param name="notificationsAddedToChannelSound"> The name of the sound to play when a member is added to a channel
                                                   </param>
            <param name="notificationsRemovedFromChannelEnabled"> Whether to send a notification to a user when they are
                                                         removed from a channel </param>
            <param name="notificationsRemovedFromChannelTemplate"> The template to use to create the notification text
                                                          displayed to a user when they are removed </param>
            <param name="notificationsRemovedFromChannelSound"> The name of the sound to play to a user when they are removed
                                                       from a channel </param>
            <param name="notificationsInvitedToChannelEnabled"> Whether to send a notification when a user is invited to a
                                                       channel </param>
            <param name="notificationsInvitedToChannelTemplate"> The template to use to create the notification text displayed
                                                        when a user is invited to a channel </param>
            <param name="notificationsInvitedToChannelSound"> The name of the sound to play when a user is invited to a channel
                                                     </param>
            <param name="preWebhookUrl"> The webhook URL for pre-event webhooks </param>
            <param name="postWebhookUrl"> The URL for post-event webhooks </param>
            <param name="webhookMethod"> The HTTP method  to use for both PRE and POST webhooks </param>
            <param name="webhookFilters"> The list of webhook events that are enabled for this Service instance </param>
            <param name="limitsChannelMembers"> The maximum number of Members that can be added to Channels within this Service
                                       </param>
            <param name="limitsUserChannels"> The maximum number of Channels Users can be a Member of within this Service
                                     </param>
            <param name="mediaCompatibilityMessage"> The message to send when a media message has no text </param>
            <param name="preWebhookRetryCount"> Count of times webhook will be retried in case of timeout or 429/503/504 HTTP
                                       responses </param>
            <param name="postWebhookRetryCount"> The number of times calls to the `post_webhook_url` will be retried </param>
            <param name="notificationsLogEnabled"> Whether to log notifications </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int32},System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="defaultServiceRoleSid"> The service role assigned to users when they are added to the service </param>
            <param name="defaultChannelRoleSid"> The channel role assigned to users when they are added to a channel </param>
            <param name="defaultChannelCreatorRoleSid"> The channel role assigned to a channel creator when they join a new
                                               channel </param>
            <param name="readStatusEnabled"> Whether to enable the Message Consumption Horizon feature </param>
            <param name="reachabilityEnabled"> Whether to enable the Reachability Indicator feature for this Service instance
                                      </param>
            <param name="typingIndicatorTimeout"> How long in seconds to wait before assuming the user is no longer typing
                                         </param>
            <param name="consumptionReportInterval"> DEPRECATED </param>
            <param name="notificationsNewMessageEnabled"> Whether to send a notification when a new message is added to a
                                                 channel </param>
            <param name="notificationsNewMessageTemplate"> The template to use to create the notification text displayed when a
                                                  new message is added to a channel </param>
            <param name="notificationsNewMessageSound"> The name of the sound to play when a new message is added to a channel
                                               </param>
            <param name="notificationsNewMessageBadgeCountEnabled"> Whether the new message badge is enabled </param>
            <param name="notificationsAddedToChannelEnabled"> Whether to send a notification when a member is added to a
                                                     channel </param>
            <param name="notificationsAddedToChannelTemplate"> The template to use to create the notification text displayed
                                                      when a member is added to a channel </param>
            <param name="notificationsAddedToChannelSound"> The name of the sound to play when a member is added to a channel
                                                   </param>
            <param name="notificationsRemovedFromChannelEnabled"> Whether to send a notification to a user when they are
                                                         removed from a channel </param>
            <param name="notificationsRemovedFromChannelTemplate"> The template to use to create the notification text
                                                          displayed to a user when they are removed </param>
            <param name="notificationsRemovedFromChannelSound"> The name of the sound to play to a user when they are removed
                                                       from a channel </param>
            <param name="notificationsInvitedToChannelEnabled"> Whether to send a notification when a user is invited to a
                                                       channel </param>
            <param name="notificationsInvitedToChannelTemplate"> The template to use to create the notification text displayed
                                                        when a user is invited to a channel </param>
            <param name="notificationsInvitedToChannelSound"> The name of the sound to play when a user is invited to a channel
                                                     </param>
            <param name="preWebhookUrl"> The webhook URL for pre-event webhooks </param>
            <param name="postWebhookUrl"> The URL for post-event webhooks </param>
            <param name="webhookMethod"> The HTTP method  to use for both PRE and POST webhooks </param>
            <param name="webhookFilters"> The list of webhook events that are enabled for this Service instance </param>
            <param name="limitsChannelMembers"> The maximum number of Members that can be added to Channels within this Service
                                       </param>
            <param name="limitsUserChannels"> The maximum number of Channels Users can be a Member of within this Service
                                     </param>
            <param name="mediaCompatibilityMessage"> The message to send when a media message has no text </param>
            <param name="preWebhookRetryCount"> Count of times webhook will be retried in case of timeout or 429/503/504 HTTP
                                       responses </param>
            <param name="postWebhookRetryCount"> The number of times calls to the `post_webhook_url` will be retried </param>
            <param name="notificationsLogEnabled"> Whether to log notifications </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.DefaultServiceRoleSid">
            <summary>
            The service role assigned to users when they are added to the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.DefaultChannelRoleSid">
            <summary>
            The channel role assigned to users when they are added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.DefaultChannelCreatorRoleSid">
            <summary>
            The channel role assigned to a channel creator when they join a new channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.ReadStatusEnabled">
            <summary>
            Whether the Message Consumption Horizon feature is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.ReachabilityEnabled">
            <summary>
            Whether the Reachability Indicator feature is enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.TypingIndicatorTimeout">
            <summary>
            How long in seconds to wait before assuming the user is no longer typing
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.ConsumptionReportInterval">
            <summary>
            DEPRECATED
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.Limits">
            <summary>
            An object that describes the limits of the service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.PreWebhookUrl">
            <summary>
            The webhook URL for pre-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.PostWebhookUrl">
            <summary>
            The URL for post-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.WebhookMethod">
            <summary>
            The HTTP method  to use for both PRE and POST webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.WebhookFilters">
            <summary>
            The list of webhook events that are enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.PreWebhookRetryCount">
            <summary>
            Count of times webhook will be retried in case of timeout or 429/503/504 HTTP responses
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.PostWebhookRetryCount">
            <summary>
            The number of times calls to the `post_webhook_url` will be retried
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.Notifications">
            <summary>
            The notification configuration for the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.Media">
            <summary>
            The properties of the media that the service supports
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.Url">
            <summary>
            The absolute URL of the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.ServiceResource.Links">
            <summary>
            The absolute URLs of the Service's Channels, Roles, and Users
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.ReadBindingOptions">
            <summary>
            ReadBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ReadBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ReadBindingOptions.BindingType">
            <summary>
            The push technology used by the Binding resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ReadBindingOptions.Identity">
            <summary>
            The `identity` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ReadBindingOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ReadBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.FetchBindingOptions">
            <summary>
            FetchBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.FetchBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.FetchBindingOptions.PathSid">
            <summary>
            The SID of the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.FetchBindingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.FetchBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.DeleteBindingOptions">
            <summary>
            DeleteBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.DeleteBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.DeleteBindingOptions.PathSid">
            <summary>
            The SID of the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.DeleteBindingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.DeleteBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.Read(Twilio.Rest.Chat.V2.Service.ReadBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.ReadAsync(Twilio.Rest.Chat.V2.Service.ReadBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.Read(System.String,System.Collections.Generic.List{Twilio.Rest.Chat.V2.Service.BindingResource.BindingTypeEnum},System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="bindingType"> The push technology used by the Binding resources to read </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.ReadAsync(System.String,System.Collections.Generic.List{Twilio.Rest.Chat.V2.Service.BindingResource.BindingTypeEnum},System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="bindingType"> The push technology used by the Binding resources to read </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.BindingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.BindingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.Fetch(Twilio.Rest.Chat.V2.Service.FetchBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.FetchAsync(Twilio.Rest.Chat.V2.Service.FetchBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.Delete(Twilio.Rest.Chat.V2.Service.DeleteBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.DeleteAsync(Twilio.Rest.Chat.V2.Service.DeleteBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.BindingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a BindingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> BindingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.ServiceSid">
            <summary>
            The SID of the Service that the Binding resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.Endpoint">
            <summary>
            The unique endpoint identifier for the Binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.CredentialSid">
            <summary>
            The SID of the Credential for the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.BindingType">
            <summary>
            The push technology to use for the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.MessageTypes">
            <summary>
            The Programmable Chat message types the binding is subscribed to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.Url">
            <summary>
            The absolute URL of the Binding resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.BindingResource.Links">
            <summary>
            The absolute URLs of the Binding's User
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.FetchChannelOptions">
            <summary>
            FetchChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.FetchChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.FetchChannelOptions.PathSid">
            <summary>
            The SID of the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.FetchChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.FetchChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.DeleteChannelOptions">
            <summary>
            DeleteChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.DeleteChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.DeleteChannelOptions.PathSid">
            <summary>
            The SID of the Channel resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.DeleteChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.DeleteChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.CreateChannelOptions">
            <summary>
            CreateChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the Channel resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateChannelOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateChannelOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the Channel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateChannelOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateChannelOptions.Type">
            <summary>
            The visibility of the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateChannelOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateChannelOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateChannelOptions.CreatedBy">
            <summary>
            The identity of the User that created the Channel
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.CreateChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Channel resource under </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.CreateChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.ReadChannelOptions">
            <summary>
            ReadChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ReadChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ReadChannelOptions.Type">
            <summary>
            The visibility of the channel to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ReadChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ReadChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.UpdateChannelOptions">
            <summary>
            UpdateChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateChannelOptions.PathSid">
            <summary>
            The SID of the Channel resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateChannelOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateChannelOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateChannelOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateChannelOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateChannelOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateChannelOptions.CreatedBy">
            <summary>
            The identity of the User that created the Channel
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UpdateChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UpdateChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.Fetch(Twilio.Rest.Chat.V2.Service.FetchChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.FetchAsync(Twilio.Rest.Chat.V2.Service.FetchChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.Delete(Twilio.Rest.Chat.V2.Service.DeleteChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.DeleteAsync(Twilio.Rest.Chat.V2.Service.DeleteChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.Create(Twilio.Rest.Chat.V2.Service.CreateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.CreateAsync(Twilio.Rest.Chat.V2.Service.CreateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.Create(System.String,System.String,System.String,System.String,Twilio.Rest.Chat.V2.Service.ChannelResource.ChannelTypeEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Channel resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Channel resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="type"> The visibility of the channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The identity of the User that created the Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Rest.Chat.V2.Service.ChannelResource.ChannelTypeEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Channel resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Channel resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="type"> The visibility of the channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The identity of the User that created the Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.Read(Twilio.Rest.Chat.V2.Service.ReadChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.ReadAsync(Twilio.Rest.Chat.V2.Service.ReadChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.Read(System.String,System.Collections.Generic.List{Twilio.Rest.Chat.V2.Service.ChannelResource.ChannelTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="type"> The visibility of the channel to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.ReadAsync(System.String,System.Collections.Generic.List{Twilio.Rest.Chat.V2.Service.ChannelResource.ChannelTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="type"> The visibility of the channel to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.ChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.ChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.Update(Twilio.Rest.Chat.V2.Service.UpdateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.UpdateAsync(Twilio.Rest.Chat.V2.Service.UpdateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.Update(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The identity of the User that created the Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The identity of the User that created the Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.Type">
            <summary>
            The visibility of the channel. Can be: `public` or `private`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.CreatedBy">
            <summary>
            The identity of the User that created the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.MembersCount">
            <summary>
            The number of Members in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.MessagesCount">
            <summary>
            The number of Messages that have been passed in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.Url">
            <summary>
            The absolute URL of the Channel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ChannelResource.Links">
            <summary>
            Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.FetchInviteOptions">
            <summary>
            FetchInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to fetch belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchInviteOptions.PathSid">
            <summary>
            The SID of the Invite resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.FetchInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.FetchInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.CreateInviteOptions">
            <summary>
            CreateInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateInviteOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateInviteOptions.RoleSid">
            <summary>
            The Role assigned to the new member
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.CreateInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.CreateInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.ReadInviteOptions">
            <summary>
            ReadInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.ReadInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.ReadInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resources to read belong to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.ReadInviteOptions.Identity">
            <summary>
            The `identity` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.ReadInviteOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.ReadInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.DeleteInviteOptions">
            <summary>
            DeleteInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteInviteOptions.PathSid">
            <summary>
            The SID of the Invite resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.DeleteInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.DeleteInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.Fetch(Twilio.Rest.Chat.V2.Service.Channel.FetchInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.FetchAsync(Twilio.Rest.Chat.V2.Service.Channel.FetchInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.Create(Twilio.Rest.Chat.V2.Service.Channel.CreateInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.CreateAsync(Twilio.Rest.Chat.V2.Service.Channel.CreateInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The Role assigned to the new member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The Role assigned to the new member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.Read(Twilio.Rest.Chat.V2.Service.Channel.ReadInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.ReadAsync(Twilio.Rest.Chat.V2.Service.Channel.ReadInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.Read(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.ReadAsync(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.Channel.InviteResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.Channel.InviteResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.Delete(Twilio.Rest.Chat.V2.Service.Channel.DeleteInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.DeleteAsync(Twilio.Rest.Chat.V2.Service.Channel.DeleteInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a InviteResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> InviteResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.ChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.RoleSid">
            <summary>
            The SID of the Role assigned to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.CreatedBy">
            <summary>
            The identity of the User that created the invite
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.InviteResource.Url">
            <summary>
            The absolute URL of the Invite resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.FetchMemberOptions">
            <summary>
            FetchMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchMemberOptions.PathChannelSid">
            <summary>
            The SID of the channel the member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchMemberOptions.PathSid">
            <summary>
            The SID of the Member resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.FetchMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
            <param name="pathSid"> The SID of the Member resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.FetchMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions">
            <summary>
            CreateMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions.PathChannelSid">
            <summary>
            The SID of the channel the new member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions.RoleSid">
            <summary>
            The SID of the Role to assign to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions.LastConsumedMessageIndex">
            <summary>
            The index of the last Message in the Channel the Member has read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions.LastConsumptionTimestamp">
            <summary>
            The ISO 8601 based timestamp string representing the datetime of the last Message read event for the member within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.ReadMemberOptions">
            <summary>
            ReadMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.ReadMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.ReadMemberOptions.PathChannelSid">
            <summary>
            The SID of the channel the member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.ReadMemberOptions.Identity">
            <summary>
            The `identity` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.ReadMemberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.ReadMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.DeleteMemberOptions">
            <summary>
            DeleteMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteMemberOptions.PathChannelSid">
            <summary>
            The SID of the channel the Member resource to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteMemberOptions.PathSid">
            <summary>
            The SID of the Member resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.DeleteMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the Member resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Member resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.DeleteMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions">
            <summary>
            UpdateMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions.PathChannelSid">
            <summary>
            The SID of the channel the member to update belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions.PathSid">
            <summary>
            The SID of the Member resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions.RoleSid">
            <summary>
            The SID of the Role to assign to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions.LastConsumedMessageIndex">
            <summary>
            The index of the last consumed Message for the Channel for the Member
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions.LastConsumptionTimestamp">
            <summary>
            The ISO 8601 based timestamp string representing the datetime of the last Message read event for the Member within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the member to update belongs to </param>
            <param name="pathSid"> The SID of the Member resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Fetch(Twilio.Rest.Chat.V2.Service.Channel.FetchMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.FetchAsync(Twilio.Rest.Chat.V2.Service.Channel.FetchMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
            <param name="pathSid"> The SID of the Member resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
            <param name="pathSid"> The SID of the Member resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Create(Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.CreateAsync(Twilio.Rest.Chat.V2.Service.Channel.CreateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Create(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last Message in the Channel the Member has read </param>
            <param name="lastConsumptionTimestamp"> The ISO 8601 based timestamp string representing the datetime of the last
                                           Message read event for the member within the Channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.CreateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last Message in the Channel the Member has read </param>
            <param name="lastConsumptionTimestamp"> The ISO 8601 based timestamp string representing the datetime of the last
                                           Message read event for the member within the Channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Read(Twilio.Rest.Chat.V2.Service.Channel.ReadMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.ReadAsync(Twilio.Rest.Chat.V2.Service.Channel.ReadMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Read(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.ReadAsync(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.Channel.MemberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.Channel.MemberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Delete(Twilio.Rest.Chat.V2.Service.Channel.DeleteMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.DeleteAsync(Twilio.Rest.Chat.V2.Service.Channel.DeleteMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the Member resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Member resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the Member resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Member resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Update(Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.UpdateAsync(Twilio.Rest.Chat.V2.Service.Channel.UpdateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Update(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the member to update belongs to </param>
            <param name="pathSid"> The SID of the Member resource to update </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last consumed Message for the Channel for the Member
                                           </param>
            <param name="lastConsumptionTimestamp"> The ISO 8601 based timestamp string representing the datetime of the last
                                           Message read event for the Member within the Channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the member to update belongs to </param>
            <param name="pathSid"> The SID of the Member resource to update </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last consumed Message for the Channel for the Member
                                           </param>
            <param name="lastConsumptionTimestamp"> The ISO 8601 based timestamp string representing the datetime of the last
                                           Message read event for the Member within the Channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MemberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MemberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.ChannelSid">
            <summary>
            The SID of the Channel for the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.RoleSid">
            <summary>
            The SID of the Role assigned to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.LastConsumedMessageIndex">
            <summary>
            The index of the last Message that the Member has read within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.LastConsumptionTimestamp">
            <summary>
            The ISO 8601 based timestamp string that represents the datetime of the last Message read event for the Member within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Url">
            <summary>
            The absolute URL of the Member resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MemberResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.FetchMessageOptions">
            <summary>
            FetchMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchMessageOptions.PathChannelSid">
            <summary>
            The SID of the Channel the message to fetch belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchMessageOptions.PathSid">
            <summary>
            The SID of the Message resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.FetchMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The SID of the Message resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.FetchMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions">
            <summary>
            CreateMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions.PathChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions.From">
            <summary>
            The Identity of the new message's author
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions.LastUpdatedBy">
            <summary>
            The Identity of the User who last updated the Message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions.Body">
            <summary>
            The message to send to the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions.MediaSid">
            <summary>
             The Media Sid to be attached to the new Message
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.ReadMessageOptions">
            <summary>
            ReadMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.ReadMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.ReadMessageOptions.PathChannelSid">
            <summary>
            The SID of the Channel the message to read belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.ReadMessageOptions.Order">
            <summary>
            The sort order of the returned messages
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.ReadMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to read belongs to </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.ReadMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.DeleteMessageOptions">
            <summary>
            DeleteMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteMessageOptions.PathChannelSid">
            <summary>
            The SID of the Channel the message to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteMessageOptions.PathSid">
            <summary>
            The SID of the Message resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.DeleteMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to delete belongs to </param>
            <param name="pathSid"> The SID of the Message resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.DeleteMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions">
            <summary>
            UpdateMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions.PathChannelSid">
            <summary>
            The SID of the Channel the message belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions.PathSid">
            <summary>
            The SID of the Message resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions.Body">
            <summary>
            The message to send to the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions.LastUpdatedBy">
            <summary>
            The Identity of the User who last updated the Message, if applicable
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions.From">
            <summary>
            The Identity of the message's author
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message belongs to </param>
            <param name="pathSid"> The SID of the Message resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Fetch(Twilio.Rest.Chat.V2.Service.Channel.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.FetchAsync(Twilio.Rest.Chat.V2.Service.Channel.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The SID of the Message resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The SID of the Message resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Create(Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.CreateAsync(Twilio.Rest.Chat.V2.Service.Channel.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Create(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="from"> The Identity of the new message's author </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="lastUpdatedBy"> The Identity of the User who last updated the Message </param>
            <param name="body"> The message to send to the channel </param>
            <param name="mediaSid">  The Media Sid to be attached to the new Message </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.CreateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="from"> The Identity of the new message's author </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="lastUpdatedBy"> The Identity of the User who last updated the Message </param>
            <param name="body"> The message to send to the channel </param>
            <param name="mediaSid">  The Media Sid to be attached to the new Message </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Read(Twilio.Rest.Chat.V2.Service.Channel.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.ReadAsync(Twilio.Rest.Chat.V2.Service.Channel.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Read(System.String,System.String,Twilio.Rest.Chat.V2.Service.Channel.MessageResource.OrderTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to read belongs to </param>
            <param name="order"> The sort order of the returned messages </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.ReadAsync(System.String,System.String,Twilio.Rest.Chat.V2.Service.Channel.MessageResource.OrderTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to read belongs to </param>
            <param name="order"> The sort order of the returned messages </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.Channel.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.Channel.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Delete(Twilio.Rest.Chat.V2.Service.Channel.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.DeleteAsync(Twilio.Rest.Chat.V2.Service.Channel.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to delete belongs to </param>
            <param name="pathSid"> The SID of the Message resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to delete belongs to </param>
            <param name="pathSid"> The SID of the Message resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Update(Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.UpdateAsync(Twilio.Rest.Chat.V2.Service.Channel.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Update(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message belongs to </param>
            <param name="pathSid"> The SID of the Message resource to update </param>
            <param name="body"> The message to send to the channel </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="lastUpdatedBy"> The Identity of the User who last updated the Message, if applicable </param>
            <param name="from"> The Identity of the message's author </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message belongs to </param>
            <param name="pathSid"> The SID of the Message resource to update </param>
            <param name="body"> The message to send to the channel </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="lastUpdatedBy"> The Identity of the User who last updated the Message, if applicable </param>
            <param name="from"> The Identity of the message's author </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MessageResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MessageResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.To">
            <summary>
            The SID of the Channel that the message was sent to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.ChannelSid">
            <summary>
            The SID of the Channel the Message resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.LastUpdatedBy">
            <summary>
            The Identity of the User who last updated the Message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.WasEdited">
            <summary>
            Whether the message has been edited since  it was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.From">
            <summary>
            The Identity of the message's author
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Body">
            <summary>
            The content of the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Index">
            <summary>
            The index of the message within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Type">
            <summary>
            The Message type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Media">
            <summary>
            A Media object that describes the Message's media if attached; otherwise, null
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.MessageResource.Url">
            <summary>
            The absolute URL of the Message resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.ReadWebhookOptions">
            <summary>
            ReadWebhookOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.ReadWebhookOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.ReadWebhookOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resources to read belong to
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.ReadWebhookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadWebhookOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.ReadWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.FetchWebhookOptions">
            <summary>
            FetchWebhookOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchWebhookOptions.PathServiceSid">
            <summary>
            The SID of the Service with the Channel to fetch the Webhook resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchWebhookOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to fetch belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.FetchWebhookOptions.PathSid">
            <summary>
            The SID of the Channel Webhook resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.FetchWebhookOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchWebhookOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to fetch the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.FetchWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions">
            <summary>
            CreateWebhookOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions.PathServiceSid">
            <summary>
            The SID of the Service with the Channel to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions.PathChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions.Type">
            <summary>
            The type of webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions.ConfigurationUrl">
            <summary>
            The URL of the webhook to call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions.ConfigurationMethod">
            <summary>
            The HTTP method used to call `configuration.url`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions.ConfigurationFilters">
            <summary>
            The events that cause us to call the Channel Webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions.ConfigurationTriggers">
            <summary>
            A string that will cause us to call the webhook when it is found in a message body
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions.ConfigurationFlowSid">
            <summary>
            The SID of the Studio Flow to call when an event occurs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions.ConfigurationRetryCount">
            <summary>
            The number of times to retry the webhook if the first attempt fails
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions.#ctor(System.String,System.String,Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.TypeEnum)">
            <summary>
            Construct a new CreateWebhookOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="type"> The type of webhook </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions">
            <summary>
            UpdateWebhookOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions.PathServiceSid">
            <summary>
            The SID of the Service with the Channel that has the Webhook resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to update belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions.PathSid">
            <summary>
            The SID of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions.ConfigurationUrl">
            <summary>
            The URL of the webhook to call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions.ConfigurationMethod">
            <summary>
            The HTTP method used to call `configuration.url`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions.ConfigurationFilters">
            <summary>
            The events that cause us to call the Channel Webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions.ConfigurationTriggers">
            <summary>
            A string that will cause us to call the webhook when it is found in a message body
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions.ConfigurationFlowSid">
            <summary>
            The SID of the Studio Flow to call when an event occurs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions.ConfigurationRetryCount">
            <summary>
            The number of times to retry the webhook if the first attempt fails
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateWebhookOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel that has the Webhook resource to update
                                 </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to update belongs to </param>
            <param name="pathSid"> The SID of the resource </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.Channel.DeleteWebhookOptions">
            <summary>
            DeleteWebhookOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteWebhookOptions.PathServiceSid">
            <summary>
            The SID of the Service with the Channel to delete the Webhook resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteWebhookOptions.PathChannelSid">
            <summary>
            The SID of the channel the resource to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.DeleteWebhookOptions.PathSid">
            <summary>
            The SID of the Channel Webhook resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.DeleteWebhookOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteWebhookOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to delete the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.DeleteWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Read(Twilio.Rest.Chat.V2.Service.Channel.ReadWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.ReadAsync(Twilio.Rest.Chat.V2.Service.Channel.ReadWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.Channel.WebhookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.Channel.WebhookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Fetch(Twilio.Rest.Chat.V2.Service.Channel.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.FetchAsync(Twilio.Rest.Chat.V2.Service.Channel.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to fetch the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to fetch the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Create(Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.CreateAsync(Twilio.Rest.Chat.V2.Service.Channel.CreateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Create(System.String,System.String,Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.TypeEnum,System.String,Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="type"> The type of webhook </param>
            <param name="configurationUrl"> The URL of the webhook to call </param>
            <param name="configurationMethod"> The HTTP method used to call `configuration.url` </param>
            <param name="configurationFilters"> The events that cause us to call the Channel Webhook </param>
            <param name="configurationTriggers"> A string that will cause us to call the webhook when it is found in a message
                                        body </param>
            <param name="configurationFlowSid"> The SID of the Studio Flow to call when an event occurs </param>
            <param name="configurationRetryCount"> The number of times to retry the webhook if the first attempt fails </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.CreateAsync(System.String,System.String,Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.TypeEnum,System.String,Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="type"> The type of webhook </param>
            <param name="configurationUrl"> The URL of the webhook to call </param>
            <param name="configurationMethod"> The HTTP method used to call `configuration.url` </param>
            <param name="configurationFilters"> The events that cause us to call the Channel Webhook </param>
            <param name="configurationTriggers"> A string that will cause us to call the webhook when it is found in a message
                                        body </param>
            <param name="configurationFlowSid"> The SID of the Studio Flow to call when an event occurs </param>
            <param name="configurationRetryCount"> The number of times to retry the webhook if the first attempt fails </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Update(Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.UpdateAsync(Twilio.Rest.Chat.V2.Service.Channel.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Update(System.String,System.String,System.String,System.String,Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel that has the Webhook resource to update
                                 </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to update belongs to </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="configurationUrl"> The URL of the webhook to call </param>
            <param name="configurationMethod"> The HTTP method used to call `configuration.url` </param>
            <param name="configurationFilters"> The events that cause us to call the Channel Webhook </param>
            <param name="configurationTriggers"> A string that will cause us to call the webhook when it is found in a message
                                        body </param>
            <param name="configurationFlowSid"> The SID of the Studio Flow to call when an event occurs </param>
            <param name="configurationRetryCount"> The number of times to retry the webhook if the first attempt fails </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.UpdateAsync(System.String,System.String,System.String,System.String,Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel that has the Webhook resource to update
                                 </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to update belongs to </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="configurationUrl"> The URL of the webhook to call </param>
            <param name="configurationMethod"> The HTTP method used to call `configuration.url` </param>
            <param name="configurationFilters"> The events that cause us to call the Channel Webhook </param>
            <param name="configurationTriggers"> A string that will cause us to call the webhook when it is found in a message
                                        body </param>
            <param name="configurationFlowSid"> The SID of the Studio Flow to call when an event occurs </param>
            <param name="configurationRetryCount"> The number of times to retry the webhook if the first attempt fails </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Delete(Twilio.Rest.Chat.V2.Service.Channel.DeleteWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.DeleteAsync(Twilio.Rest.Chat.V2.Service.Channel.DeleteWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to delete the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to delete the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WebhookResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WebhookResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.ServiceSid">
            <summary>
            The SID of the Service that the Channel Webhook resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.ChannelSid">
            <summary>
            The SID of the Channel the Channel Webhook resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Type">
            <summary>
            The type of webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Url">
            <summary>
            The absolute URL of the Channel Webhook resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.Configuration">
            <summary>
            The JSON string that describes the configuration object for the channel webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.Channel.WebhookResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.FetchRoleOptions">
            <summary>
            FetchRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.FetchRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.FetchRoleOptions.PathSid">
            <summary>
            The SID of the Role resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.FetchRoleOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the Role resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.FetchRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.DeleteRoleOptions">
            <summary>
            DeleteRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.DeleteRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.DeleteRoleOptions.PathSid">
            <summary>
            The SID of the Role resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.DeleteRoleOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Role resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.DeleteRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.CreateRoleOptions">
            <summary>
            CreateRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateRoleOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateRoleOptions.Type">
            <summary>
            The type of role
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateRoleOptions.Permission">
            <summary>
            A permission the role should have
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.CreateRoleOptions.#ctor(System.String,System.String,Twilio.Rest.Chat.V2.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String})">
            <summary>
            Construct a new CreateRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.CreateRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.ReadRoleOptions">
            <summary>
            ReadRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ReadRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ReadRoleOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ReadRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.UpdateRoleOptions">
            <summary>
            UpdateRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateRoleOptions.PathSid">
            <summary>
            The SID of the Role resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateRoleOptions.Permission">
            <summary>
            A permission the role should have
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UpdateRoleOptions.#ctor(System.String,System.String,System.Collections.Generic.List{System.String})">
            <summary>
            Construct a new UpdateRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Role resource to update </param>
            <param name="permission"> A permission the role should have </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UpdateRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.Fetch(Twilio.Rest.Chat.V2.Service.FetchRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.FetchAsync(Twilio.Rest.Chat.V2.Service.FetchRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the Role resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the Role resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.Delete(Twilio.Rest.Chat.V2.Service.DeleteRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.DeleteAsync(Twilio.Rest.Chat.V2.Service.DeleteRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Role resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Role resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.Create(Twilio.Rest.Chat.V2.Service.CreateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.CreateAsync(Twilio.Rest.Chat.V2.Service.CreateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.Create(System.String,System.String,Twilio.Rest.Chat.V2.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.CreateAsync(System.String,System.String,Twilio.Rest.Chat.V2.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.Read(Twilio.Rest.Chat.V2.Service.ReadRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.ReadAsync(Twilio.Rest.Chat.V2.Service.ReadRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.RoleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.RoleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.Update(Twilio.Rest.Chat.V2.Service.UpdateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.UpdateAsync(Twilio.Rest.Chat.V2.Service.UpdateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.Update(System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Role resource to update </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.UpdateAsync(System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Role resource to update </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.RoleResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RoleResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RoleResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.RoleResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.RoleResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.RoleResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.RoleResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.RoleResource.Type">
            <summary>
            The type of role
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.RoleResource.Permissions">
            <summary>
            An array of the permissions the role has been granted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.RoleResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.RoleResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.RoleResource.Url">
            <summary>
            The absolute URL of the Role resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.FetchUserOptions">
            <summary>
            FetchUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.FetchUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.FetchUserOptions.PathSid">
            <summary>
            The SID of the User resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.FetchUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the User resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.FetchUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.DeleteUserOptions">
            <summary>
            DeleteUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.DeleteUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.DeleteUserOptions.PathSid">
            <summary>
            The SID of  the User resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.DeleteUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of  the User resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.DeleteUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.CreateUserOptions">
            <summary>
            CreateUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the new resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateUserOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateUserOptions.RoleSid">
            <summary>
            The SID of the Role assigned to this user
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateUserOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.CreateUserOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.CreateUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.CreateUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.ReadUserOptions">
            <summary>
            ReadUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.ReadUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the User resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ReadUserOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the User resources from </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.ReadUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.UpdateUserOptions">
            <summary>
            UpdateUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateUserOptions.PathSid">
            <summary>
            The SID of the User resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateUserOptions.RoleSid">
            <summary>
            The SID id of the Role assigned to this user
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateUserOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UpdateUserOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UpdateUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the User resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UpdateUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.Fetch(Twilio.Rest.Chat.V2.Service.FetchUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.FetchAsync(Twilio.Rest.Chat.V2.Service.FetchUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the User resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the User resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.Delete(Twilio.Rest.Chat.V2.Service.DeleteUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.DeleteAsync(Twilio.Rest.Chat.V2.Service.DeleteUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of  the User resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of  the User resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.Create(Twilio.Rest.Chat.V2.Service.CreateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.CreateAsync(Twilio.Rest.Chat.V2.Service.CreateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.Read(Twilio.Rest.Chat.V2.Service.ReadUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.ReadAsync(Twilio.Rest.Chat.V2.Service.ReadUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the User resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the User resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.UserResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.UserResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.Update(Twilio.Rest.Chat.V2.Service.UpdateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.UpdateAsync(Twilio.Rest.Chat.V2.Service.UpdateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.Update(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the User resource to update </param>
            <param name="roleSid"> The SID id of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the User resource to update </param>
            <param name="roleSid"> The SID id of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.UserResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UserResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UserResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.RoleSid">
            <summary>
            The SID of the assigned to the user
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.IsOnline">
            <summary>
            Whether the User is actively connected to the Service instance and online
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.IsNotifiable">
            <summary>
            Whether the User has a potentially valid Push Notification registration for the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.JoinedChannelsCount">
            <summary>
            The number of Channels the User is a Member of
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.Links">
            <summary>
            The absolute URLs of the Channel and Binding resources related to the user
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.UserResource.Url">
            <summary>
            The absolute URL of the User resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.User.ReadUserBindingOptions">
            <summary>
            ReadUserBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.ReadUserBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.ReadUserBindingOptions.PathUserSid">
            <summary>
            The SID of the User with the User Bindings to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.ReadUserBindingOptions.BindingType">
            <summary>
            The push technology used by the User Binding resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.ReadUserBindingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadUserBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
            <param name="pathUserSid"> The SID of the User with the User Bindings to read </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.ReadUserBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.User.FetchUserBindingOptions">
            <summary>
            FetchUserBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.FetchUserBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.FetchUserBindingOptions.PathUserSid">
            <summary>
            The SID of the User with the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.FetchUserBindingOptions.PathSid">
            <summary>
            The SID of the User Binding resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.FetchUserBindingOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchUserBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathUserSid"> The SID of the User with the binding </param>
            <param name="pathSid"> The SID of the User Binding resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.FetchUserBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.User.DeleteUserBindingOptions">
            <summary>
            DeleteUserBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.DeleteUserBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.DeleteUserBindingOptions.PathUserSid">
            <summary>
            The SID of the User of the User Bindings to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.DeleteUserBindingOptions.PathSid">
            <summary>
            The SID of the User Binding resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.DeleteUserBindingOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteUserBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathUserSid"> The SID of the User of the User Bindings to delete </param>
            <param name="pathSid"> The SID of the User Binding resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.DeleteUserBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.Read(Twilio.Rest.Chat.V2.Service.User.ReadUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.ReadAsync(Twilio.Rest.Chat.V2.Service.User.ReadUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.Read(System.String,System.String,System.Collections.Generic.List{Twilio.Rest.Chat.V2.Service.User.UserBindingResource.BindingTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
            <param name="pathUserSid"> The SID of the User with the User Bindings to read </param>
            <param name="bindingType"> The push technology used by the User Binding resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.ReadAsync(System.String,System.String,System.Collections.Generic.List{Twilio.Rest.Chat.V2.Service.User.UserBindingResource.BindingTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
            <param name="pathUserSid"> The SID of the User with the User Bindings to read </param>
            <param name="bindingType"> The push technology used by the User Binding resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.User.UserBindingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.User.UserBindingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.Fetch(Twilio.Rest.Chat.V2.Service.User.FetchUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.FetchAsync(Twilio.Rest.Chat.V2.Service.User.FetchUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathUserSid"> The SID of the User with the binding </param>
            <param name="pathSid"> The SID of the User Binding resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathUserSid"> The SID of the User with the binding </param>
            <param name="pathSid"> The SID of the User Binding resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.Delete(Twilio.Rest.Chat.V2.Service.User.DeleteUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.DeleteAsync(Twilio.Rest.Chat.V2.Service.User.DeleteUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathUserSid"> The SID of the User of the User Bindings to delete </param>
            <param name="pathSid"> The SID of the User Binding resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathUserSid"> The SID of the User of the User Bindings to delete </param>
            <param name="pathSid"> The SID of the User Binding resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UserBindingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UserBindingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.Endpoint">
            <summary>
            The unique endpoint identifier for the User Binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.UserSid">
            <summary>
            The SID of the User with the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.CredentialSid">
            <summary>
            The SID of the Credential for the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.BindingType">
            <summary>
            The push technology to use for the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.MessageTypes">
            <summary>
            The Programmable Chat message types the binding is subscribed to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserBindingResource.Url">
            <summary>
            The absolute URL of the User Binding resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.User.ReadUserChannelOptions">
            <summary>
            List all Channels for a given User.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.ReadUserChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.ReadUserChannelOptions.PathUserSid">
            <summary>
            The SID of the User to fetch the User Channel resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.ReadUserChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadUserChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.ReadUserChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.User.FetchUserChannelOptions">
            <summary>
            FetchUserChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.FetchUserChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the User Channel resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.FetchUserChannelOptions.PathUserSid">
            <summary>
            The SID of the User to fetch the User Channel resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.FetchUserChannelOptions.PathChannelSid">
            <summary>
            The SID of the Channel that has the User Channel to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.FetchUserChannelOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchUserChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the User Channel resource from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel that has the User Channel to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.FetchUserChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Chat.V2.Service.User.UpdateUserChannelOptions">
            <summary>
            UpdateUserChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UpdateUserChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UpdateUserChannelOptions.PathUserSid">
            <summary>
            The SID of the User to update the User Channel resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UpdateUserChannelOptions.PathChannelSid">
            <summary>
            The SID of the Channel with the User Channel resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UpdateUserChannelOptions.NotificationLevel">
            <summary>
            The push notification level to assign to the User Channel
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UpdateUserChannelOptions.#ctor(System.String,System.String,System.String,Twilio.Rest.Chat.V2.Service.User.UserChannelResource.NotificationLevelEnum)">
            <summary>
            Construct a new UpdateUserChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathUserSid"> The SID of the User to update the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel with the User Channel resource to update </param>
            <param name="notificationLevel"> The push notification level to assign to the User Channel </param>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UpdateUserChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.Read(Twilio.Rest.Chat.V2.Service.User.ReadUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="options"> Read UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.ReadAsync(Twilio.Rest.Chat.V2.Service.User.ReadUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="options"> Read UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.User.UserChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Chat.V2.Service.User.UserChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.Fetch(Twilio.Rest.Chat.V2.Service.User.FetchUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.FetchAsync(Twilio.Rest.Chat.V2.Service.User.FetchUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the User Channel resource from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel that has the User Channel to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the User Channel resource from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel that has the User Channel to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.Update(Twilio.Rest.Chat.V2.Service.User.UpdateUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.UpdateAsync(Twilio.Rest.Chat.V2.Service.User.UpdateUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.Update(System.String,System.String,System.String,Twilio.Rest.Chat.V2.Service.User.UserChannelResource.NotificationLevelEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathUserSid"> The SID of the User to update the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel with the User Channel resource to update </param>
            <param name="notificationLevel"> The push notification level to assign to the User Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.UpdateAsync(System.String,System.String,System.String,Twilio.Rest.Chat.V2.Service.User.UserChannelResource.NotificationLevelEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathUserSid"> The SID of the User to update the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel with the User Channel resource to update </param>
            <param name="notificationLevel"> The push notification level to assign to the User Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UserChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UserChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.ChannelSid">
            <summary>
            The SID of the Channel the resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.UserSid">
            <summary>
            The SID of the User the User Channel belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.MemberSid">
            <summary>
            The SID of the User as a Member in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.Status">
            <summary>
            The status of the User on the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.LastConsumedMessageIndex">
            <summary>
            The index of the last Message in the Channel the Member has read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.UnreadMessagesCount">
            <summary>
            The number of unread Messages in the Channel for the User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.Links">
            <summary>
            Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Chat.V2.Service.User.UserChannelResource.NotificationLevel">
            <summary>
            The push notification level of the User for the Channel
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.CreateConversationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateConversationOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.CreateConversationOptions.FriendlyName">
            <summary>
            The human-readable name of this conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.CreateConversationOptions.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.CreateConversationOptions.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.CreateConversationOptions.MessagingServiceSid">
            <summary>
            The unique id of the SMS Service this conversation belongs to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.CreateConversationOptions.Attributes">
            <summary>
            An optional string metadata field you can use to store any data you wish.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.CreateConversationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.UpdateConversationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateConversationOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.UpdateConversationOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.UpdateConversationOptions.FriendlyName">
            <summary>
            The human-readable name of this conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.UpdateConversationOptions.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.UpdateConversationOptions.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.UpdateConversationOptions.Attributes">
            <summary>
            An optional string metadata field you can use to store any data you wish.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.UpdateConversationOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateConversationOptions
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.UpdateConversationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.DeleteConversationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteConversationOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.DeleteConversationOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.DeleteConversationOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteConversationOptions
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.DeleteConversationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.FetchConversationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchConversationOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.FetchConversationOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.FetchConversationOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchConversationOptions
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.FetchConversationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.ReadConversationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadConversationOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ReadConversationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.Create(Twilio.Rest.Conversations.V1.CreateConversationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Conversation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.CreateAsync(Twilio.Rest.Conversations.V1.CreateConversationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Conversation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.Create(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> The human-readable name of this conversation. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="messagingServiceSid"> The unique id of the SMS Service this conversation belongs to. </param>
            <param name="attributes"> An optional string metadata field you can use to store any data you wish. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.CreateAsync(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> The human-readable name of this conversation. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="messagingServiceSid"> The unique id of the SMS Service this conversation belongs to. </param>
            <param name="attributes"> An optional string metadata field you can use to store any data you wish. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.Update(Twilio.Rest.Conversations.V1.UpdateConversationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Conversation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.UpdateAsync(Twilio.Rest.Conversations.V1.UpdateConversationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Conversation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.Update(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="friendlyName"> The human-readable name of this conversation. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="attributes"> An optional string metadata field you can use to store any data you wish. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.UpdateAsync(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="friendlyName"> The human-readable name of this conversation. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="attributes"> An optional string metadata field you can use to store any data you wish. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.Delete(Twilio.Rest.Conversations.V1.DeleteConversationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Conversation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.DeleteAsync(Twilio.Rest.Conversations.V1.DeleteConversationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Conversation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.Fetch(Twilio.Rest.Conversations.V1.FetchConversationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Conversation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.FetchAsync(Twilio.Rest.Conversations.V1.FetchConversationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Conversation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.Read(Twilio.Rest.Conversations.V1.ReadConversationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Conversation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.ReadAsync(Twilio.Rest.Conversations.V1.ReadConversationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Conversation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Conversation </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.NextPage(Twilio.Base.Page{Twilio.Rest.Conversations.V1.ConversationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Conversations.V1.ConversationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.ConversationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ConversationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ConversationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.ConversationResource.AccountSid">
            <summary>
            The unique id of the Account responsible for this conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.ConversationResource.ChatServiceSid">
            <summary>
            The unique id of the Chat Service this conversation belongs to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.ConversationResource.MessagingServiceSid">
            <summary>
            The unique id of the SMS Service this conversation belongs to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.ConversationResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.ConversationResource.FriendlyName">
            <summary>
            The human-readable name of this conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.ConversationResource.Attributes">
            <summary>
            An optional string metadata field you can use to store any data you wish.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.ConversationResource.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.ConversationResource.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.ConversationResource.Url">
            <summary>
            An absolute URL for this conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.ConversationResource.Links">
            <summary>
            Absolute URLs to access the Participants of this Conversation.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateMessageOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this message.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions.Author">
            <summary>
            The channel specific identifier of the message's author.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions.Body">
            <summary>
            The content of the message.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions.Attributes">
            <summary>
            A string metadata field you can use to store any data you wish.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions.MediaSid">
            <summary>
            The Media Sid to be attached to the new Message.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateMessageOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateMessageOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this message.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions.Author">
            <summary>
            The channel specific identifier of the message's author.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions.Body">
            <summary>
            The content of the message.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions.Attributes">
            <summary>
            A string metadata field you can use to store any data you wish.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateMessageOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.DeleteMessageOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteMessageOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.DeleteMessageOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this message.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.DeleteMessageOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.DeleteMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteMessageOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.DeleteMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.FetchMessageOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchMessageOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.FetchMessageOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this message.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.FetchMessageOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.FetchMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchMessageOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.FetchMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.ReadMessageOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadMessageOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ReadMessageOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for messages.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ReadMessageOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadMessageOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for messages. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ReadMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Create(Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.CreateAsync(Twilio.Rest.Conversations.V1.Conversation.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Create(System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
            <param name="author"> The channel specific identifier of the message's author. </param>
            <param name="body"> The content of the message. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="attributes"> A string metadata field you can use to store any data you wish. </param>
            <param name="mediaSid"> The Media Sid to be attached to the new Message. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.CreateAsync(System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
            <param name="author"> The channel specific identifier of the message's author. </param>
            <param name="body"> The content of the message. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="attributes"> A string metadata field you can use to store any data you wish. </param>
            <param name="mediaSid"> The Media Sid to be attached to the new Message. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Update(Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.UpdateAsync(Twilio.Rest.Conversations.V1.Conversation.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Update(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="author"> The channel specific identifier of the message's author. </param>
            <param name="body"> The content of the message. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="attributes"> A string metadata field you can use to store any data you wish. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="author"> The channel specific identifier of the message's author. </param>
            <param name="body"> The content of the message. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="attributes"> A string metadata field you can use to store any data you wish. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Delete(Twilio.Rest.Conversations.V1.Conversation.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.DeleteAsync(Twilio.Rest.Conversations.V1.Conversation.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Fetch(Twilio.Rest.Conversations.V1.Conversation.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.FetchAsync(Twilio.Rest.Conversations.V1.Conversation.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this message. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Read(Twilio.Rest.Conversations.V1.Conversation.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.ReadAsync(Twilio.Rest.Conversations.V1.Conversation.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for messages. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for messages. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.NextPage(Twilio.Base.Page{Twilio.Rest.Conversations.V1.Conversation.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Conversations.V1.Conversation.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.MessageResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MessageResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MessageResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.MessageResource.AccountSid">
            <summary>
            The unique id of the Account responsible for this message.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.MessageResource.ConversationSid">
            <summary>
            The unique id of the Conversation for this message.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Index">
            <summary>
            The index of the message within the Conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Author">
            <summary>
            The channel specific identifier of the message's author.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Body">
            <summary>
            The content of the message.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Media">
            <summary>
            An array of objects that describe the Message's media if attached, otherwise, null.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Attributes">
            <summary>
            A string metadata field you can use to store any data you wish.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.MessageResource.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.MessageResource.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.MessageResource.Url">
            <summary>
            An absolute URL for this message.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateParticipantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this participant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions.Identity">
            <summary>
            A unique string identifier for the conversation participant as Chat User.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions.MessagingBindingAddress">
            <summary>
            The address of the participant's device.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions.MessagingBindingProxyAddress">
            <summary>
            The address of the Twilio phone number that the participant is in contact with.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions.Attributes">
            <summary>
            An optional string metadata field you can use to store any data you wish.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateParticipantOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.UpdateParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateParticipantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateParticipantOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this participant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateParticipantOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateParticipantOptions.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateParticipantOptions.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateParticipantOptions.Attributes">
            <summary>
            An optional string metadata field you can use to store any data you wish.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.UpdateParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateParticipantOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.UpdateParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.DeleteParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteParticipantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.DeleteParticipantOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this participant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.DeleteParticipantOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.DeleteParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteParticipantOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.DeleteParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.FetchParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchParticipantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.FetchParticipantOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this participant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.FetchParticipantOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.FetchParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchParticipantOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.FetchParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.ReadParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadParticipantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ReadParticipantOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for participants.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ReadParticipantOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadParticipantOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for participants. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ReadParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Create(Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.CreateAsync(Twilio.Rest.Conversations.V1.Conversation.CreateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Create(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
            <param name="identity"> A unique string identifier for the conversation participant as Chat User. </param>
            <param name="messagingBindingAddress"> The address of the participant's device. </param>
            <param name="messagingBindingProxyAddress"> The address of the Twilio phone number that the participant is in
                                               contact with. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="attributes"> An optional string metadata field you can use to store any data you wish. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.CreateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
            <param name="identity"> A unique string identifier for the conversation participant as Chat User. </param>
            <param name="messagingBindingAddress"> The address of the participant's device. </param>
            <param name="messagingBindingProxyAddress"> The address of the Twilio phone number that the participant is in
                                               contact with. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="attributes"> An optional string metadata field you can use to store any data you wish. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Update(Twilio.Rest.Conversations.V1.Conversation.UpdateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.UpdateAsync(Twilio.Rest.Conversations.V1.Conversation.UpdateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Update(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="attributes"> An optional string metadata field you can use to store any data you wish. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.UpdateAsync(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="dateCreated"> The date that this resource was created. </param>
            <param name="dateUpdated"> The date that this resource was last updated. </param>
            <param name="attributes"> An optional string metadata field you can use to store any data you wish. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Delete(Twilio.Rest.Conversations.V1.Conversation.DeleteParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.DeleteAsync(Twilio.Rest.Conversations.V1.Conversation.DeleteParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Fetch(Twilio.Rest.Conversations.V1.Conversation.FetchParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.FetchAsync(Twilio.Rest.Conversations.V1.Conversation.FetchParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this participant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Read(Twilio.Rest.Conversations.V1.Conversation.ReadParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.ReadAsync(Twilio.Rest.Conversations.V1.Conversation.ReadParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for participants. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for participants. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.NextPage(Twilio.Base.Page{Twilio.Rest.Conversations.V1.Conversation.ParticipantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Conversations.V1.Conversation.ParticipantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ParticipantResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ParticipantResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.AccountSid">
            <summary>
            The unique id of the Account responsible for this participant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.ConversationSid">
            <summary>
            The unique id of the Conversation for this participant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Identity">
            <summary>
            A unique string identifier for the conversation participant as Chat User.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Attributes">
            <summary>
            An optional string metadata field you can use to store any data you wish.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.MessagingBinding">
            <summary>
            Information about how this participant exchanges messages with the conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ParticipantResource.Url">
            <summary>
            An absolute URL for this participant.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.ReadWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.ReadWebhookOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this webhook.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ReadWebhookOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadWebhookOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.ReadWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.FetchWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.FetchWebhookOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.FetchWebhookOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.FetchWebhookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchWebhookOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.FetchWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions.Target">
            <summary>
            The target of this webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions.ConfigurationUrl">
            <summary>
            The absolute url the webhook request should be sent to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions.ConfigurationMethod">
            <summary>
            The HTTP method to be used when sending a webhook request.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions.ConfigurationFilters">
            <summary>
            The list of events, firing webhook event for this Conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions.ConfigurationTriggers">
            <summary>
            The list of keywords, firing webhook event for this Conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions.ConfigurationFlowSid">
            <summary>
            The studio flow sid, where the webhook should be sent to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions.ConfigurationReplayAfter">
            <summary>
            The message index for which and it's successors the webhook will be replayed.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions.#ctor(System.String,Twilio.Rest.Conversations.V1.Conversation.WebhookResource.TargetEnum)">
            <summary>
            Construct a new CreateWebhookOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="target"> The target of this webhook. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions.ConfigurationUrl">
            <summary>
            The absolute url the webhook request should be sent to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions.ConfigurationMethod">
            <summary>
            The HTTP method to be used when sending a webhook request.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions.ConfigurationFilters">
            <summary>
            The list of events, firing webhook event for this Conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions.ConfigurationTriggers">
            <summary>
            The list of keywords, firing webhook event for this Conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions.ConfigurationFlowSid">
            <summary>
            The studio flow sid, where the webhook should be sent to.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateWebhookOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.Conversation.DeleteWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.DeleteWebhookOptions.PathConversationSid">
            <summary>
            The unique id of the Conversation for this webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.DeleteWebhookOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.DeleteWebhookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteWebhookOptions
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.DeleteWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Read(Twilio.Rest.Conversations.V1.Conversation.ReadWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.ReadAsync(Twilio.Rest.Conversations.V1.Conversation.ReadWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.NextPage(Twilio.Base.Page{Twilio.Rest.Conversations.V1.Conversation.WebhookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Conversations.V1.Conversation.WebhookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Fetch(Twilio.Rest.Conversations.V1.Conversation.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.FetchAsync(Twilio.Rest.Conversations.V1.Conversation.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Create(Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.CreateAsync(Twilio.Rest.Conversations.V1.Conversation.CreateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Create(System.String,Twilio.Rest.Conversations.V1.Conversation.WebhookResource.TargetEnum,System.String,Twilio.Rest.Conversations.V1.Conversation.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="target"> The target of this webhook. </param>
            <param name="configurationUrl"> The absolute url the webhook request should be sent to. </param>
            <param name="configurationMethod"> The HTTP method to be used when sending a webhook request. </param>
            <param name="configurationFilters"> The list of events, firing webhook event for this Conversation. </param>
            <param name="configurationTriggers"> The list of keywords, firing webhook event for this Conversation. </param>
            <param name="configurationFlowSid"> The studio flow sid, where the webhook should be sent to. </param>
            <param name="configurationReplayAfter"> The message index for which and it's successors the webhook will be
                                           replayed. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.CreateAsync(System.String,Twilio.Rest.Conversations.V1.Conversation.WebhookResource.TargetEnum,System.String,Twilio.Rest.Conversations.V1.Conversation.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="target"> The target of this webhook. </param>
            <param name="configurationUrl"> The absolute url the webhook request should be sent to. </param>
            <param name="configurationMethod"> The HTTP method to be used when sending a webhook request. </param>
            <param name="configurationFilters"> The list of events, firing webhook event for this Conversation. </param>
            <param name="configurationTriggers"> The list of keywords, firing webhook event for this Conversation. </param>
            <param name="configurationFlowSid"> The studio flow sid, where the webhook should be sent to. </param>
            <param name="configurationReplayAfter"> The message index for which and it's successors the webhook will be
                                           replayed. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Update(Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.UpdateAsync(Twilio.Rest.Conversations.V1.Conversation.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Update(System.String,System.String,System.String,Twilio.Rest.Conversations.V1.Conversation.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="configurationUrl"> The absolute url the webhook request should be sent to. </param>
            <param name="configurationMethod"> The HTTP method to be used when sending a webhook request. </param>
            <param name="configurationFilters"> The list of events, firing webhook event for this Conversation. </param>
            <param name="configurationTriggers"> The list of keywords, firing webhook event for this Conversation. </param>
            <param name="configurationFlowSid"> The studio flow sid, where the webhook should be sent to. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.UpdateAsync(System.String,System.String,System.String,Twilio.Rest.Conversations.V1.Conversation.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="configurationUrl"> The absolute url the webhook request should be sent to. </param>
            <param name="configurationMethod"> The HTTP method to be used when sending a webhook request. </param>
            <param name="configurationFilters"> The list of events, firing webhook event for this Conversation. </param>
            <param name="configurationTriggers"> The list of keywords, firing webhook event for this Conversation. </param>
            <param name="configurationFlowSid"> The studio flow sid, where the webhook should be sent to. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Delete(Twilio.Rest.Conversations.V1.Conversation.DeleteWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.DeleteAsync(Twilio.Rest.Conversations.V1.Conversation.DeleteWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathConversationSid"> The unique id of the Conversation for this webhook. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WebhookResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WebhookResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.AccountSid">
            <summary>
            The unique id of the Account responsible for this conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.ConversationSid">
            <summary>
            The unique id of the Conversation for this webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Target">
            <summary>
            The target of this webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Url">
            <summary>
            An absolute URL for this webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.Configuration">
            <summary>
            The configuration of this webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.DateCreated">
            <summary>
            The date that this resource was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.Conversation.WebhookResource.DateUpdated">
            <summary>
            The date that this resource was last updated.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.FetchWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchWebhookOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.FetchWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Conversations.V1.UpdateWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.UpdateWebhookOptions.Method">
            <summary>
            The HTTP method to be used when sending a webhook request.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.UpdateWebhookOptions.Filters">
            <summary>
            The list of webhook event triggers that are enabled for this Service.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.UpdateWebhookOptions.PreWebhookUrl">
            <summary>
            The absolute url the pre-event webhook request should be sent to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.UpdateWebhookOptions.PostWebhookUrl">
            <summary>
            The absolute url the post-event webhook request should be sent to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.UpdateWebhookOptions.Target">
            <summary>
            The routing target of the webhook.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.UpdateWebhookOptions.#ctor">
            <summary>
            Construct a new UpdateWebhookOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.UpdateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.WebhookResource.Fetch(Twilio.Rest.Conversations.V1.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.WebhookResource.FetchAsync(Twilio.Rest.Conversations.V1.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.WebhookResource.Fetch(Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.WebhookResource.FetchAsync(Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.WebhookResource.Update(Twilio.Rest.Conversations.V1.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.WebhookResource.UpdateAsync(Twilio.Rest.Conversations.V1.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.WebhookResource.Update(System.String,System.Collections.Generic.List{System.String},System.String,System.String,Twilio.Rest.Conversations.V1.WebhookResource.TargetEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="method"> The HTTP method to be used when sending a webhook request. </param>
            <param name="filters"> The list of webhook event triggers that are enabled for this Service. </param>
            <param name="preWebhookUrl"> The absolute url the pre-event webhook request should be sent to. </param>
            <param name="postWebhookUrl"> The absolute url the post-event webhook request should be sent to. </param>
            <param name="target"> The routing target of the webhook. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.WebhookResource.UpdateAsync(System.String,System.Collections.Generic.List{System.String},System.String,System.String,Twilio.Rest.Conversations.V1.WebhookResource.TargetEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="method"> The HTTP method to be used when sending a webhook request. </param>
            <param name="filters"> The list of webhook event triggers that are enabled for this Service. </param>
            <param name="preWebhookUrl"> The absolute url the pre-event webhook request should be sent to. </param>
            <param name="postWebhookUrl"> The absolute url the post-event webhook request should be sent to. </param>
            <param name="target"> The routing target of the webhook. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Conversations.V1.WebhookResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WebhookResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WebhookResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.WebhookResource.AccountSid">
            <summary>
            The unique id of the Account responsible for this conversation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.WebhookResource.Method">
            <summary>
            The HTTP method to be used when sending a webhook request.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.WebhookResource.Filters">
            <summary>
            The list of webhook event triggers that are enabled for this Service.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.WebhookResource.PreWebhookUrl">
            <summary>
            The absolute url the pre-event webhook request should be sent to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.WebhookResource.PostWebhookUrl">
            <summary>
            The absolute url the post-event webhook request should be sent to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.WebhookResource.Target">
            <summary>
            The routing target of the webhook.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Conversations.V1.WebhookResource.Url">
            <summary>
            An absolute URL for this webhook.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Fax.V1.FetchFaxOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific fax.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FetchFaxOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FetchFaxOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchFaxOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FetchFaxOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Fax.V1.ReadFaxOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all faxes.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.ReadFaxOptions.From">
            <summary>
            Retrieve only those faxes sent from this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.ReadFaxOptions.To">
            <summary>
            Retrieve only those faxes sent to this phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.ReadFaxOptions.DateCreatedOnOrBefore">
            <summary>
            Retrieve only faxes created on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.ReadFaxOptions.DateCreatedAfter">
            <summary>
            Retrieve only faxes created after this date
            </summary>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.ReadFaxOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Fax.V1.CreateFaxOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Create a new fax to send to a phone number or SIP endpoint.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.CreateFaxOptions.To">
            <summary>
            The phone number to receive the fax
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.CreateFaxOptions.MediaUrl">
            <summary>
            The URL of the PDF that contains the fax
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.CreateFaxOptions.Quality">
            <summary>
            The quality of this fax
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.CreateFaxOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.CreateFaxOptions.From">
            <summary>
            The number the fax was sent from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.CreateFaxOptions.SipAuthUsername">
            <summary>
            The username for SIP authentication
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.CreateFaxOptions.SipAuthPassword">
            <summary>
            The password for SIP authentication
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.CreateFaxOptions.StoreMedia">
            <summary>
            Whether to store a copy of the sent media
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.CreateFaxOptions.Ttl">
            <summary>
            How long in minutes to try to send the fax
            </summary>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.CreateFaxOptions.#ctor(System.String,System.Uri)">
            <summary>
            Construct a new CreateFaxOptions
            </summary>
            <param name="to"> The phone number to receive the fax </param>
            <param name="mediaUrl"> The URL of the PDF that contains the fax </param>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.CreateFaxOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Fax.V1.UpdateFaxOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update a specific fax.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.UpdateFaxOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.UpdateFaxOptions.Status">
            <summary>
            The new status of the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.UpdateFaxOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateFaxOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.UpdateFaxOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Fax.V1.DeleteFaxOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific fax and its associated media.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.DeleteFaxOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.DeleteFaxOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteFaxOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.DeleteFaxOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.Fetch(Twilio.Rest.Fax.V1.FetchFaxOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific fax.
            </summary>
            <param name="options"> Fetch Fax parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.FetchAsync(Twilio.Rest.Fax.V1.FetchFaxOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific fax.
            </summary>
            <param name="options"> Fetch Fax parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific fax.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific fax.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.Read(Twilio.Rest.Fax.V1.ReadFaxOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all faxes.
            </summary>
            <param name="options"> Read Fax parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.ReadAsync(Twilio.Rest.Fax.V1.ReadFaxOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all faxes.
            </summary>
            <param name="options"> Read Fax parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.Read(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all faxes.
            </summary>
            <param name="from"> Retrieve only those faxes sent from this phone number </param>
            <param name="to"> Retrieve only those faxes sent to this phone number </param>
            <param name="dateCreatedOnOrBefore"> Retrieve only faxes created on or before this date </param>
            <param name="dateCreatedAfter"> Retrieve only faxes created after this date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.ReadAsync(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all faxes.
            </summary>
            <param name="from"> Retrieve only those faxes sent from this phone number </param>
            <param name="to"> Retrieve only those faxes sent to this phone number </param>
            <param name="dateCreatedOnOrBefore"> Retrieve only faxes created on or before this date </param>
            <param name="dateCreatedAfter"> Retrieve only faxes created after this date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.NextPage(Twilio.Base.Page{Twilio.Rest.Fax.V1.FaxResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Fax.V1.FaxResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.Create(Twilio.Rest.Fax.V1.CreateFaxOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new fax to send to a phone number or SIP endpoint.
            </summary>
            <param name="options"> Create Fax parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.CreateAsync(Twilio.Rest.Fax.V1.CreateFaxOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new fax to send to a phone number or SIP endpoint.
            </summary>
            <param name="options"> Create Fax parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.Create(System.String,System.Uri,Twilio.Rest.Fax.V1.FaxResource.QualityEnum,System.Uri,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new fax to send to a phone number or SIP endpoint.
            </summary>
            <param name="to"> The phone number to receive the fax </param>
            <param name="mediaUrl"> The URL of the PDF that contains the fax </param>
            <param name="quality"> The quality of this fax </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="from"> The number the fax was sent from </param>
            <param name="sipAuthUsername"> The username for SIP authentication </param>
            <param name="sipAuthPassword"> The password for SIP authentication </param>
            <param name="storeMedia"> Whether to store a copy of the sent media </param>
            <param name="ttl"> How long in minutes to try to send the fax </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.CreateAsync(System.String,System.Uri,Twilio.Rest.Fax.V1.FaxResource.QualityEnum,System.Uri,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new fax to send to a phone number or SIP endpoint.
            </summary>
            <param name="to"> The phone number to receive the fax </param>
            <param name="mediaUrl"> The URL of the PDF that contains the fax </param>
            <param name="quality"> The quality of this fax </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="from"> The number the fax was sent from </param>
            <param name="sipAuthUsername"> The username for SIP authentication </param>
            <param name="sipAuthPassword"> The password for SIP authentication </param>
            <param name="storeMedia"> Whether to store a copy of the sent media </param>
            <param name="ttl"> How long in minutes to try to send the fax </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.Update(Twilio.Rest.Fax.V1.UpdateFaxOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific fax.
            </summary>
            <param name="options"> Update Fax parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.UpdateAsync(Twilio.Rest.Fax.V1.UpdateFaxOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific fax.
            </summary>
            <param name="options"> Update Fax parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.Update(System.String,Twilio.Rest.Fax.V1.FaxResource.UpdateStatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific fax.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.UpdateAsync(System.String,Twilio.Rest.Fax.V1.FaxResource.UpdateStatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific fax.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.Delete(Twilio.Rest.Fax.V1.DeleteFaxOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific fax and its associated media.
            </summary>
            <param name="options"> Delete Fax parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.DeleteAsync(Twilio.Rest.Fax.V1.DeleteFaxOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific fax and its associated media.
            </summary>
            <param name="options"> Delete Fax parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific fax and its associated media.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific fax and its associated media.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fax </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.FaxResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FaxResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FaxResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.From">
            <summary>
            The number the fax was sent from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.To">
            <summary>
            The phone number that received the fax
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.Quality">
            <summary>
            The quality of the fax
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.MediaSid">
            <summary>
            The SID of the FaxMedia resource that is associated with the Fax
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.MediaUrl">
            <summary>
            The Twilio-hosted URL that can be used to download fax media
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.NumPages">
            <summary>
            The number of pages contained in the fax document
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.Duration">
            <summary>
            The time it took to transmit the fax
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.Status">
            <summary>
            The status of the fax
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.Direction">
            <summary>
            The direction of the fax
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.ApiVersion">
            <summary>
            The API version used to transmit the fax
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.Price">
            <summary>
            The fax transmission price
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.PriceUnit">
            <summary>
            The ISO 4217 currency used for billing
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.DateCreated">
            <summary>
            The ISO 8601 formatted date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.DateUpdated">
            <summary>
            The ISO 8601 formatted date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.Links">
            <summary>
            The URLs of the fax's related resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.FaxResource.Url">
            <summary>
            The absolute URL of the fax resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Fax.V1.Fax.FetchFaxMediaOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific fax media instance.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.FetchFaxMediaOptions.PathFaxSid">
            <summary>
            The SID of the fax with the FaxMedia resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.FetchFaxMediaOptions.PathSid">
            <summary>
            The unique string that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FetchFaxMediaOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchFaxMediaOptions
            </summary>
            <param name="pathFaxSid"> The SID of the fax with the FaxMedia resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FetchFaxMediaOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Fax.V1.Fax.ReadFaxMediaOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all fax media instances for the specified fax.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.ReadFaxMediaOptions.PathFaxSid">
            <summary>
            The SID of the fax with the FaxMedia resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.ReadFaxMediaOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadFaxMediaOptions
            </summary>
            <param name="pathFaxSid"> The SID of the fax with the FaxMedia resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.ReadFaxMediaOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Fax.V1.Fax.DeleteFaxMediaOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific fax media instance.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.DeleteFaxMediaOptions.PathFaxSid">
            <summary>
            The SID of the fax with the FaxMedia resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.DeleteFaxMediaOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.DeleteFaxMediaOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteFaxMediaOptions
            </summary>
            <param name="pathFaxSid"> The SID of the fax with the FaxMedia resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.DeleteFaxMediaOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.Fetch(Twilio.Rest.Fax.V1.Fax.FetchFaxMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific fax media instance.
            </summary>
            <param name="options"> Fetch FaxMedia parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.FetchAsync(Twilio.Rest.Fax.V1.Fax.FetchFaxMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific fax media instance.
            </summary>
            <param name="options"> Fetch FaxMedia parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific fax media instance.
            </summary>
            <param name="pathFaxSid"> The SID of the fax with the FaxMedia resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific fax media instance.
            </summary>
            <param name="pathFaxSid"> The SID of the fax with the FaxMedia resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.Read(Twilio.Rest.Fax.V1.Fax.ReadFaxMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all fax media instances for the specified fax.
            </summary>
            <param name="options"> Read FaxMedia parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.ReadAsync(Twilio.Rest.Fax.V1.Fax.ReadFaxMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all fax media instances for the specified fax.
            </summary>
            <param name="options"> Read FaxMedia parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all fax media instances for the specified fax.
            </summary>
            <param name="pathFaxSid"> The SID of the fax with the FaxMedia resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all fax media instances for the specified fax.
            </summary>
            <param name="pathFaxSid"> The SID of the fax with the FaxMedia resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.NextPage(Twilio.Base.Page{Twilio.Rest.Fax.V1.Fax.FaxMediaResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Fax.V1.Fax.FaxMediaResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.Delete(Twilio.Rest.Fax.V1.Fax.DeleteFaxMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific fax media instance.
            </summary>
            <param name="options"> Delete FaxMedia parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.DeleteAsync(Twilio.Rest.Fax.V1.Fax.DeleteFaxMediaOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific fax media instance.
            </summary>
            <param name="options"> Delete FaxMedia parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific fax media instance.
            </summary>
            <param name="pathFaxSid"> The SID of the fax with the FaxMedia resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific fax media instance.
            </summary>
            <param name="pathFaxSid"> The SID of the fax with the FaxMedia resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FaxMedia </returns>
        </member>
        <member name="M:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FaxMediaResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FaxMediaResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.FaxSid">
            <summary>
            The SID of the fax the FaxMedia resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.ContentType">
            <summary>
            The content type of the stored fax media
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Fax.V1.Fax.FaxMediaResource.Url">
            <summary>
            The absolute URL of the FaxMedia resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.ReadChannelOptions">
            <summary>
            ReadChannelOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ReadChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.FetchChannelOptions">
            <summary>
            FetchChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FetchChannelOptions.PathSid">
            <summary>
            The SID that identifies the Flex chat channel resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FetchChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchChannelOptions
            </summary>
            <param name="pathSid"> The SID that identifies the Flex chat channel resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FetchChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.CreateChannelOptions">
            <summary>
            CreateChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateChannelOptions.FlexFlowSid">
            <summary>
            The SID of the FlexFlow
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateChannelOptions.Identity">
            <summary>
            The identity value that identifies the new resource's chat User
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateChannelOptions.ChatUserFriendlyName">
            <summary>
            The chat participant's friendly name
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateChannelOptions.ChatFriendlyName">
            <summary>
            The chat channel's friendly name
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateChannelOptions.Target">
            <summary>
            The Target Contact Identity
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateChannelOptions.ChatUniqueName">
            <summary>
            The chat channel's unique name
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateChannelOptions.PreEngagementData">
            <summary>
            The pre-engagement data
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateChannelOptions.TaskSid">
            <summary>
            The SID of the TaskRouter task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateChannelOptions.TaskAttributes">
            <summary>
            The task attributes to be added for the TaskRouter Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateChannelOptions.LongLived">
            <summary>
            Whether to create the channel as long-lived
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.CreateChannelOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new CreateChannelOptions
            </summary>
            <param name="flexFlowSid"> The SID of the FlexFlow </param>
            <param name="identity"> The identity value that identifies the new resource's chat User </param>
            <param name="chatUserFriendlyName"> The chat participant's friendly name </param>
            <param name="chatFriendlyName"> The chat channel's friendly name </param>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.CreateChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.DeleteChannelOptions">
            <summary>
            DeleteChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.DeleteChannelOptions.PathSid">
            <summary>
            The SID of the Flex chat channel resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.DeleteChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteChannelOptions
            </summary>
            <param name="pathSid"> The SID of the Flex chat channel resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.DeleteChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.Read(Twilio.Rest.FlexApi.V1.ReadChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.ReadAsync(Twilio.Rest.FlexApi.V1.ReadChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.FlexApi.V1.ChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.FlexApi.V1.ChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.Fetch(Twilio.Rest.FlexApi.V1.FetchChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.FetchAsync(Twilio.Rest.FlexApi.V1.FetchChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the Flex chat channel resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the Flex chat channel resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.Create(Twilio.Rest.FlexApi.V1.CreateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.CreateAsync(Twilio.Rest.FlexApi.V1.CreateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.Create(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="flexFlowSid"> The SID of the FlexFlow </param>
            <param name="identity"> The identity value that identifies the new resource's chat User </param>
            <param name="chatUserFriendlyName"> The chat participant's friendly name </param>
            <param name="chatFriendlyName"> The chat channel's friendly name </param>
            <param name="target"> The Target Contact Identity </param>
            <param name="chatUniqueName"> The chat channel's unique name </param>
            <param name="preEngagementData"> The pre-engagement data </param>
            <param name="taskSid"> The SID of the TaskRouter task </param>
            <param name="taskAttributes"> The task attributes to be added for the TaskRouter Task </param>
            <param name="longLived"> Whether to create the channel as long-lived </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="flexFlowSid"> The SID of the FlexFlow </param>
            <param name="identity"> The identity value that identifies the new resource's chat User </param>
            <param name="chatUserFriendlyName"> The chat participant's friendly name </param>
            <param name="chatFriendlyName"> The chat channel's friendly name </param>
            <param name="target"> The Target Contact Identity </param>
            <param name="chatUniqueName"> The chat channel's unique name </param>
            <param name="preEngagementData"> The pre-engagement data </param>
            <param name="taskSid"> The SID of the TaskRouter task </param>
            <param name="taskAttributes"> The task attributes to be added for the TaskRouter Task </param>
            <param name="longLived"> Whether to create the channel as long-lived </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.Delete(Twilio.Rest.FlexApi.V1.DeleteChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.DeleteAsync(Twilio.Rest.FlexApi.V1.DeleteChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Flex chat channel resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Flex chat channel resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource and owns this Workflow
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ChannelResource.FlexFlowSid">
            <summary>
            The SID of the FlexFlow
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ChannelResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ChannelResource.UserSid">
            <summary>
            The SID of the chat user
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ChannelResource.TaskSid">
            <summary>
            The SID of the TaskRouter task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ChannelResource.Url">
            <summary>
            The absolute URL of the Flex chat channel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ChannelResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Flex chat channel was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ChannelResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the Flex chat channel was last updated
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.FetchConfigurationOptions">
            <summary>
            FetchConfigurationOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FetchConfigurationOptions.UiVersion">
            <summary>
            The Pinned UI version of the Configuration resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FetchConfigurationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.CreateConfigurationOptions">
            <summary>
            CreateConfigurationOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.CreateConfigurationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.UpdateConfigurationOptions">
            <summary>
            UpdateConfigurationOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.UpdateConfigurationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.Fetch(Twilio.Rest.FlexApi.V1.FetchConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Configuration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.FetchAsync(Twilio.Rest.FlexApi.V1.FetchConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Configuration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="uiVersion"> The Pinned UI version of the Configuration resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="uiVersion"> The Pinned UI version of the Configuration resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.Create(Twilio.Rest.FlexApi.V1.CreateConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Configuration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.CreateAsync(Twilio.Rest.FlexApi.V1.CreateConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Configuration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.Create(Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.CreateAsync(Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.Update(Twilio.Rest.FlexApi.V1.UpdateConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Configuration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.UpdateAsync(Twilio.Rest.FlexApi.V1.UpdateConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Configuration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.Update(Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.UpdateAsync(Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Configuration </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ConfigurationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ConfigurationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ConfigurationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Configuration resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the Configuration resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.Attributes">
            <summary>
            An object that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.Status">
            <summary>
            The status of the Flex onboarding
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.TaskrouterWorkspaceSid">
            <summary>
            The SID of the TaskRouter Workspace
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.TaskrouterTargetWorkflowSid">
            <summary>
            The SID of the TaskRouter target Workflow
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.TaskrouterTargetTaskqueueSid">
            <summary>
            The SID of the TaskRouter Target TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.TaskrouterTaskqueues">
            <summary>
            The list of TaskRouter TaskQueues
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.TaskrouterSkills">
            <summary>
            The Skill description for TaskRouter workers
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.TaskrouterWorkerChannels">
            <summary>
            The TaskRouter default channel capacities and availability for workers
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.TaskrouterWorkerAttributes">
            <summary>
            The TaskRouter Worker attributes
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.TaskrouterOfflineActivitySid">
            <summary>
            The TaskRouter SID of the offline activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.RuntimeDomain">
            <summary>
            The URL where the Flex instance is hosted
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.MessagingServiceInstanceSid">
            <summary>
            The SID of the Messaging service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.ChatServiceInstanceSid">
            <summary>
            The SID of the chat service this user belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.UiLanguage">
            <summary>
            The primary language of the Flex UI
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.UiAttributes">
            <summary>
            The object that describes Flex UI characteristics and settings
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.UiVersion">
            <summary>
            The Pinned UI version
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.ServiceVersion">
            <summary>
            The Flex Service version
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.CallRecordingEnabled">
            <summary>
            Whether call recording is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.CallRecordingWebhookUrl">
            <summary>
            The call recording webhook URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.CrmEnabled">
            <summary>
            Whether CRM is present for Flex
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.CrmType">
            <summary>
            The CRM Type
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.CrmCallbackUrl">
            <summary>
            The CRM Callback URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.CrmFallbackUrl">
            <summary>
            The CRM Fallback URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.CrmAttributes">
            <summary>
            An object that contains the CRM attributes
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.PublicAttributes">
            <summary>
            The list of public attributes
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.PluginServiceEnabled">
            <summary>
            Whether the plugin service enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.PluginServiceAttributes">
            <summary>
            The plugin service attributes
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.Integrations">
            <summary>
            A list of objects that contain the configurations for the Integrations supported in this configuration
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.OutboundCallFlows">
            <summary>
            The list of outbound call flows
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.FeaturesEnabled">
            <summary>
            The list of enabled features
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.ServerlessServiceSids">
            <summary>
            The list of serverless service SIDs
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ConfigurationResource.Url">
            <summary>
            The absolute URL of the Configuration resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.ReadFlexFlowOptions">
            <summary>
            ReadFlexFlowOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.ReadFlexFlowOptions.FriendlyName">
            <summary>
            The `friendly_name` of the FlexFlow resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ReadFlexFlowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.FetchFlexFlowOptions">
            <summary>
            FetchFlexFlowOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FetchFlexFlowOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FetchFlexFlowOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchFlexFlowOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FetchFlexFlowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions">
            <summary>
            CreateFlexFlowOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.ChatServiceSid">
            <summary>
            The SID of the chat service
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.ChannelType">
            <summary>
            The channel type
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.ContactIdentity">
            <summary>
            The channel contact's Identity
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.Enabled">
            <summary>
            Whether the new FlexFlow is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.IntegrationType">
            <summary>
            The integration type
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.IntegrationFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.IntegrationUrl">
            <summary>
            The External Webhook URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.IntegrationWorkspaceSid">
            <summary>
            The Workspace SID for a new task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.IntegrationWorkflowSid">
            <summary>
            The Workflow SID for a new task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.IntegrationChannel">
            <summary>
            The task channel for a new task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.IntegrationTimeout">
            <summary>
            The task timeout in seconds for a new task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.IntegrationPriority">
            <summary>
            The task priority of a new task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.IntegrationCreationOnMessage">
            <summary>
            Whether to create a task when the first message arrives
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.LongLived">
            <summary>
            Whether new channels are long-lived
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.#ctor(System.String,System.String,Twilio.Rest.FlexApi.V1.FlexFlowResource.ChannelTypeEnum)">
            <summary>
            Construct a new CreateFlexFlowOptions
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="chatServiceSid"> The SID of the chat service </param>
            <param name="channelType"> The channel type </param>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions">
            <summary>
            UpdateFlexFlowOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.ChatServiceSid">
            <summary>
            The SID of the chat service
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.ChannelType">
            <summary>
            The channel type
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.ContactIdentity">
            <summary>
            The channel contact's Identity
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.Enabled">
            <summary>
            Whether the FlexFlow is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.IntegrationType">
            <summary>
            The integration type
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.IntegrationFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.IntegrationUrl">
            <summary>
            The External Webhook URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.IntegrationWorkspaceSid">
            <summary>
            The Workspace SID for a new task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.IntegrationWorkflowSid">
            <summary>
            The Workflow SID for a new task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.IntegrationChannel">
            <summary>
            task channel for a new task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.IntegrationTimeout">
            <summary>
            The task timeout in seconds for a new task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.IntegrationPriority">
            <summary>
            The task priority of a new task
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.IntegrationCreationOnMessage">
            <summary>
            Whether to create a task when the first message arrives
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.LongLived">
            <summary>
            Whether new channels created are long-lived
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateFlexFlowOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.DeleteFlexFlowOptions">
            <summary>
            DeleteFlexFlowOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.DeleteFlexFlowOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.DeleteFlexFlowOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteFlexFlowOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.DeleteFlexFlowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.Read(Twilio.Rest.FlexApi.V1.ReadFlexFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read FlexFlow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.ReadAsync(Twilio.Rest.FlexApi.V1.ReadFlexFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read FlexFlow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="friendlyName"> The `friendly_name` of the FlexFlow resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="friendlyName"> The `friendly_name` of the FlexFlow resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.NextPage(Twilio.Base.Page{Twilio.Rest.FlexApi.V1.FlexFlowResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.FlexApi.V1.FlexFlowResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.Fetch(Twilio.Rest.FlexApi.V1.FetchFlexFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch FlexFlow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.FetchAsync(Twilio.Rest.FlexApi.V1.FetchFlexFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch FlexFlow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.Create(Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create FlexFlow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.CreateAsync(Twilio.Rest.FlexApi.V1.CreateFlexFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create FlexFlow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.Create(System.String,System.String,Twilio.Rest.FlexApi.V1.FlexFlowResource.ChannelTypeEnum,System.String,System.Nullable{System.Boolean},Twilio.Rest.FlexApi.V1.FlexFlowResource.IntegrationTypeEnum,System.String,System.Uri,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="chatServiceSid"> The SID of the chat service </param>
            <param name="channelType"> The channel type </param>
            <param name="contactIdentity"> The channel contact's Identity </param>
            <param name="enabled"> Whether the new FlexFlow is enabled </param>
            <param name="integrationType"> The integration type </param>
            <param name="integrationFlowSid"> The SID of the Flow </param>
            <param name="integrationUrl"> The External Webhook URL </param>
            <param name="integrationWorkspaceSid"> The Workspace SID for a new task </param>
            <param name="integrationWorkflowSid"> The Workflow SID for a new task </param>
            <param name="integrationChannel"> The task channel for a new task </param>
            <param name="integrationTimeout"> The task timeout in seconds for a new task </param>
            <param name="integrationPriority"> The task priority of a new task </param>
            <param name="integrationCreationOnMessage"> Whether to create a task when the first message arrives </param>
            <param name="longLived"> Whether new channels are long-lived </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.CreateAsync(System.String,System.String,Twilio.Rest.FlexApi.V1.FlexFlowResource.ChannelTypeEnum,System.String,System.Nullable{System.Boolean},Twilio.Rest.FlexApi.V1.FlexFlowResource.IntegrationTypeEnum,System.String,System.Uri,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="chatServiceSid"> The SID of the chat service </param>
            <param name="channelType"> The channel type </param>
            <param name="contactIdentity"> The channel contact's Identity </param>
            <param name="enabled"> Whether the new FlexFlow is enabled </param>
            <param name="integrationType"> The integration type </param>
            <param name="integrationFlowSid"> The SID of the Flow </param>
            <param name="integrationUrl"> The External Webhook URL </param>
            <param name="integrationWorkspaceSid"> The Workspace SID for a new task </param>
            <param name="integrationWorkflowSid"> The Workflow SID for a new task </param>
            <param name="integrationChannel"> The task channel for a new task </param>
            <param name="integrationTimeout"> The task timeout in seconds for a new task </param>
            <param name="integrationPriority"> The task priority of a new task </param>
            <param name="integrationCreationOnMessage"> Whether to create a task when the first message arrives </param>
            <param name="longLived"> Whether new channels are long-lived </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.Update(Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update FlexFlow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.UpdateAsync(Twilio.Rest.FlexApi.V1.UpdateFlexFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update FlexFlow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.Update(System.String,System.String,System.String,Twilio.Rest.FlexApi.V1.FlexFlowResource.ChannelTypeEnum,System.String,System.Nullable{System.Boolean},Twilio.Rest.FlexApi.V1.FlexFlowResource.IntegrationTypeEnum,System.String,System.Uri,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="chatServiceSid"> The SID of the chat service </param>
            <param name="channelType"> The channel type </param>
            <param name="contactIdentity"> The channel contact's Identity </param>
            <param name="enabled"> Whether the FlexFlow is enabled </param>
            <param name="integrationType"> The integration type </param>
            <param name="integrationFlowSid"> The SID of the Flow </param>
            <param name="integrationUrl"> The External Webhook URL </param>
            <param name="integrationWorkspaceSid"> The Workspace SID for a new task </param>
            <param name="integrationWorkflowSid"> The Workflow SID for a new task </param>
            <param name="integrationChannel"> task channel for a new task </param>
            <param name="integrationTimeout"> The task timeout in seconds for a new task </param>
            <param name="integrationPriority"> The task priority of a new task </param>
            <param name="integrationCreationOnMessage"> Whether to create a task when the first message arrives </param>
            <param name="longLived"> Whether new channels created are long-lived </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.UpdateAsync(System.String,System.String,System.String,Twilio.Rest.FlexApi.V1.FlexFlowResource.ChannelTypeEnum,System.String,System.Nullable{System.Boolean},Twilio.Rest.FlexApi.V1.FlexFlowResource.IntegrationTypeEnum,System.String,System.Uri,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="chatServiceSid"> The SID of the chat service </param>
            <param name="channelType"> The channel type </param>
            <param name="contactIdentity"> The channel contact's Identity </param>
            <param name="enabled"> Whether the FlexFlow is enabled </param>
            <param name="integrationType"> The integration type </param>
            <param name="integrationFlowSid"> The SID of the Flow </param>
            <param name="integrationUrl"> The External Webhook URL </param>
            <param name="integrationWorkspaceSid"> The Workspace SID for a new task </param>
            <param name="integrationWorkflowSid"> The Workflow SID for a new task </param>
            <param name="integrationChannel"> task channel for a new task </param>
            <param name="integrationTimeout"> The task timeout in seconds for a new task </param>
            <param name="integrationPriority"> The task priority of a new task </param>
            <param name="integrationCreationOnMessage"> Whether to create a task when the first message arrives </param>
            <param name="longLived"> Whether new channels created are long-lived </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.Delete(Twilio.Rest.FlexApi.V1.DeleteFlexFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete FlexFlow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.DeleteAsync(Twilio.Rest.FlexApi.V1.DeleteFlexFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete FlexFlow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FlexFlow </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FlexFlowResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FlexFlowResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FlexFlowResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.ChatServiceSid">
            <summary>
            The SID of the chat service
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.ChannelType">
            <summary>
            The channel type
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.ContactIdentity">
            <summary>
            The channel contact's Identity
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.Enabled">
            <summary>
            Whether the FlexFlow is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.IntegrationType">
            <summary>
            The integration type
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.Integration">
            <summary>
            An object that contains specific parameters for the integration
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.LongLived">
            <summary>
            Whether new channels are long-lived
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FlexFlowResource.Url">
            <summary>
            The absolute URL of the FlexFlow resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.ReadWebChannelOptions">
            <summary>
            ReadWebChannelOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.ReadWebChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.FetchWebChannelOptions">
            <summary>
            FetchWebChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.FetchWebChannelOptions.PathSid">
            <summary>
            The SID of the WebChannel resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FetchWebChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchWebChannelOptions
            </summary>
            <param name="pathSid"> The SID of the WebChannel resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.FetchWebChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.CreateWebChannelOptions">
            <summary>
            CreateWebChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateWebChannelOptions.FlexFlowSid">
            <summary>
            The SID of the FlexFlow
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateWebChannelOptions.Identity">
            <summary>
            The chat identity
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateWebChannelOptions.CustomerFriendlyName">
            <summary>
            The chat participant's friendly name
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateWebChannelOptions.ChatFriendlyName">
            <summary>
            The chat channel's friendly name
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateWebChannelOptions.ChatUniqueName">
            <summary>
            The chat channel's unique name
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.CreateWebChannelOptions.PreEngagementData">
            <summary>
            The pre-engagement data
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.CreateWebChannelOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new CreateWebChannelOptions
            </summary>
            <param name="flexFlowSid"> The SID of the FlexFlow </param>
            <param name="identity"> The chat identity </param>
            <param name="customerFriendlyName"> The chat participant's friendly name </param>
            <param name="chatFriendlyName"> The chat channel's friendly name </param>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.CreateWebChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.UpdateWebChannelOptions">
            <summary>
            UpdateWebChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateWebChannelOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateWebChannelOptions.ChatStatus">
            <summary>
            The chat status
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.UpdateWebChannelOptions.PostEngagementData">
            <summary>
            The post-engagement data
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.UpdateWebChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateWebChannelOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.UpdateWebChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.FlexApi.V1.DeleteWebChannelOptions">
            <summary>
            DeleteWebChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.DeleteWebChannelOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.DeleteWebChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteWebChannelOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.DeleteWebChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.Read(Twilio.Rest.FlexApi.V1.ReadWebChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read WebChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.ReadAsync(Twilio.Rest.FlexApi.V1.ReadWebChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read WebChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.FlexApi.V1.WebChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.FlexApi.V1.WebChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.Fetch(Twilio.Rest.FlexApi.V1.FetchWebChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WebChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.FetchAsync(Twilio.Rest.FlexApi.V1.FetchWebChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WebChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the WebChannel resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the WebChannel resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.Create(Twilio.Rest.FlexApi.V1.CreateWebChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create WebChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.CreateAsync(Twilio.Rest.FlexApi.V1.CreateWebChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create WebChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.Create(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="flexFlowSid"> The SID of the FlexFlow </param>
            <param name="identity"> The chat identity </param>
            <param name="customerFriendlyName"> The chat participant's friendly name </param>
            <param name="chatFriendlyName"> The chat channel's friendly name </param>
            <param name="chatUniqueName"> The chat channel's unique name </param>
            <param name="preEngagementData"> The pre-engagement data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="flexFlowSid"> The SID of the FlexFlow </param>
            <param name="identity"> The chat identity </param>
            <param name="customerFriendlyName"> The chat participant's friendly name </param>
            <param name="chatFriendlyName"> The chat channel's friendly name </param>
            <param name="chatUniqueName"> The chat channel's unique name </param>
            <param name="preEngagementData"> The pre-engagement data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.Update(Twilio.Rest.FlexApi.V1.UpdateWebChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update WebChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.UpdateAsync(Twilio.Rest.FlexApi.V1.UpdateWebChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update WebChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.Update(System.String,Twilio.Rest.FlexApi.V1.WebChannelResource.ChatStatusEnum,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="chatStatus"> The chat status </param>
            <param name="postEngagementData"> The post-engagement data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.UpdateAsync(System.String,Twilio.Rest.FlexApi.V1.WebChannelResource.ChatStatusEnum,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="chatStatus"> The chat status </param>
            <param name="postEngagementData"> The post-engagement data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.Delete(Twilio.Rest.FlexApi.V1.DeleteWebChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete WebChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.DeleteAsync(Twilio.Rest.FlexApi.V1.DeleteWebChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete WebChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WebChannel </returns>
        </member>
        <member name="M:Twilio.Rest.FlexApi.V1.WebChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WebChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WebChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.WebChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource and owns this Workflow
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.WebChannelResource.FlexFlowSid">
            <summary>
            The SID of the FlexFlow
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.WebChannelResource.Sid">
            <summary>
            The unique string that identifies the WebChannel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.WebChannelResource.Url">
            <summary>
            The absolute URL of the WebChannel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.WebChannelResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.FlexApi.V1.WebChannelResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Insights.V1.FetchCallSummaryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchCallSummaryOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.FetchCallSummaryOptions.PathCallSid">
            <summary>
            The call_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.FetchCallSummaryOptions.ProcessingState">
            <summary>
            The processing_state
            </summary>
        </member>
        <member name="M:Twilio.Rest.Insights.V1.FetchCallSummaryOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCallSummaryOptions
            </summary>
            <param name="pathCallSid"> The call_sid </param>
        </member>
        <member name="M:Twilio.Rest.Insights.V1.FetchCallSummaryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Insights.V1.CallSummaryResource.Fetch(Twilio.Rest.Insights.V1.FetchCallSummaryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch CallSummary parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CallSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Insights.V1.CallSummaryResource.FetchAsync(Twilio.Rest.Insights.V1.FetchCallSummaryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch CallSummary parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CallSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Insights.V1.CallSummaryResource.Fetch(System.String,Twilio.Rest.Insights.V1.CallSummaryResource.ProcessingStateEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathCallSid"> The call_sid </param>
            <param name="processingState"> The processing_state </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CallSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Insights.V1.CallSummaryResource.FetchAsync(System.String,Twilio.Rest.Insights.V1.CallSummaryResource.ProcessingStateEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathCallSid"> The call_sid </param>
            <param name="processingState"> The processing_state </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CallSummary </returns>
        </member>
        <member name="M:Twilio.Rest.Insights.V1.CallSummaryResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CallSummaryResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CallSummaryResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.CallSid">
            <summary>
            The call_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.CallType">
            <summary>
            The call_type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.CallState">
            <summary>
            The call_state
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.ProcessingState">
            <summary>
            The processing_state
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.StartTime">
            <summary>
            The start_time
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.EndTime">
            <summary>
            The end_time
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.Duration">
            <summary>
            The duration
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.ConnectDuration">
            <summary>
            The connect_duration
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.From">
            <summary>
            The from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.To">
            <summary>
            The to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.CarrierEdge">
            <summary>
            The carrier_edge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.ClientEdge">
            <summary>
            The client_edge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.SdkEdge">
            <summary>
            The sdk_edge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.SipEdge">
            <summary>
            The sip_edge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.Tags">
            <summary>
            The tags
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.Attributes">
            <summary>
            The attributes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Insights.V1.CallSummaryResource.Properties">
            <summary>
            The properties
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.ReadCredentialOptions">
            <summary>
            ReadCredentialOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ReadCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.CreateCredentialOptions">
            <summary>
            CreateCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CreateCredentialOptions.Type">
            <summary>
            The type of push-notification service the credential is for
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CreateCredentialOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CreateCredentialOptions.Certificate">
            <summary>
            [APN only] The URL encoded representation of the certificate
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CreateCredentialOptions.PrivateKey">
            <summary>
            [APN only] The URL encoded representation of the private key
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CreateCredentialOptions.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CreateCredentialOptions.ApiKey">
            <summary>
            [GCM only] The API key for the project that was obtained from the Google Developer console for your GCM Service application credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CreateCredentialOptions.Secret">
            <summary>
            [FCM only] The Server key of your project from Firebase console
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CreateCredentialOptions.#ctor(Twilio.Rest.IpMessaging.V1.CredentialResource.PushServiceEnum)">
            <summary>
            Construct a new CreateCredentialOptions
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CreateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.FetchCredentialOptions">
            <summary>
            FetchCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.FetchCredentialOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.FetchCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCredentialOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.FetchCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions">
            <summary>
            UpdateCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions.Certificate">
            <summary>
            [APN only] The URL encoded representation of the certificate
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions.PrivateKey">
            <summary>
            [APN only] The URL encoded representation of the private key
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions.ApiKey">
            <summary>
            [GCM only] The API key for the project that was obtained from the Google Developer console for your GCM Service application credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions.Secret">
            <summary>
            [FCM only] The Server key of your project from Firebase console
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateCredentialOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.DeleteCredentialOptions">
            <summary>
            DeleteCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.DeleteCredentialOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.DeleteCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteCredentialOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.DeleteCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.Read(Twilio.Rest.IpMessaging.V1.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.ReadAsync(Twilio.Rest.IpMessaging.V1.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.Create(Twilio.Rest.IpMessaging.V1.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.CreateAsync(Twilio.Rest.IpMessaging.V1.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.Create(Twilio.Rest.IpMessaging.V1.CredentialResource.PushServiceEnum,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.CreateAsync(Twilio.Rest.IpMessaging.V1.CredentialResource.PushServiceEnum,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.Fetch(Twilio.Rest.IpMessaging.V1.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.FetchAsync(Twilio.Rest.IpMessaging.V1.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.Update(Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.UpdateAsync(Twilio.Rest.IpMessaging.V1.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.Update(System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.Delete(Twilio.Rest.IpMessaging.V1.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.DeleteAsync(Twilio.Rest.IpMessaging.V1.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CredentialResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CredentialResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CredentialResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CredentialResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CredentialResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CredentialResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CredentialResource.Type">
            <summary>
            The type of push-notification service the credential is for
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CredentialResource.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CredentialResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CredentialResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CredentialResource.Url">
            <summary>
            The absolute URL of the Credential resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.FetchServiceOptions">
            <summary>
            FetchServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.FetchServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.DeleteServiceOptions">
            <summary>
            DeleteServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.DeleteServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.CreateServiceOptions">
            <summary>
            CreateServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.CreateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CreateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateServiceOptions
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.ReadServiceOptions">
            <summary>
            ReadServiceOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions">
            <summary>
            UpdateServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.DefaultServiceRoleSid">
            <summary>
            The service role assigned to users when they are added to the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.DefaultChannelRoleSid">
            <summary>
            The channel role assigned to users when they are added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.DefaultChannelCreatorRoleSid">
            <summary>
            The channel role assigned to a channel creator when they join a new channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.ReadStatusEnabled">
            <summary>
            Whether to enable the Message Consumption Horizon feature
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.ReachabilityEnabled">
            <summary>
            Whether to enable the Reachability Indicator feature for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.TypingIndicatorTimeout">
            <summary>
            How long in seconds to wait before assuming the user is no longer typing
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.ConsumptionReportInterval">
            <summary>
            DEPRECATED
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.NotificationsNewMessageEnabled">
            <summary>
            Whether to send a notification when a new message is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.NotificationsNewMessageTemplate">
            <summary>
            The template to use to create the notification text displayed when a new message is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.NotificationsAddedToChannelEnabled">
            <summary>
            Whether to send a notification when a member is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.NotificationsAddedToChannelTemplate">
            <summary>
            The template to use to create the notification text displayed when a member is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.NotificationsRemovedFromChannelEnabled">
            <summary>
            Whether to send a notification to a user when they are removed from a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.NotificationsRemovedFromChannelTemplate">
            <summary>
            The template to use to create the notification text displayed to a user when they are removed
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.NotificationsInvitedToChannelEnabled">
            <summary>
            Whether to send a notification when a user is invited to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.NotificationsInvitedToChannelTemplate">
            <summary>
            The template to use to create the notification text displayed when a user is invited to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.PreWebhookUrl">
            <summary>
            The webhook URL for pre-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.PostWebhookUrl">
            <summary>
            The URL for post-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhookMethod">
            <summary>
            The HTTP method  to use for both PRE and POST webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhookFilters">
            <summary>
            The list of WebHook events that are enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageSendUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_send event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageSendMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_message_send.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageUpdateUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_update event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageUpdateMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_message_update.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageRemoveUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_remove event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageRemoveMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_message_remove.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelAddUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_add event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelAddMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_channel_add.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelDestroyUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_destroy event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelDestroyMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_channel_destroy.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelUpdateUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_update event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelUpdateMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_channel_update.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMemberAddUrl">
            <summary>
            The URL of the webhook to call in response to the on_member_add event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMemberAddMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_member_add.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMemberRemoveUrl">
            <summary>
            The URL of the webhook to call in response to the on_member_remove event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMemberRemoveMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_member_remove.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageSentUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_sent event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageSentMethod">
            <summary>
            The URL of the webhook to call in response to the on_message_sent event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageUpdatedUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_updated event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageUpdatedMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_message_updated.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageRemovedUrl">
            <summary>
            The URL of the webhook to call in response to the on_message_removed event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMessageRemovedMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_message_removed.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelAddedUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_added event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelAddedMethod">
            <summary>
            The URL of the webhook to call in response to the on_channel_added event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelDestroyedUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_added event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelDestroyedMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_channel_destroyed.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelUpdatedUrl">
            <summary>
            he URL of the webhook to call in response to the on_channel_updated event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnChannelUpdatedMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_channel_updated.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMemberAddedUrl">
            <summary>
            The URL of the webhook to call in response to the on_channel_updated event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMemberAddedMethod">
            <summary>
            he HTTP method to use when calling the webhooks.on_channel_updated.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMemberRemovedUrl">
            <summary>
            The URL of the webhook to call in response to the on_member_removed event
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.WebhooksOnMemberRemovedMethod">
            <summary>
            The HTTP method to use when calling the webhooks.on_member_removed.url
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.LimitsChannelMembers">
            <summary>
            The maximum number of Members that can be added to Channels within this Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.LimitsUserChannels">
            <summary>
            The maximum number of Channels Users can be a Member of within this Service
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.Fetch(Twilio.Rest.IpMessaging.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.FetchAsync(Twilio.Rest.IpMessaging.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.Delete(Twilio.Rest.IpMessaging.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.DeleteAsync(Twilio.Rest.IpMessaging.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.Create(Twilio.Rest.IpMessaging.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.CreateAsync(Twilio.Rest.IpMessaging.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.Create(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.CreateAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.Read(Twilio.Rest.IpMessaging.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.ReadAsync(Twilio.Rest.IpMessaging.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.Update(Twilio.Rest.IpMessaging.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.UpdateAsync(Twilio.Rest.IpMessaging.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.Update(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="defaultServiceRoleSid"> The service role assigned to users when they are added to the service </param>
            <param name="defaultChannelRoleSid"> The channel role assigned to users when they are added to a channel </param>
            <param name="defaultChannelCreatorRoleSid"> The channel role assigned to a channel creator when they join a new
                                               channel </param>
            <param name="readStatusEnabled"> Whether to enable the Message Consumption Horizon feature </param>
            <param name="reachabilityEnabled"> Whether to enable the Reachability Indicator feature for this Service instance
                                      </param>
            <param name="typingIndicatorTimeout"> How long in seconds to wait before assuming the user is no longer typing
                                         </param>
            <param name="consumptionReportInterval"> DEPRECATED </param>
            <param name="notificationsNewMessageEnabled"> Whether to send a notification when a new message is added to a
                                                 channel </param>
            <param name="notificationsNewMessageTemplate"> The template to use to create the notification text displayed when a
                                                  new message is added to a channel </param>
            <param name="notificationsAddedToChannelEnabled"> Whether to send a notification when a member is added to a
                                                     channel </param>
            <param name="notificationsAddedToChannelTemplate"> The template to use to create the notification text displayed
                                                      when a member is added to a channel </param>
            <param name="notificationsRemovedFromChannelEnabled"> Whether to send a notification to a user when they are
                                                         removed from a channel </param>
            <param name="notificationsRemovedFromChannelTemplate"> The template to use to create the notification text
                                                          displayed to a user when they are removed </param>
            <param name="notificationsInvitedToChannelEnabled"> Whether to send a notification when a user is invited to a
                                                       channel </param>
            <param name="notificationsInvitedToChannelTemplate"> The template to use to create the notification text displayed
                                                        when a user is invited to a channel </param>
            <param name="preWebhookUrl"> The webhook URL for pre-event webhooks </param>
            <param name="postWebhookUrl"> The URL for post-event webhooks </param>
            <param name="webhookMethod"> The HTTP method  to use for both PRE and POST webhooks </param>
            <param name="webhookFilters"> The list of WebHook events that are enabled for this Service instance </param>
            <param name="webhooksOnMessageSendUrl"> The URL of the webhook to call in response to the on_message_send event
                                           </param>
            <param name="webhooksOnMessageSendMethod"> The HTTP method to use when calling the webhooks.on_message_send.url
                                              </param>
            <param name="webhooksOnMessageUpdateUrl"> The URL of the webhook to call in response to the on_message_update event
                                             </param>
            <param name="webhooksOnMessageUpdateMethod"> The HTTP method to use when calling the webhooks.on_message_update.url
                                                </param>
            <param name="webhooksOnMessageRemoveUrl"> The URL of the webhook to call in response to the on_message_remove event
                                             </param>
            <param name="webhooksOnMessageRemoveMethod"> The HTTP method to use when calling the webhooks.on_message_remove.url
                                                </param>
            <param name="webhooksOnChannelAddUrl"> The URL of the webhook to call in response to the on_channel_add event
                                          </param>
            <param name="webhooksOnChannelAddMethod"> The HTTP method to use when calling the webhooks.on_channel_add.url
                                             </param>
            <param name="webhooksOnChannelDestroyUrl"> The URL of the webhook to call in response to the on_channel_destroy
                                              event </param>
            <param name="webhooksOnChannelDestroyMethod"> The HTTP method to use when calling the
                                                 webhooks.on_channel_destroy.url </param>
            <param name="webhooksOnChannelUpdateUrl"> The URL of the webhook to call in response to the on_channel_update event
                                             </param>
            <param name="webhooksOnChannelUpdateMethod"> The HTTP method to use when calling the webhooks.on_channel_update.url
                                                </param>
            <param name="webhooksOnMemberAddUrl"> The URL of the webhook to call in response to the on_member_add event </param>
            <param name="webhooksOnMemberAddMethod"> The HTTP method to use when calling the webhooks.on_member_add.url </param>
            <param name="webhooksOnMemberRemoveUrl"> The URL of the webhook to call in response to the on_member_remove event
                                            </param>
            <param name="webhooksOnMemberRemoveMethod"> The HTTP method to use when calling the webhooks.on_member_remove.url
                                               </param>
            <param name="webhooksOnMessageSentUrl"> The URL of the webhook to call in response to the on_message_sent event
                                           </param>
            <param name="webhooksOnMessageSentMethod"> The URL of the webhook to call in response to the on_message_sent event
                                              </param>
            <param name="webhooksOnMessageUpdatedUrl"> The URL of the webhook to call in response to the on_message_updated
                                              event </param>
            <param name="webhooksOnMessageUpdatedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_message_updated.url </param>
            <param name="webhooksOnMessageRemovedUrl"> The URL of the webhook to call in response to the on_message_removed
                                              event </param>
            <param name="webhooksOnMessageRemovedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_message_removed.url </param>
            <param name="webhooksOnChannelAddedUrl"> The URL of the webhook to call in response to the on_channel_added event
                                            </param>
            <param name="webhooksOnChannelAddedMethod"> The URL of the webhook to call in response to the on_channel_added
                                               event </param>
            <param name="webhooksOnChannelDestroyedUrl"> The URL of the webhook to call in response to the on_channel_added
                                                event </param>
            <param name="webhooksOnChannelDestroyedMethod"> The HTTP method to use when calling the
                                                   webhooks.on_channel_destroyed.url </param>
            <param name="webhooksOnChannelUpdatedUrl"> he URL of the webhook to call in response to the on_channel_updated
                                              event </param>
            <param name="webhooksOnChannelUpdatedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_channel_updated.url </param>
            <param name="webhooksOnMemberAddedUrl"> The URL of the webhook to call in response to the on_channel_updated event
                                           </param>
            <param name="webhooksOnMemberAddedMethod"> he HTTP method to use when calling the webhooks.on_channel_updated.url
                                              </param>
            <param name="webhooksOnMemberRemovedUrl"> The URL of the webhook to call in response to the on_member_removed event
                                             </param>
            <param name="webhooksOnMemberRemovedMethod"> The HTTP method to use when calling the webhooks.on_member_removed.url
                                                </param>
            <param name="limitsChannelMembers"> The maximum number of Members that can be added to Channels within this Service
                                       </param>
            <param name="limitsUserChannels"> The maximum number of Channels Users can be a Member of within this Service
                                     </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="defaultServiceRoleSid"> The service role assigned to users when they are added to the service </param>
            <param name="defaultChannelRoleSid"> The channel role assigned to users when they are added to a channel </param>
            <param name="defaultChannelCreatorRoleSid"> The channel role assigned to a channel creator when they join a new
                                               channel </param>
            <param name="readStatusEnabled"> Whether to enable the Message Consumption Horizon feature </param>
            <param name="reachabilityEnabled"> Whether to enable the Reachability Indicator feature for this Service instance
                                      </param>
            <param name="typingIndicatorTimeout"> How long in seconds to wait before assuming the user is no longer typing
                                         </param>
            <param name="consumptionReportInterval"> DEPRECATED </param>
            <param name="notificationsNewMessageEnabled"> Whether to send a notification when a new message is added to a
                                                 channel </param>
            <param name="notificationsNewMessageTemplate"> The template to use to create the notification text displayed when a
                                                  new message is added to a channel </param>
            <param name="notificationsAddedToChannelEnabled"> Whether to send a notification when a member is added to a
                                                     channel </param>
            <param name="notificationsAddedToChannelTemplate"> The template to use to create the notification text displayed
                                                      when a member is added to a channel </param>
            <param name="notificationsRemovedFromChannelEnabled"> Whether to send a notification to a user when they are
                                                         removed from a channel </param>
            <param name="notificationsRemovedFromChannelTemplate"> The template to use to create the notification text
                                                          displayed to a user when they are removed </param>
            <param name="notificationsInvitedToChannelEnabled"> Whether to send a notification when a user is invited to a
                                                       channel </param>
            <param name="notificationsInvitedToChannelTemplate"> The template to use to create the notification text displayed
                                                        when a user is invited to a channel </param>
            <param name="preWebhookUrl"> The webhook URL for pre-event webhooks </param>
            <param name="postWebhookUrl"> The URL for post-event webhooks </param>
            <param name="webhookMethod"> The HTTP method  to use for both PRE and POST webhooks </param>
            <param name="webhookFilters"> The list of WebHook events that are enabled for this Service instance </param>
            <param name="webhooksOnMessageSendUrl"> The URL of the webhook to call in response to the on_message_send event
                                           </param>
            <param name="webhooksOnMessageSendMethod"> The HTTP method to use when calling the webhooks.on_message_send.url
                                              </param>
            <param name="webhooksOnMessageUpdateUrl"> The URL of the webhook to call in response to the on_message_update event
                                             </param>
            <param name="webhooksOnMessageUpdateMethod"> The HTTP method to use when calling the webhooks.on_message_update.url
                                                </param>
            <param name="webhooksOnMessageRemoveUrl"> The URL of the webhook to call in response to the on_message_remove event
                                             </param>
            <param name="webhooksOnMessageRemoveMethod"> The HTTP method to use when calling the webhooks.on_message_remove.url
                                                </param>
            <param name="webhooksOnChannelAddUrl"> The URL of the webhook to call in response to the on_channel_add event
                                          </param>
            <param name="webhooksOnChannelAddMethod"> The HTTP method to use when calling the webhooks.on_channel_add.url
                                             </param>
            <param name="webhooksOnChannelDestroyUrl"> The URL of the webhook to call in response to the on_channel_destroy
                                              event </param>
            <param name="webhooksOnChannelDestroyMethod"> The HTTP method to use when calling the
                                                 webhooks.on_channel_destroy.url </param>
            <param name="webhooksOnChannelUpdateUrl"> The URL of the webhook to call in response to the on_channel_update event
                                             </param>
            <param name="webhooksOnChannelUpdateMethod"> The HTTP method to use when calling the webhooks.on_channel_update.url
                                                </param>
            <param name="webhooksOnMemberAddUrl"> The URL of the webhook to call in response to the on_member_add event </param>
            <param name="webhooksOnMemberAddMethod"> The HTTP method to use when calling the webhooks.on_member_add.url </param>
            <param name="webhooksOnMemberRemoveUrl"> The URL of the webhook to call in response to the on_member_remove event
                                            </param>
            <param name="webhooksOnMemberRemoveMethod"> The HTTP method to use when calling the webhooks.on_member_remove.url
                                               </param>
            <param name="webhooksOnMessageSentUrl"> The URL of the webhook to call in response to the on_message_sent event
                                           </param>
            <param name="webhooksOnMessageSentMethod"> The URL of the webhook to call in response to the on_message_sent event
                                              </param>
            <param name="webhooksOnMessageUpdatedUrl"> The URL of the webhook to call in response to the on_message_updated
                                              event </param>
            <param name="webhooksOnMessageUpdatedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_message_updated.url </param>
            <param name="webhooksOnMessageRemovedUrl"> The URL of the webhook to call in response to the on_message_removed
                                              event </param>
            <param name="webhooksOnMessageRemovedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_message_removed.url </param>
            <param name="webhooksOnChannelAddedUrl"> The URL of the webhook to call in response to the on_channel_added event
                                            </param>
            <param name="webhooksOnChannelAddedMethod"> The URL of the webhook to call in response to the on_channel_added
                                               event </param>
            <param name="webhooksOnChannelDestroyedUrl"> The URL of the webhook to call in response to the on_channel_added
                                                event </param>
            <param name="webhooksOnChannelDestroyedMethod"> The HTTP method to use when calling the
                                                   webhooks.on_channel_destroyed.url </param>
            <param name="webhooksOnChannelUpdatedUrl"> he URL of the webhook to call in response to the on_channel_updated
                                              event </param>
            <param name="webhooksOnChannelUpdatedMethod"> The HTTP method to use when calling the
                                                 webhooks.on_channel_updated.url </param>
            <param name="webhooksOnMemberAddedUrl"> The URL of the webhook to call in response to the on_channel_updated event
                                           </param>
            <param name="webhooksOnMemberAddedMethod"> he HTTP method to use when calling the webhooks.on_channel_updated.url
                                              </param>
            <param name="webhooksOnMemberRemovedUrl"> The URL of the webhook to call in response to the on_member_removed event
                                             </param>
            <param name="webhooksOnMemberRemovedMethod"> The HTTP method to use when calling the webhooks.on_member_removed.url
                                                </param>
            <param name="limitsChannelMembers"> The maximum number of Members that can be added to Channels within this Service
                                       </param>
            <param name="limitsUserChannels"> The maximum number of Channels Users can be a Member of within this Service
                                     </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.DefaultServiceRoleSid">
            <summary>
            The service role assigned to users when they are added to the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.DefaultChannelRoleSid">
            <summary>
            The channel role assigned to users when they are added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.DefaultChannelCreatorRoleSid">
            <summary>
            The channel role assigned to a channel creator when they join a new channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.ReadStatusEnabled">
            <summary>
            Whether the Message Consumption Horizon feature is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.ReachabilityEnabled">
            <summary>
            Whether the Reachability Indicator feature is enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.TypingIndicatorTimeout">
            <summary>
            How long in seconds to wait before assuming the user is no longer typing
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.ConsumptionReportInterval">
            <summary>
            DEPRECATED
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.Limits">
            <summary>
            An object that describes the limits of the service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.Webhooks">
            <summary>
            An object that contains information about the webhooks configured for this service
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.PreWebhookUrl">
            <summary>
            The webhook URL for pre-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.PostWebhookUrl">
            <summary>
            The URL for post-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.WebhookMethod">
            <summary>
            The HTTP method  to use for both PRE and POST webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.WebhookFilters">
            <summary>
            The list of WebHook events that are enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.Notifications">
            <summary>
            The notification configuration for the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.Url">
            <summary>
            The absolute URL of the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.ServiceResource.Links">
            <summary>
            The absolute URLs of the Service's Channels, Roles, and Users
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.FetchChannelOptions">
            <summary>
            FetchChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.FetchChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.FetchChannelOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.FetchChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.FetchChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.DeleteChannelOptions">
            <summary>
            DeleteChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.DeleteChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.DeleteChannelOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.DeleteChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.DeleteChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.CreateChannelOptions">
            <summary>
            CreateChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateChannelOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateChannelOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateChannelOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateChannelOptions.Type">
            <summary>
            The visibility of the channel
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.CreateChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.CreateChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.ReadChannelOptions">
            <summary>
            ReadChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ReadChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ReadChannelOptions.Type">
            <summary>
            The visibility of the channel to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ReadChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ReadChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.UpdateChannelOptions">
            <summary>
            UpdateChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateChannelOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateChannelOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateChannelOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateChannelOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UpdateChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UpdateChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Fetch(Twilio.Rest.IpMessaging.V1.Service.FetchChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.FetchAsync(Twilio.Rest.IpMessaging.V1.Service.FetchChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Delete(Twilio.Rest.IpMessaging.V1.Service.DeleteChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.DeleteAsync(Twilio.Rest.IpMessaging.V1.Service.DeleteChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Create(Twilio.Rest.IpMessaging.V1.Service.CreateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.CreateAsync(Twilio.Rest.IpMessaging.V1.Service.CreateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Create(System.String,System.String,System.String,System.String,Twilio.Rest.IpMessaging.V1.Service.ChannelResource.ChannelTypeEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="type"> The visibility of the channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Rest.IpMessaging.V1.Service.ChannelResource.ChannelTypeEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="type"> The visibility of the channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Read(Twilio.Rest.IpMessaging.V1.Service.ReadChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.ReadAsync(Twilio.Rest.IpMessaging.V1.Service.ReadChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Read(System.String,System.Collections.Generic.List{Twilio.Rest.IpMessaging.V1.Service.ChannelResource.ChannelTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="type"> The visibility of the channel to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.ReadAsync(System.String,System.Collections.Generic.List{Twilio.Rest.IpMessaging.V1.Service.ChannelResource.ChannelTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="type"> The visibility of the channel to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.ChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.ChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Update(Twilio.Rest.IpMessaging.V1.Service.UpdateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.UpdateAsync(Twilio.Rest.IpMessaging.V1.Service.UpdateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Update(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Type">
            <summary>
            The visibility of the channel. Can be: `public` or `private`
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.CreatedBy">
            <summary>
            The identity of the User that created the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.MembersCount">
            <summary>
            The number of Members in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.MessagesCount">
            <summary>
            The number of Messages in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Url">
            <summary>
            The absolute URL of the Channel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ChannelResource.Links">
            <summary>
            Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchInviteOptions">
            <summary>
            FetchInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to fetch belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchInviteOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateInviteOptions">
            <summary>
            CreateInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateInviteOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateInviteOptions.RoleSid">
            <summary>
            The Role assigned to the new member
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadInviteOptions">
            <summary>
            ReadInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resources to read belong to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadInviteOptions.Identity">
            <summary>
            The `identity` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadInviteOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteInviteOptions">
            <summary>
            DeleteInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteInviteOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.Fetch(Twilio.Rest.IpMessaging.V1.Service.Channel.FetchInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.FetchAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.FetchInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.Create(Twilio.Rest.IpMessaging.V1.Service.Channel.CreateInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.CreateAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.CreateInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The Role assigned to the new member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The Role assigned to the new member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.Read(Twilio.Rest.IpMessaging.V1.Service.Channel.ReadInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.ReadAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.ReadInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.Read(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.ReadAsync(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.Delete(Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.DeleteAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a InviteResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> InviteResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.ChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.RoleSid">
            <summary>
            The SID of the Role assigned to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.CreatedBy">
            <summary>
            The identity of the User that created the invite
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.InviteResource.Url">
            <summary>
            The absolute URL of the Invite resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMemberOptions">
            <summary>
            FetchMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMemberOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMemberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMemberOptions">
            <summary>
            CreateMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMemberOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the new member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMemberOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMemberOptions.RoleSid">
            <summary>
            The SID of the Role to assign to the member
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMemberOptions">
            <summary>
            ReadMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMemberOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMemberOptions.Identity">
            <summary>
            The `identity` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMemberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMemberOptions">
            <summary>
            DeleteMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMemberOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the message to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMemberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMemberOptions">
            <summary>
            UpdateMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMemberOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the member to update belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMemberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMemberOptions.RoleSid">
            <summary>
            The SID of the Role to assign to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMemberOptions.LastConsumedMessageIndex">
            <summary>
            The index of the last consumed Message for the Channel for the Member
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the member to update belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Fetch(Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.FetchAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Create(Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.CreateAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Read(Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.ReadAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Read(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.ReadAsync(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the channel the member belongs to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Delete(Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.DeleteAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Update(Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.UpdateAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Update(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the member to update belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last consumed Message for the Channel for the Member
                                           </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the member to update belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last consumed Message for the Channel for the Member
                                           </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MemberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MemberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.ChannelSid">
            <summary>
            The unique ID of the Channel for the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.RoleSid">
            <summary>
            The SID of the Role assigned to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.LastConsumedMessageIndex">
            <summary>
            The index of the last Message that the Member has read within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.LastConsumptionTimestamp">
            <summary>
            The ISO 8601 based timestamp string that represents the date-time of the last Message read event for the Member within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MemberResource.Url">
            <summary>
            The absolute URL of the Member resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMessageOptions">
            <summary>
            FetchMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMessageOptions.PathChannelSid">
            <summary>
            The unique ID of the Channel the message to fetch belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMessageOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMessageOptions">
            <summary>
            CreateMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMessageOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMessageOptions.Body">
            <summary>
            The message to send to the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMessageOptions.From">
            <summary>
            The identity of the new message's author
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMessageOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new resource belongs to </param>
            <param name="body"> The message to send to the channel </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMessageOptions">
            <summary>
            ReadMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMessageOptions.PathChannelSid">
            <summary>
            The unique ID of the Channel the message to read belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMessageOptions.Order">
            <summary>
            The sort order of the returned messages
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to read belongs to </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMessageOptions">
            <summary>
            DeleteMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMessageOptions.PathChannelSid">
            <summary>
            The unique ID of the channel the message to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMessageOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMessageOptions">
            <summary>
            UpdateMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMessageOptions.PathChannelSid">
            <summary>
            he unique ID of the Channel the message belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMessageOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMessageOptions.Body">
            <summary>
            The message to send to the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMessageOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> he unique ID of the Channel the message belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Fetch(Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.FetchAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Create(Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.CreateAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new resource belongs to </param>
            <param name="body"> The message to send to the channel </param>
            <param name="from"> The identity of the new message's author </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The unique ID of the channel the new resource belongs to </param>
            <param name="body"> The message to send to the channel </param>
            <param name="from"> The identity of the new message's author </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Read(Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.ReadAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Read(System.String,System.String,Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.OrderTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to read belongs to </param>
            <param name="order"> The sort order of the returned messages </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.ReadAsync(System.String,System.String,Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.OrderTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The unique ID of the Channel the message to read belongs to </param>
            <param name="order"> The sort order of the returned messages </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Delete(Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.DeleteAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The unique ID of the channel the message to delete belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Update(Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.UpdateAsync(Twilio.Rest.IpMessaging.V1.Service.Channel.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Update(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> he unique ID of the Channel the message belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="body"> The message to send to the channel </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> he unique ID of the Channel the message belongs to </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="body"> The message to send to the channel </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MessageResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MessageResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.To">
            <summary>
            The SID of the Channel that the message was sent to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.ChannelSid">
            <summary>
            The unique ID of the Channel the Message resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.WasEdited">
            <summary>
            Whether the message has been edited since  it was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.From">
            <summary>
            The identity of the message's author
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Body">
            <summary>
            The content of the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Index">
            <summary>
            The index of the message within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.Channel.MessageResource.Url">
            <summary>
            The absolute URL of the Message resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.FetchRoleOptions">
            <summary>
            FetchRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.FetchRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.FetchRoleOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.FetchRoleOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.FetchRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.DeleteRoleOptions">
            <summary>
            DeleteRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.DeleteRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.DeleteRoleOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.DeleteRoleOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.DeleteRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.CreateRoleOptions">
            <summary>
            CreateRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateRoleOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateRoleOptions.Type">
            <summary>
            The type of role
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateRoleOptions.Permission">
            <summary>
            A permission the role should have
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.CreateRoleOptions.#ctor(System.String,System.String,Twilio.Rest.IpMessaging.V1.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String})">
            <summary>
            Construct a new CreateRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.CreateRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.ReadRoleOptions">
            <summary>
            ReadRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ReadRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ReadRoleOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ReadRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.UpdateRoleOptions">
            <summary>
            UpdateRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateRoleOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateRoleOptions.Permission">
            <summary>
            A permission the role should have
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UpdateRoleOptions.#ctor(System.String,System.String,System.Collections.Generic.List{System.String})">
            <summary>
            Construct a new UpdateRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="permission"> A permission the role should have </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UpdateRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Fetch(Twilio.Rest.IpMessaging.V1.Service.FetchRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.FetchAsync(Twilio.Rest.IpMessaging.V1.Service.FetchRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Delete(Twilio.Rest.IpMessaging.V1.Service.DeleteRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.DeleteAsync(Twilio.Rest.IpMessaging.V1.Service.DeleteRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Create(Twilio.Rest.IpMessaging.V1.Service.CreateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.CreateAsync(Twilio.Rest.IpMessaging.V1.Service.CreateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Create(System.String,System.String,Twilio.Rest.IpMessaging.V1.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.CreateAsync(System.String,System.String,Twilio.Rest.IpMessaging.V1.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Read(Twilio.Rest.IpMessaging.V1.Service.ReadRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.ReadAsync(Twilio.Rest.IpMessaging.V1.Service.ReadRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.RoleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.RoleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Update(Twilio.Rest.IpMessaging.V1.Service.UpdateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.UpdateAsync(Twilio.Rest.IpMessaging.V1.Service.UpdateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Update(System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.UpdateAsync(System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.RoleResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RoleResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RoleResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.RoleResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.RoleResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.RoleResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Type">
            <summary>
            The type of role
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Permissions">
            <summary>
            An array of the permissions the role has been granted
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.RoleResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.RoleResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.RoleResource.Url">
            <summary>
            The absolute URL of the Role resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.FetchUserOptions">
            <summary>
            FetchUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.FetchUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.FetchUserOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.FetchUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.FetchUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.DeleteUserOptions">
            <summary>
            DeleteUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.DeleteUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.DeleteUserOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.DeleteUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.DeleteUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.CreateUserOptions">
            <summary>
            CreateUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the new resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateUserOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateUserOptions.RoleSid">
            <summary>
            The SID of the Role assigned to this user
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateUserOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.CreateUserOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.CreateUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.CreateUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.ReadUserOptions">
            <summary>
            ReadUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.ReadUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ReadUserOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.ReadUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.UpdateUserOptions">
            <summary>
            UpdateUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateUserOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateUserOptions.RoleSid">
            <summary>
            The SID id of the Role assigned to this user
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateUserOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UpdateUserOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UpdateUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UpdateUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.Fetch(Twilio.Rest.IpMessaging.V1.Service.FetchUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.FetchAsync(Twilio.Rest.IpMessaging.V1.Service.FetchUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.Delete(Twilio.Rest.IpMessaging.V1.Service.DeleteUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.DeleteAsync(Twilio.Rest.IpMessaging.V1.Service.DeleteUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.Create(Twilio.Rest.IpMessaging.V1.Service.CreateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.CreateAsync(Twilio.Rest.IpMessaging.V1.Service.CreateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.Read(Twilio.Rest.IpMessaging.V1.Service.ReadUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.ReadAsync(Twilio.Rest.IpMessaging.V1.Service.ReadUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.UserResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.UserResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.Update(Twilio.Rest.IpMessaging.V1.Service.UpdateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.UpdateAsync(Twilio.Rest.IpMessaging.V1.Service.UpdateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.Update(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="roleSid"> The SID id of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="roleSid"> The SID id of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.UserResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UserResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UserResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.RoleSid">
            <summary>
            The SID of the assigned to the user
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.IsOnline">
            <summary>
            Whether the User is actively connected to the Service instance and online
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.IsNotifiable">
            <summary>
            Whether the User has a potentially valid Push Notification registration for the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.JoinedChannelsCount">
            <summary>
            The number of Channels this User is a Member of
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.Links">
            <summary>
            The absolute URLs of the Channel and Binding resources related to the user
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.UserResource.Url">
            <summary>
            The absolute URL of the User resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V1.Service.User.ReadUserChannelOptions">
            <summary>
            List all Channels for a given User.
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.User.ReadUserChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.User.ReadUserChannelOptions.PathUserSid">
            <summary>
            The SID of the User to fetch the User Channel resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.User.ReadUserChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadUserChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.User.ReadUserChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.Read(Twilio.Rest.IpMessaging.V1.Service.User.ReadUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="options"> Read UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.ReadAsync(Twilio.Rest.IpMessaging.V1.Service.User.ReadUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="options"> Read UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UserChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UserChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.ChannelSid">
            <summary>
            The SID of the Channel the resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.MemberSid">
            <summary>
            The SID of the User as a Member in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.Status">
            <summary>
            The status of the User on the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.LastConsumedMessageIndex">
            <summary>
            The index of the last Message in the Channel the Member has read
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.UnreadMessagesCount">
            <summary>
            The number of unread Messages in the Channel for the User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V1.Service.User.UserChannelResource.Links">
            <summary>
            Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.ReadCredentialOptions">
            <summary>
            ReadCredentialOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ReadCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.CreateCredentialOptions">
            <summary>
            CreateCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CreateCredentialOptions.Type">
            <summary>
            The type of push-notification service the credential is for
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CreateCredentialOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CreateCredentialOptions.Certificate">
            <summary>
            [APN only] The URL encoded representation of the certificate
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CreateCredentialOptions.PrivateKey">
            <summary>
            [APN only] The URL encoded representation of the private key
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CreateCredentialOptions.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CreateCredentialOptions.ApiKey">
            <summary>
            [GCM only] The API key for the project that was obtained from the Google Developer console for your GCM Service application credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CreateCredentialOptions.Secret">
            <summary>
            [FCM only] The Server key of your project from Firebase console
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CreateCredentialOptions.#ctor(Twilio.Rest.IpMessaging.V2.CredentialResource.PushServiceEnum)">
            <summary>
            Construct a new CreateCredentialOptions
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CreateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.FetchCredentialOptions">
            <summary>
            FetchCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.FetchCredentialOptions.PathSid">
            <summary>
            The SID of the Credential resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.FetchCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCredentialOptions
            </summary>
            <param name="pathSid"> The SID of the Credential resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.FetchCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions">
            <summary>
            UpdateCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions.PathSid">
            <summary>
            The SID of the Credential resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions.Certificate">
            <summary>
            [APN only] The URL encoded representation of the certificate
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions.PrivateKey">
            <summary>
            [APN only] The URL encoded representation of the private key
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions.ApiKey">
            <summary>
            [GCM only] The API key for the project that was obtained from the Google Developer console for your GCM Service application credential
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions.Secret">
            <summary>
            [FCM only] The Server key of your project from Firebase console
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateCredentialOptions
            </summary>
            <param name="pathSid"> The SID of the Credential resource to update </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.DeleteCredentialOptions">
            <summary>
            DeleteCredentialOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.DeleteCredentialOptions.PathSid">
            <summary>
            The SID of the Credential resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.DeleteCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteCredentialOptions
            </summary>
            <param name="pathSid"> The SID of the Credential resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.DeleteCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.Read(Twilio.Rest.IpMessaging.V2.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.ReadAsync(Twilio.Rest.IpMessaging.V2.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.Create(Twilio.Rest.IpMessaging.V2.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.CreateAsync(Twilio.Rest.IpMessaging.V2.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.Create(Twilio.Rest.IpMessaging.V2.CredentialResource.PushServiceEnum,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.CreateAsync(Twilio.Rest.IpMessaging.V2.CredentialResource.PushServiceEnum,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="type"> The type of push-notification service the credential is for </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.Fetch(Twilio.Rest.IpMessaging.V2.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.FetchAsync(Twilio.Rest.IpMessaging.V2.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the Credential resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the Credential resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.Update(Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.UpdateAsync(Twilio.Rest.IpMessaging.V2.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.Update(System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the Credential resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the Credential resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] The URL encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The API key for the project that was obtained from the Google Developer console
                         for your GCM Service application credential </param>
            <param name="secret"> [FCM only] The Server key of your project from Firebase console </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.Delete(Twilio.Rest.IpMessaging.V2.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.DeleteAsync(Twilio.Rest.IpMessaging.V2.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Credential resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Credential resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CredentialResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CredentialResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CredentialResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CredentialResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CredentialResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CredentialResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CredentialResource.Type">
            <summary>
            The type of push-notification service the credential is for
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CredentialResource.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CredentialResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CredentialResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CredentialResource.Url">
            <summary>
            The absolute URL of the Credential resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.FetchServiceOptions">
            <summary>
            FetchServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.FetchServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.DeleteServiceOptions">
            <summary>
            DeleteServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.DeleteServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.CreateServiceOptions">
            <summary>
            CreateServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.CreateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CreateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateServiceOptions
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.ReadServiceOptions">
            <summary>
            ReadServiceOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions">
            <summary>
            UpdateServiceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.DefaultServiceRoleSid">
            <summary>
            The service role assigned to users when they are added to the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.DefaultChannelRoleSid">
            <summary>
            The channel role assigned to users when they are added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.DefaultChannelCreatorRoleSid">
            <summary>
            The channel role assigned to a channel creator when they join a new channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.ReadStatusEnabled">
            <summary>
            Whether to enable the Message Consumption Horizon feature
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.ReachabilityEnabled">
            <summary>
            Whether to enable the Reachability Indicator feature for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.TypingIndicatorTimeout">
            <summary>
            How long in seconds to wait before assuming the user is no longer typing
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.ConsumptionReportInterval">
            <summary>
            DEPRECATED
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsNewMessageEnabled">
            <summary>
            Whether to send a notification when a new message is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsNewMessageTemplate">
            <summary>
            The template to use to create the notification text displayed when a new message is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsNewMessageSound">
            <summary>
            The name of the sound to play when a new message is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsNewMessageBadgeCountEnabled">
            <summary>
            Whether the new message badge is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsAddedToChannelEnabled">
            <summary>
            Whether to send a notification when a member is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsAddedToChannelTemplate">
            <summary>
            The template to use to create the notification text displayed when a member is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsAddedToChannelSound">
            <summary>
            The name of the sound to play when a member is added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsRemovedFromChannelEnabled">
            <summary>
            Whether to send a notification to a user when they are removed from a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsRemovedFromChannelTemplate">
            <summary>
            The template to use to create the notification text displayed to a user when they are removed
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsRemovedFromChannelSound">
            <summary>
            The name of the sound to play to a user when they are removed from a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsInvitedToChannelEnabled">
            <summary>
            Whether to send a notification when a user is invited to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsInvitedToChannelTemplate">
            <summary>
            The template to use to create the notification text displayed when a user is invited to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsInvitedToChannelSound">
            <summary>
            The name of the sound to play when a user is invited to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.PreWebhookUrl">
            <summary>
            The webhook URL for pre-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.PostWebhookUrl">
            <summary>
            The URL for post-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.WebhookMethod">
            <summary>
            The HTTP method  to use for both PRE and POST webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.WebhookFilters">
            <summary>
            The list of webhook events that are enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.LimitsChannelMembers">
            <summary>
            The maximum number of Members that can be added to Channels within this Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.LimitsUserChannels">
            <summary>
            The maximum number of Channels Users can be a Member of within this Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.MediaCompatibilityMessage">
            <summary>
            The message to send when a media message has no text
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.PreWebhookRetryCount">
            <summary>
            Count of times webhook will be retried in case of timeout or 429/503/504 HTTP responses
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.PostWebhookRetryCount">
            <summary>
            The number of times calls to the `post_webhook_url` will be retried
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.NotificationsLogEnabled">
            <summary>
            Whether to log notifications
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.Fetch(Twilio.Rest.IpMessaging.V2.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.FetchAsync(Twilio.Rest.IpMessaging.V2.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.Delete(Twilio.Rest.IpMessaging.V2.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.DeleteAsync(Twilio.Rest.IpMessaging.V2.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.Create(Twilio.Rest.IpMessaging.V2.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.CreateAsync(Twilio.Rest.IpMessaging.V2.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.Create(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.CreateAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.Read(Twilio.Rest.IpMessaging.V2.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.ReadAsync(Twilio.Rest.IpMessaging.V2.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.Update(Twilio.Rest.IpMessaging.V2.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.UpdateAsync(Twilio.Rest.IpMessaging.V2.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.Update(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int32},System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="defaultServiceRoleSid"> The service role assigned to users when they are added to the service </param>
            <param name="defaultChannelRoleSid"> The channel role assigned to users when they are added to a channel </param>
            <param name="defaultChannelCreatorRoleSid"> The channel role assigned to a channel creator when they join a new
                                               channel </param>
            <param name="readStatusEnabled"> Whether to enable the Message Consumption Horizon feature </param>
            <param name="reachabilityEnabled"> Whether to enable the Reachability Indicator feature for this Service instance
                                      </param>
            <param name="typingIndicatorTimeout"> How long in seconds to wait before assuming the user is no longer typing
                                         </param>
            <param name="consumptionReportInterval"> DEPRECATED </param>
            <param name="notificationsNewMessageEnabled"> Whether to send a notification when a new message is added to a
                                                 channel </param>
            <param name="notificationsNewMessageTemplate"> The template to use to create the notification text displayed when a
                                                  new message is added to a channel </param>
            <param name="notificationsNewMessageSound"> The name of the sound to play when a new message is added to a channel
                                               </param>
            <param name="notificationsNewMessageBadgeCountEnabled"> Whether the new message badge is enabled </param>
            <param name="notificationsAddedToChannelEnabled"> Whether to send a notification when a member is added to a
                                                     channel </param>
            <param name="notificationsAddedToChannelTemplate"> The template to use to create the notification text displayed
                                                      when a member is added to a channel </param>
            <param name="notificationsAddedToChannelSound"> The name of the sound to play when a member is added to a channel
                                                   </param>
            <param name="notificationsRemovedFromChannelEnabled"> Whether to send a notification to a user when they are
                                                         removed from a channel </param>
            <param name="notificationsRemovedFromChannelTemplate"> The template to use to create the notification text
                                                          displayed to a user when they are removed </param>
            <param name="notificationsRemovedFromChannelSound"> The name of the sound to play to a user when they are removed
                                                       from a channel </param>
            <param name="notificationsInvitedToChannelEnabled"> Whether to send a notification when a user is invited to a
                                                       channel </param>
            <param name="notificationsInvitedToChannelTemplate"> The template to use to create the notification text displayed
                                                        when a user is invited to a channel </param>
            <param name="notificationsInvitedToChannelSound"> The name of the sound to play when a user is invited to a channel
                                                     </param>
            <param name="preWebhookUrl"> The webhook URL for pre-event webhooks </param>
            <param name="postWebhookUrl"> The URL for post-event webhooks </param>
            <param name="webhookMethod"> The HTTP method  to use for both PRE and POST webhooks </param>
            <param name="webhookFilters"> The list of webhook events that are enabled for this Service instance </param>
            <param name="limitsChannelMembers"> The maximum number of Members that can be added to Channels within this Service
                                       </param>
            <param name="limitsUserChannels"> The maximum number of Channels Users can be a Member of within this Service
                                     </param>
            <param name="mediaCompatibilityMessage"> The message to send when a media message has no text </param>
            <param name="preWebhookRetryCount"> Count of times webhook will be retried in case of timeout or 429/503/504 HTTP
                                       responses </param>
            <param name="postWebhookRetryCount"> The number of times calls to the `post_webhook_url` will be retried </param>
            <param name="notificationsLogEnabled"> Whether to log notifications </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,System.Uri,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int32},System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="defaultServiceRoleSid"> The service role assigned to users when they are added to the service </param>
            <param name="defaultChannelRoleSid"> The channel role assigned to users when they are added to a channel </param>
            <param name="defaultChannelCreatorRoleSid"> The channel role assigned to a channel creator when they join a new
                                               channel </param>
            <param name="readStatusEnabled"> Whether to enable the Message Consumption Horizon feature </param>
            <param name="reachabilityEnabled"> Whether to enable the Reachability Indicator feature for this Service instance
                                      </param>
            <param name="typingIndicatorTimeout"> How long in seconds to wait before assuming the user is no longer typing
                                         </param>
            <param name="consumptionReportInterval"> DEPRECATED </param>
            <param name="notificationsNewMessageEnabled"> Whether to send a notification when a new message is added to a
                                                 channel </param>
            <param name="notificationsNewMessageTemplate"> The template to use to create the notification text displayed when a
                                                  new message is added to a channel </param>
            <param name="notificationsNewMessageSound"> The name of the sound to play when a new message is added to a channel
                                               </param>
            <param name="notificationsNewMessageBadgeCountEnabled"> Whether the new message badge is enabled </param>
            <param name="notificationsAddedToChannelEnabled"> Whether to send a notification when a member is added to a
                                                     channel </param>
            <param name="notificationsAddedToChannelTemplate"> The template to use to create the notification text displayed
                                                      when a member is added to a channel </param>
            <param name="notificationsAddedToChannelSound"> The name of the sound to play when a member is added to a channel
                                                   </param>
            <param name="notificationsRemovedFromChannelEnabled"> Whether to send a notification to a user when they are
                                                         removed from a channel </param>
            <param name="notificationsRemovedFromChannelTemplate"> The template to use to create the notification text
                                                          displayed to a user when they are removed </param>
            <param name="notificationsRemovedFromChannelSound"> The name of the sound to play to a user when they are removed
                                                       from a channel </param>
            <param name="notificationsInvitedToChannelEnabled"> Whether to send a notification when a user is invited to a
                                                       channel </param>
            <param name="notificationsInvitedToChannelTemplate"> The template to use to create the notification text displayed
                                                        when a user is invited to a channel </param>
            <param name="notificationsInvitedToChannelSound"> The name of the sound to play when a user is invited to a channel
                                                     </param>
            <param name="preWebhookUrl"> The webhook URL for pre-event webhooks </param>
            <param name="postWebhookUrl"> The URL for post-event webhooks </param>
            <param name="webhookMethod"> The HTTP method  to use for both PRE and POST webhooks </param>
            <param name="webhookFilters"> The list of webhook events that are enabled for this Service instance </param>
            <param name="limitsChannelMembers"> The maximum number of Members that can be added to Channels within this Service
                                       </param>
            <param name="limitsUserChannels"> The maximum number of Channels Users can be a Member of within this Service
                                     </param>
            <param name="mediaCompatibilityMessage"> The message to send when a media message has no text </param>
            <param name="preWebhookRetryCount"> Count of times webhook will be retried in case of timeout or 429/503/504 HTTP
                                       responses </param>
            <param name="postWebhookRetryCount"> The number of times calls to the `post_webhook_url` will be retried </param>
            <param name="notificationsLogEnabled"> Whether to log notifications </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.DefaultServiceRoleSid">
            <summary>
            The service role assigned to users when they are added to the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.DefaultChannelRoleSid">
            <summary>
            The channel role assigned to users when they are added to a channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.DefaultChannelCreatorRoleSid">
            <summary>
            The channel role assigned to a channel creator when they join a new channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.ReadStatusEnabled">
            <summary>
            Whether the Message Consumption Horizon feature is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.ReachabilityEnabled">
            <summary>
            Whether the Reachability Indicator feature is enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.TypingIndicatorTimeout">
            <summary>
            How long in seconds to wait before assuming the user is no longer typing
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.ConsumptionReportInterval">
            <summary>
            DEPRECATED
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.Limits">
            <summary>
            An object that describes the limits of the service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.PreWebhookUrl">
            <summary>
            The webhook URL for pre-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.PostWebhookUrl">
            <summary>
            The URL for post-event webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.WebhookMethod">
            <summary>
            The HTTP method  to use for both PRE and POST webhooks
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.WebhookFilters">
            <summary>
            The list of webhook events that are enabled for this Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.PreWebhookRetryCount">
            <summary>
            Count of times webhook will be retried in case of timeout or 429/503/504 HTTP responses
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.PostWebhookRetryCount">
            <summary>
            The number of times calls to the `post_webhook_url` will be retried
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.Notifications">
            <summary>
            The notification configuration for the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.Media">
            <summary>
            The properties of the media that the service supports
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.Url">
            <summary>
            The absolute URL of the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.ServiceResource.Links">
            <summary>
            The absolute URLs of the Service's Channels, Roles, and Users
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.ReadBindingOptions">
            <summary>
            ReadBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ReadBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ReadBindingOptions.BindingType">
            <summary>
            The push technology used by the Binding resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ReadBindingOptions.Identity">
            <summary>
            The `identity` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ReadBindingOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ReadBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.FetchBindingOptions">
            <summary>
            FetchBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.FetchBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.FetchBindingOptions.PathSid">
            <summary>
            The SID of the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.FetchBindingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.FetchBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.DeleteBindingOptions">
            <summary>
            DeleteBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.DeleteBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.DeleteBindingOptions.PathSid">
            <summary>
            The SID of the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.DeleteBindingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.DeleteBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.Read(Twilio.Rest.IpMessaging.V2.Service.ReadBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.ReadAsync(Twilio.Rest.IpMessaging.V2.Service.ReadBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.Read(System.String,System.Collections.Generic.List{Twilio.Rest.IpMessaging.V2.Service.BindingResource.BindingTypeEnum},System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="bindingType"> The push technology used by the Binding resources to read </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.ReadAsync(System.String,System.Collections.Generic.List{Twilio.Rest.IpMessaging.V2.Service.BindingResource.BindingTypeEnum},System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="bindingType"> The push technology used by the Binding resources to read </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.BindingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.BindingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.Fetch(Twilio.Rest.IpMessaging.V2.Service.FetchBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.FetchAsync(Twilio.Rest.IpMessaging.V2.Service.FetchBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.Delete(Twilio.Rest.IpMessaging.V2.Service.DeleteBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.DeleteAsync(Twilio.Rest.IpMessaging.V2.Service.DeleteBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.BindingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a BindingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> BindingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.ServiceSid">
            <summary>
            The SID of the Service that the Binding resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.Endpoint">
            <summary>
            The unique endpoint identifier for the Binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.CredentialSid">
            <summary>
            The SID of the Credential for the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.BindingType">
            <summary>
            The push technology to use for the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.MessageTypes">
            <summary>
            The Programmable Chat message types the binding is subscribed to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.Url">
            <summary>
            The absolute URL of the Binding resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.BindingResource.Links">
            <summary>
            The absolute URLs of the Binding's User
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.FetchChannelOptions">
            <summary>
            FetchChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.FetchChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.FetchChannelOptions.PathSid">
            <summary>
            The SID of the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.FetchChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.FetchChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.DeleteChannelOptions">
            <summary>
            DeleteChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.DeleteChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.DeleteChannelOptions.PathSid">
            <summary>
            The SID of the Channel resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.DeleteChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.DeleteChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions">
            <summary>
            CreateChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the Channel resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the Channel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions.Type">
            <summary>
            The visibility of the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions.CreatedBy">
            <summary>
            The identity of the User that created the Channel
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Channel resource under </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.ReadChannelOptions">
            <summary>
            ReadChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ReadChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ReadChannelOptions.Type">
            <summary>
            The visibility of the channel to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ReadChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ReadChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions">
            <summary>
            UpdateChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions.PathSid">
            <summary>
            The SID of the Channel resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions.CreatedBy">
            <summary>
            The identity of the User that created the Channel
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to update </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Fetch(Twilio.Rest.IpMessaging.V2.Service.FetchChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.FetchAsync(Twilio.Rest.IpMessaging.V2.Service.FetchChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Delete(Twilio.Rest.IpMessaging.V2.Service.DeleteChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.DeleteAsync(Twilio.Rest.IpMessaging.V2.Service.DeleteChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Create(Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.CreateAsync(Twilio.Rest.IpMessaging.V2.Service.CreateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Create(System.String,System.String,System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.ChannelResource.ChannelTypeEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Channel resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Channel resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="type"> The visibility of the channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The identity of the User that created the Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.ChannelResource.ChannelTypeEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Channel resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Channel resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="type"> The visibility of the channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The identity of the User that created the Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Read(Twilio.Rest.IpMessaging.V2.Service.ReadChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.ReadAsync(Twilio.Rest.IpMessaging.V2.Service.ReadChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Read(System.String,System.Collections.Generic.List{Twilio.Rest.IpMessaging.V2.Service.ChannelResource.ChannelTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="type"> The visibility of the channel to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.ReadAsync(System.String,System.Collections.Generic.List{Twilio.Rest.IpMessaging.V2.Service.ChannelResource.ChannelTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="type"> The visibility of the channel to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.ChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.ChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Update(Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.UpdateAsync(Twilio.Rest.IpMessaging.V2.Service.UpdateChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Channel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Update(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The identity of the User that created the Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Channel resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The identity of the User that created the Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Channel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Type">
            <summary>
            The visibility of the channel. Can be: `public` or `private`
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.CreatedBy">
            <summary>
            The identity of the User that created the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.MembersCount">
            <summary>
            The number of Members in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.MessagesCount">
            <summary>
            The number of Messages that have been passed in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Url">
            <summary>
            The absolute URL of the Channel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ChannelResource.Links">
            <summary>
            Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchInviteOptions">
            <summary>
            FetchInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to fetch belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchInviteOptions.PathSid">
            <summary>
            The SID of the Invite resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateInviteOptions">
            <summary>
            CreateInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateInviteOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateInviteOptions.RoleSid">
            <summary>
            The Role assigned to the new member
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadInviteOptions">
            <summary>
            ReadInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resources to read belong to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadInviteOptions.Identity">
            <summary>
            The `identity` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadInviteOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteInviteOptions">
            <summary>
            DeleteInviteOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteInviteOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteInviteOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteInviteOptions.PathSid">
            <summary>
            The SID of the Invite resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteInviteOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteInviteOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteInviteOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.Fetch(Twilio.Rest.IpMessaging.V2.Service.Channel.FetchInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.FetchAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.FetchInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.Create(Twilio.Rest.IpMessaging.V2.Service.Channel.CreateInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.CreateAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.CreateInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The Role assigned to the new member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The Role assigned to the new member </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.Read(Twilio.Rest.IpMessaging.V2.Service.Channel.ReadInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.ReadAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.ReadInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.Read(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.ReadAsync(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.Delete(Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.DeleteAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteInviteOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Invite parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Invite resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Invite </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a InviteResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> InviteResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.ChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.RoleSid">
            <summary>
            The SID of the Role assigned to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.CreatedBy">
            <summary>
            The identity of the User that created the invite
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.InviteResource.Url">
            <summary>
            The absolute URL of the Invite resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMemberOptions">
            <summary>
            FetchMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMemberOptions.PathChannelSid">
            <summary>
            The SID of the channel the member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMemberOptions.PathSid">
            <summary>
            The SID of the Member resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
            <param name="pathSid"> The SID of the Member resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions">
            <summary>
            CreateMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions.PathChannelSid">
            <summary>
            The SID of the channel the new member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions.RoleSid">
            <summary>
            The SID of the Role to assign to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions.LastConsumedMessageIndex">
            <summary>
            The index of the last Message in the Channel the Member has read
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions.LastConsumptionTimestamp">
            <summary>
            The ISO 8601 based timestamp string representing the datetime of the last Message read event for the member within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMemberOptions">
            <summary>
            ReadMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMemberOptions.PathChannelSid">
            <summary>
            The SID of the channel the member belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMemberOptions.Identity">
            <summary>
            The `identity` value of the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMemberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMemberOptions">
            <summary>
            DeleteMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMemberOptions.PathChannelSid">
            <summary>
            The SID of the channel the Member resource to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMemberOptions.PathSid">
            <summary>
            The SID of the Member resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the Member resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Member resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions">
            <summary>
            UpdateMemberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions.PathChannelSid">
            <summary>
            The SID of the channel the member to update belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions.PathSid">
            <summary>
            The SID of the Member resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions.RoleSid">
            <summary>
            The SID of the Role to assign to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions.LastConsumedMessageIndex">
            <summary>
            The index of the last consumed Message for the Channel for the Member
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions.LastConsumptionTimestamp">
            <summary>
            The ISO 8601 based timestamp string representing the datetime of the last Message read event for the Member within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateMemberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the member to update belongs to </param>
            <param name="pathSid"> The SID of the Member resource to update </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Fetch(Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.FetchAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
            <param name="pathSid"> The SID of the Member resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
            <param name="pathSid"> The SID of the Member resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Create(Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.CreateAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Create(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last Message in the Channel the Member has read </param>
            <param name="lastConsumptionTimestamp"> The ISO 8601 based timestamp string representing the datetime of the last
                                           Message read event for the member within the Channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.CreateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the new member belongs to </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last Message in the Channel the Member has read </param>
            <param name="lastConsumptionTimestamp"> The ISO 8601 based timestamp string representing the datetime of the last
                                           Message read event for the member within the Channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Read(Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.ReadAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Read(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.ReadAsync(System.String,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the channel the member belongs to </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Delete(Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.DeleteAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the Member resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Member resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the channel the Member resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Member resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Update(Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.UpdateAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMemberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Member parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Update(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the member to update belongs to </param>
            <param name="pathSid"> The SID of the Member resource to update </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last consumed Message for the Channel for the Member
                                           </param>
            <param name="lastConsumptionTimestamp"> The ISO 8601 based timestamp string representing the datetime of the last
                                           Message read event for the Member within the Channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the channel the member to update belongs to </param>
            <param name="pathSid"> The SID of the Member resource to update </param>
            <param name="roleSid"> The SID of the Role to assign to the member </param>
            <param name="lastConsumedMessageIndex"> The index of the last consumed Message for the Channel for the Member
                                           </param>
            <param name="lastConsumptionTimestamp"> The ISO 8601 based timestamp string representing the datetime of the last
                                           Message read event for the Member within the Channel </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Member </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MemberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MemberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.ChannelSid">
            <summary>
            The SID of the Channel for the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.RoleSid">
            <summary>
            The SID of the Role assigned to the member
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.LastConsumedMessageIndex">
            <summary>
            The index of the last Message that the Member has read within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.LastConsumptionTimestamp">
            <summary>
            The ISO 8601 based timestamp string that represents the datetime of the last Message read event for the Member within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Url">
            <summary>
            The absolute URL of the Member resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MemberResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMessageOptions">
            <summary>
            FetchMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMessageOptions.PathChannelSid">
            <summary>
            The SID of the Channel the message to fetch belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMessageOptions.PathSid">
            <summary>
            The SID of the Message resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The SID of the Message resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions">
            <summary>
            CreateMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions.PathChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions.From">
            <summary>
            The Identity of the new message's author
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions.LastUpdatedBy">
            <summary>
            The Identity of the User who last updated the Message
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions.Body">
            <summary>
            The message to send to the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions.MediaSid">
            <summary>
             The Media Sid to be attached to the new Message
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMessageOptions">
            <summary>
            ReadMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMessageOptions.PathChannelSid">
            <summary>
            The SID of the Channel the message to read belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMessageOptions.Order">
            <summary>
            The sort order of the returned messages
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to read belongs to </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMessageOptions">
            <summary>
            DeleteMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMessageOptions.PathChannelSid">
            <summary>
            The SID of the Channel the message to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMessageOptions.PathSid">
            <summary>
            The SID of the Message resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to delete belongs to </param>
            <param name="pathSid"> The SID of the Message resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions">
            <summary>
            UpdateMessageOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions.PathChannelSid">
            <summary>
            The SID of the Channel the message belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions.PathSid">
            <summary>
            The SID of the Message resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions.Body">
            <summary>
            The message to send to the channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions.LastUpdatedBy">
            <summary>
            The Identity of the User who last updated the Message, if applicable
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions.From">
            <summary>
            The Identity of the message's author
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message belongs to </param>
            <param name="pathSid"> The SID of the Message resource to update </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Fetch(Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.FetchAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The SID of the Message resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to fetch belongs to </param>
            <param name="pathSid"> The SID of the Message resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Create(Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.CreateAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Create(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="from"> The Identity of the new message's author </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="lastUpdatedBy"> The Identity of the User who last updated the Message </param>
            <param name="body"> The message to send to the channel </param>
            <param name="mediaSid">  The Media Sid to be attached to the new Message </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.CreateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="from"> The Identity of the new message's author </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="lastUpdatedBy"> The Identity of the User who last updated the Message </param>
            <param name="body"> The message to send to the channel </param>
            <param name="mediaSid">  The Media Sid to be attached to the new Message </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Read(Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.ReadAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Read(System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.OrderTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to read belongs to </param>
            <param name="order"> The sort order of the returned messages </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.ReadAsync(System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.OrderTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to read belongs to </param>
            <param name="order"> The sort order of the returned messages </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Delete(Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.DeleteAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to delete belongs to </param>
            <param name="pathSid"> The SID of the Message resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message to delete belongs to </param>
            <param name="pathSid"> The SID of the Message resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Update(Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.UpdateAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Update(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message belongs to </param>
            <param name="pathSid"> The SID of the Message resource to update </param>
            <param name="body"> The message to send to the channel </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="lastUpdatedBy"> The Identity of the User who last updated the Message, if applicable </param>
            <param name="from"> The Identity of the message's author </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the message belongs to </param>
            <param name="pathSid"> The SID of the Message resource to update </param>
            <param name="body"> The message to send to the channel </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="lastUpdatedBy"> The Identity of the User who last updated the Message, if applicable </param>
            <param name="from"> The Identity of the message's author </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MessageResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MessageResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.To">
            <summary>
            The SID of the Channel that the message was sent to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.ChannelSid">
            <summary>
            The SID of the Channel the Message resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.LastUpdatedBy">
            <summary>
            The Identity of the User who last updated the Message
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.WasEdited">
            <summary>
            Whether the message has been edited since  it was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.From">
            <summary>
            The Identity of the message's author
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Body">
            <summary>
            The content of the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Index">
            <summary>
            The index of the message within the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Type">
            <summary>
            The Message type
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Media">
            <summary>
            A Media object that describes the Message's media if attached; otherwise, null
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.MessageResource.Url">
            <summary>
            The absolute URL of the Message resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadWebhookOptions">
            <summary>
            ReadWebhookOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadWebhookOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadWebhookOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resources to read belong to
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadWebhookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadWebhookOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.ReadWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchWebhookOptions">
            <summary>
            FetchWebhookOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchWebhookOptions.PathServiceSid">
            <summary>
            The SID of the Service with the Channel to fetch the Webhook resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchWebhookOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to fetch belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchWebhookOptions.PathSid">
            <summary>
            The SID of the Channel Webhook resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchWebhookOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchWebhookOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to fetch the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.FetchWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions">
            <summary>
            CreateWebhookOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions.PathServiceSid">
            <summary>
            The SID of the Service with the Channel to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions.PathChannelSid">
            <summary>
            The SID of the Channel the new resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions.Type">
            <summary>
            The type of webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions.ConfigurationUrl">
            <summary>
            The URL of the webhook to call
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions.ConfigurationMethod">
            <summary>
            The HTTP method used to call `configuration.url`
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions.ConfigurationFilters">
            <summary>
            The events that cause us to call the Channel Webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions.ConfigurationTriggers">
            <summary>
            A string that will cause us to call the webhook when it is found in a message body
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions.ConfigurationFlowSid">
            <summary>
            The SID of the Studio Flow to call when an event occurs
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions.ConfigurationRetryCount">
            <summary>
            The number of times to retry the webhook if the first attempt fails
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions.#ctor(System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.TypeEnum)">
            <summary>
            Construct a new CreateWebhookOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="type"> The type of webhook </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions">
            <summary>
            UpdateWebhookOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions.PathServiceSid">
            <summary>
            The SID of the Service with the Channel that has the Webhook resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions.PathChannelSid">
            <summary>
            The SID of the Channel the resource to update belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions.PathSid">
            <summary>
            The SID of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions.ConfigurationUrl">
            <summary>
            The URL of the webhook to call
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions.ConfigurationMethod">
            <summary>
            The HTTP method used to call `configuration.url`
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions.ConfigurationFilters">
            <summary>
            The events that cause us to call the Channel Webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions.ConfigurationTriggers">
            <summary>
            A string that will cause us to call the webhook when it is found in a message body
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions.ConfigurationFlowSid">
            <summary>
            The SID of the Studio Flow to call when an event occurs
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions.ConfigurationRetryCount">
            <summary>
            The number of times to retry the webhook if the first attempt fails
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateWebhookOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel that has the Webhook resource to update
                                 </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to update belongs to </param>
            <param name="pathSid"> The SID of the resource </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteWebhookOptions">
            <summary>
            DeleteWebhookOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteWebhookOptions.PathServiceSid">
            <summary>
            The SID of the Service with the Channel to delete the Webhook resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteWebhookOptions.PathChannelSid">
            <summary>
            The SID of the channel the resource to delete belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteWebhookOptions.PathSid">
            <summary>
            The SID of the Channel Webhook resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteWebhookOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteWebhookOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to delete the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Read(Twilio.Rest.IpMessaging.V2.Service.Channel.ReadWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.ReadAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.ReadWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathChannelSid"> The SID of the Channel the resources to read belong to </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Fetch(Twilio.Rest.IpMessaging.V2.Service.Channel.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.FetchAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to fetch the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to fetch the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to fetch belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Create(Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.CreateAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.CreateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Create(System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.TypeEnum,System.String,Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="type"> The type of webhook </param>
            <param name="configurationUrl"> The URL of the webhook to call </param>
            <param name="configurationMethod"> The HTTP method used to call `configuration.url` </param>
            <param name="configurationFilters"> The events that cause us to call the Channel Webhook </param>
            <param name="configurationTriggers"> A string that will cause us to call the webhook when it is found in a message
                                        body </param>
            <param name="configurationFlowSid"> The SID of the Studio Flow to call when an event occurs </param>
            <param name="configurationRetryCount"> The number of times to retry the webhook if the first attempt fails </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.CreateAsync(System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.TypeEnum,System.String,Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to create the resource under </param>
            <param name="pathChannelSid"> The SID of the Channel the new resource belongs to </param>
            <param name="type"> The type of webhook </param>
            <param name="configurationUrl"> The URL of the webhook to call </param>
            <param name="configurationMethod"> The HTTP method used to call `configuration.url` </param>
            <param name="configurationFilters"> The events that cause us to call the Channel Webhook </param>
            <param name="configurationTriggers"> A string that will cause us to call the webhook when it is found in a message
                                        body </param>
            <param name="configurationFlowSid"> The SID of the Studio Flow to call when an event occurs </param>
            <param name="configurationRetryCount"> The number of times to retry the webhook if the first attempt fails </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Update(Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.UpdateAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Update(System.String,System.String,System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel that has the Webhook resource to update
                                 </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to update belongs to </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="configurationUrl"> The URL of the webhook to call </param>
            <param name="configurationMethod"> The HTTP method used to call `configuration.url` </param>
            <param name="configurationFilters"> The events that cause us to call the Channel Webhook </param>
            <param name="configurationTriggers"> A string that will cause us to call the webhook when it is found in a message
                                        body </param>
            <param name="configurationFlowSid"> The SID of the Studio Flow to call when an event occurs </param>
            <param name="configurationRetryCount"> The number of times to retry the webhook if the first attempt fails </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.UpdateAsync(System.String,System.String,System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel that has the Webhook resource to update
                                 </param>
            <param name="pathChannelSid"> The SID of the Channel the resource to update belongs to </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="configurationUrl"> The URL of the webhook to call </param>
            <param name="configurationMethod"> The HTTP method used to call `configuration.url` </param>
            <param name="configurationFilters"> The events that cause us to call the Channel Webhook </param>
            <param name="configurationTriggers"> A string that will cause us to call the webhook when it is found in a message
                                        body </param>
            <param name="configurationFlowSid"> The SID of the Studio Flow to call when an event occurs </param>
            <param name="configurationRetryCount"> The number of times to retry the webhook if the first attempt fails </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Delete(Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.DeleteAsync(Twilio.Rest.IpMessaging.V2.Service.Channel.DeleteWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to delete the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service with the Channel to delete the Webhook resource from </param>
            <param name="pathChannelSid"> The SID of the channel the resource to delete belongs to </param>
            <param name="pathSid"> The SID of the Channel Webhook resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WebhookResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WebhookResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.ServiceSid">
            <summary>
            The SID of the Service that the Channel Webhook resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.ChannelSid">
            <summary>
            The SID of the Channel the Channel Webhook resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Type">
            <summary>
            The type of webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Url">
            <summary>
            The absolute URL of the Channel Webhook resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.Configuration">
            <summary>
            The JSON string that describes the configuration object for the channel webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.Channel.WebhookResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.FetchRoleOptions">
            <summary>
            FetchRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.FetchRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.FetchRoleOptions.PathSid">
            <summary>
            The SID of the Role resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.FetchRoleOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the Role resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.FetchRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.DeleteRoleOptions">
            <summary>
            DeleteRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.DeleteRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.DeleteRoleOptions.PathSid">
            <summary>
            The SID of the Role resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.DeleteRoleOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Role resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.DeleteRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.CreateRoleOptions">
            <summary>
            CreateRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateRoleOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateRoleOptions.Type">
            <summary>
            The type of role
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateRoleOptions.Permission">
            <summary>
            A permission the role should have
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.CreateRoleOptions.#ctor(System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String})">
            <summary>
            Construct a new CreateRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.CreateRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.ReadRoleOptions">
            <summary>
            ReadRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ReadRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ReadRoleOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ReadRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.UpdateRoleOptions">
            <summary>
            UpdateRoleOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateRoleOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateRoleOptions.PathSid">
            <summary>
            The SID of the Role resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateRoleOptions.Permission">
            <summary>
            A permission the role should have
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UpdateRoleOptions.#ctor(System.String,System.String,System.Collections.Generic.List{System.String})">
            <summary>
            Construct a new UpdateRoleOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Role resource to update </param>
            <param name="permission"> A permission the role should have </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UpdateRoleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Fetch(Twilio.Rest.IpMessaging.V2.Service.FetchRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.FetchAsync(Twilio.Rest.IpMessaging.V2.Service.FetchRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the Role resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the Role resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Delete(Twilio.Rest.IpMessaging.V2.Service.DeleteRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.DeleteAsync(Twilio.Rest.IpMessaging.V2.Service.DeleteRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Role resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of the Role resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Create(Twilio.Rest.IpMessaging.V2.Service.CreateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.CreateAsync(Twilio.Rest.IpMessaging.V2.Service.CreateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Create(System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.CreateAsync(System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.RoleResource.RoleTypeEnum,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="type"> The type of role </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Read(Twilio.Rest.IpMessaging.V2.Service.ReadRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.ReadAsync(Twilio.Rest.IpMessaging.V2.Service.ReadRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.RoleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.RoleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Update(Twilio.Rest.IpMessaging.V2.Service.UpdateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.UpdateAsync(Twilio.Rest.IpMessaging.V2.Service.UpdateRoleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Role parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Update(System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Role resource to update </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.UpdateAsync(System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the Role resource to update </param>
            <param name="permission"> A permission the role should have </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Role </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.RoleResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RoleResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RoleResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.RoleResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.RoleResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.RoleResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Type">
            <summary>
            The type of role
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Permissions">
            <summary>
            An array of the permissions the role has been granted
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.RoleResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.RoleResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.RoleResource.Url">
            <summary>
            The absolute URL of the Role resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.FetchUserOptions">
            <summary>
            FetchUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.FetchUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.FetchUserOptions.PathSid">
            <summary>
            The SID of the User resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.FetchUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the User resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.FetchUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.DeleteUserOptions">
            <summary>
            DeleteUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.DeleteUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.DeleteUserOptions.PathSid">
            <summary>
            The SID of  the User resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.DeleteUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of  the User resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.DeleteUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.CreateUserOptions">
            <summary>
            CreateUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the new resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateUserOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateUserOptions.RoleSid">
            <summary>
            The SID of the Role assigned to this user
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateUserOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.CreateUserOptions.FriendlyName">
            <summary>
            A string to describe the new resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.CreateUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.CreateUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.ReadUserOptions">
            <summary>
            ReadUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.ReadUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the User resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ReadUserOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the User resources from </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.ReadUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.UpdateUserOptions">
            <summary>
            UpdateUserOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateUserOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateUserOptions.PathSid">
            <summary>
            The SID of the User resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateUserOptions.RoleSid">
            <summary>
            The SID id of the Role assigned to this user
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateUserOptions.Attributes">
            <summary>
            A valid JSON string that contains application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UpdateUserOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UpdateUserOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateUserOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the User resource to update </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UpdateUserOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.Fetch(Twilio.Rest.IpMessaging.V2.Service.FetchUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.FetchAsync(Twilio.Rest.IpMessaging.V2.Service.FetchUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the User resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID of the User resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.Delete(Twilio.Rest.IpMessaging.V2.Service.DeleteUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.DeleteAsync(Twilio.Rest.IpMessaging.V2.Service.DeleteUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of  the User resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID of  the User resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.Create(Twilio.Rest.IpMessaging.V2.Service.CreateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.CreateAsync(Twilio.Rest.IpMessaging.V2.Service.CreateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the new resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="roleSid"> The SID of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the new resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.Read(Twilio.Rest.IpMessaging.V2.Service.ReadUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.ReadAsync(Twilio.Rest.IpMessaging.V2.Service.ReadUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the User resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the User resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.UserResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.UserResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.Update(Twilio.Rest.IpMessaging.V2.Service.UpdateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.UpdateAsync(Twilio.Rest.IpMessaging.V2.Service.UpdateUserOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update User parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.Update(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the User resource to update </param>
            <param name="roleSid"> The SID id of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The SID of the User resource to update </param>
            <param name="roleSid"> The SID id of the Role assigned to this user </param>
            <param name="attributes"> A valid JSON string that contains application-specific data </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of User </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.UserResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UserResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UserResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.RoleSid">
            <summary>
            The SID of the assigned to the user
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.IsOnline">
            <summary>
            Whether the User is actively connected to the Service instance and online
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.IsNotifiable">
            <summary>
            Whether the User has a potentially valid Push Notification registration for the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.JoinedChannelsCount">
            <summary>
            The number of Channels the User is a Member of
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.Links">
            <summary>
            The absolute URLs of the Channel and Binding resources related to the user
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.UserResource.Url">
            <summary>
            The absolute URL of the User resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.User.ReadUserBindingOptions">
            <summary>
            ReadUserBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.ReadUserBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.ReadUserBindingOptions.PathUserSid">
            <summary>
            The SID of the User with the User Bindings to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.ReadUserBindingOptions.BindingType">
            <summary>
            The push technology used by the User Binding resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.ReadUserBindingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadUserBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
            <param name="pathUserSid"> The SID of the User with the User Bindings to read </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.ReadUserBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserBindingOptions">
            <summary>
            FetchUserBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserBindingOptions.PathUserSid">
            <summary>
            The SID of the User with the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserBindingOptions.PathSid">
            <summary>
            The SID of the User Binding resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserBindingOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchUserBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathUserSid"> The SID of the User with the binding </param>
            <param name="pathSid"> The SID of the User Binding resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.User.DeleteUserBindingOptions">
            <summary>
            DeleteUserBindingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.DeleteUserBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.DeleteUserBindingOptions.PathUserSid">
            <summary>
            The SID of the User of the User Bindings to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.DeleteUserBindingOptions.PathSid">
            <summary>
            The SID of the User Binding resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.DeleteUserBindingOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteUserBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathUserSid"> The SID of the User of the User Bindings to delete </param>
            <param name="pathSid"> The SID of the User Binding resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.DeleteUserBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.Read(Twilio.Rest.IpMessaging.V2.Service.User.ReadUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.ReadAsync(Twilio.Rest.IpMessaging.V2.Service.User.ReadUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.Read(System.String,System.String,System.Collections.Generic.List{Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.BindingTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
            <param name="pathUserSid"> The SID of the User with the User Bindings to read </param>
            <param name="bindingType"> The push technology used by the User Binding resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.ReadAsync(System.String,System.String,System.Collections.Generic.List{Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.BindingTypeEnum},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
            <param name="pathUserSid"> The SID of the User with the User Bindings to read </param>
            <param name="bindingType"> The push technology used by the User Binding resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.Fetch(Twilio.Rest.IpMessaging.V2.Service.User.FetchUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.FetchAsync(Twilio.Rest.IpMessaging.V2.Service.User.FetchUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathUserSid"> The SID of the User with the binding </param>
            <param name="pathSid"> The SID of the User Binding resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathUserSid"> The SID of the User with the binding </param>
            <param name="pathSid"> The SID of the User Binding resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.Delete(Twilio.Rest.IpMessaging.V2.Service.User.DeleteUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.DeleteAsync(Twilio.Rest.IpMessaging.V2.Service.User.DeleteUserBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete UserBinding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathUserSid"> The SID of the User of the User Bindings to delete </param>
            <param name="pathSid"> The SID of the User Binding resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathUserSid"> The SID of the User of the User Bindings to delete </param>
            <param name="pathSid"> The SID of the User Binding resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserBinding </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UserBindingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UserBindingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.Endpoint">
            <summary>
            The unique endpoint identifier for the User Binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.UserSid">
            <summary>
            The SID of the User with the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.CredentialSid">
            <summary>
            The SID of the Credential for the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.BindingType">
            <summary>
            The push technology to use for the binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.MessageTypes">
            <summary>
            The Programmable Chat message types the binding is subscribed to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserBindingResource.Url">
            <summary>
            The absolute URL of the User Binding resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.User.ReadUserChannelOptions">
            <summary>
            List all Channels for a given User.
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.ReadUserChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.ReadUserChannelOptions.PathUserSid">
            <summary>
            The SID of the User to fetch the User Channel resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.ReadUserChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadUserChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.ReadUserChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserChannelOptions">
            <summary>
            FetchUserChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the User Channel resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserChannelOptions.PathUserSid">
            <summary>
            The SID of the User to fetch the User Channel resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserChannelOptions.PathChannelSid">
            <summary>
            The SID of the Channel that has the User Channel to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserChannelOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchUserChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the User Channel resource from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel that has the User Channel to fetch </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.FetchUserChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.IpMessaging.V2.Service.User.UpdateUserChannelOptions">
            <summary>
            UpdateUserChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UpdateUserChannelOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UpdateUserChannelOptions.PathUserSid">
            <summary>
            The SID of the User to update the User Channel resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UpdateUserChannelOptions.PathChannelSid">
            <summary>
            The SID of the Channel with the User Channel resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UpdateUserChannelOptions.NotificationLevel">
            <summary>
            The push notification level to assign to the User Channel
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UpdateUserChannelOptions.#ctor(System.String,System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.NotificationLevelEnum)">
            <summary>
            Construct a new UpdateUserChannelOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathUserSid"> The SID of the User to update the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel with the User Channel resource to update </param>
            <param name="notificationLevel"> The push notification level to assign to the User Channel </param>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UpdateUserChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.Read(Twilio.Rest.IpMessaging.V2.Service.User.ReadUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="options"> Read UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.ReadAsync(Twilio.Rest.IpMessaging.V2.Service.User.ReadUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="options"> Read UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all Channels for a given User.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.Fetch(Twilio.Rest.IpMessaging.V2.Service.User.FetchUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.FetchAsync(Twilio.Rest.IpMessaging.V2.Service.User.FetchUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the User Channel resource from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel that has the User Channel to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the User Channel resource from </param>
            <param name="pathUserSid"> The SID of the User to fetch the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel that has the User Channel to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.Update(Twilio.Rest.IpMessaging.V2.Service.User.UpdateUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.UpdateAsync(Twilio.Rest.IpMessaging.V2.Service.User.UpdateUserChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update UserChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.Update(System.String,System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.NotificationLevelEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathUserSid"> The SID of the User to update the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel with the User Channel resource to update </param>
            <param name="notificationLevel"> The push notification level to assign to the User Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.UpdateAsync(System.String,System.String,System.String,Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.NotificationLevelEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathUserSid"> The SID of the User to update the User Channel resource from </param>
            <param name="pathChannelSid"> The SID of the Channel with the User Channel resource to update </param>
            <param name="notificationLevel"> The push notification level to assign to the User Channel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UserChannel </returns>
        </member>
        <member name="M:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UserChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UserChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.ChannelSid">
            <summary>
            The SID of the Channel the resource belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.UserSid">
            <summary>
            The SID of the User the User Channel belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.MemberSid">
            <summary>
            The SID of the User as a Member in the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.Status">
            <summary>
            The status of the User on the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.LastConsumedMessageIndex">
            <summary>
            The index of the last Message in the Channel the Member has read
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.UnreadMessagesCount">
            <summary>
            The number of unread Messages in the Channel for the User
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.Links">
            <summary>
            Absolute URLs to access the Members, Messages , Invites and, if it exists, the last Message for the Channel
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.IpMessaging.V2.Service.User.UserChannelResource.NotificationLevel">
            <summary>
            The push notification level of the User for the Channel
            </summary>
        </member>
        <member name="T:Twilio.Rest.Lookups.V1.FetchPhoneNumberOptions">
            <summary>
            FetchPhoneNumberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.FetchPhoneNumberOptions.PathPhoneNumber">
            <summary>
            The phone number to fetch in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.FetchPhoneNumberOptions.CountryCode">
            <summary>
            The ISO country code of the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.FetchPhoneNumberOptions.Type">
            <summary>
            The type of information to return
            </summary>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.FetchPhoneNumberOptions.AddOns">
            <summary>
            The unique_name of an Add-on you would like to invoke
            </summary>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.FetchPhoneNumberOptions.AddOnsData">
            <summary>
            Data specific to the add-on you would like to invoke
            </summary>
        </member>
        <member name="M:Twilio.Rest.Lookups.V1.FetchPhoneNumberOptions.#ctor(Twilio.Types.PhoneNumber)">
            <summary>
            Construct a new FetchPhoneNumberOptions
            </summary>
            <param name="pathPhoneNumber"> The phone number to fetch in E.164 format </param>
        </member>
        <member name="M:Twilio.Rest.Lookups.V1.FetchPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Lookups.V1.PhoneNumberResource.Fetch(Twilio.Rest.Lookups.V1.FetchPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Lookups.V1.PhoneNumberResource.FetchAsync(Twilio.Rest.Lookups.V1.FetchPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Lookups.V1.PhoneNumberResource.Fetch(Twilio.Types.PhoneNumber,System.String,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.Collections.Generic.Dictionary{System.String,System.Object},Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathPhoneNumber"> The phone number to fetch in E.164 format </param>
            <param name="countryCode"> The ISO country code of the phone number </param>
            <param name="type"> The type of information to return </param>
            <param name="addOns"> The unique_name of an Add-on you would like to invoke </param>
            <param name="addOnsData"> Data specific to the add-on you would like to invoke </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Lookups.V1.PhoneNumberResource.FetchAsync(Twilio.Types.PhoneNumber,System.String,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.Collections.Generic.Dictionary{System.String,System.Object},Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathPhoneNumber"> The phone number to fetch in E.164 format </param>
            <param name="countryCode"> The ISO country code of the phone number </param>
            <param name="type"> The type of information to return </param>
            <param name="addOns"> The unique_name of an Add-on you would like to invoke </param>
            <param name="addOnsData"> Data specific to the add-on you would like to invoke </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Lookups.V1.PhoneNumberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a PhoneNumberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> PhoneNumberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.PhoneNumberResource.CallerName">
            <summary>
            The name of the phone number's owner
            </summary>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.PhoneNumberResource.CountryCode">
            <summary>
            The ISO country code for the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.PhoneNumberResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.PhoneNumberResource.NationalFormat">
            <summary>
            The phone number, in national format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.PhoneNumberResource.Carrier">
            <summary>
            The telecom company that provides the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.PhoneNumberResource.AddOns">
            <summary>
            A JSON string with the results of the Add-ons you specified
            </summary>
        </member>
        <member name="P:Twilio.Rest.Lookups.V1.PhoneNumberResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.CreateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.InboundRequestUrl">
            <summary>
            The URL we call using inbound_method when a message is received by any phone number or short code in the Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.InboundMethod">
            <summary>
            The HTTP method we should use to call inbound_request_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.FallbackUrl">
            <summary>
            The URL that we call using fallback_method if an error occurs while retrieving or executing the TwiML from the Inbound Request URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.FallbackMethod">
            <summary>
            The HTTP method we should use to call fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.StatusCallback">
            <summary>
            The URL we should call to pass status updates about message delivery
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.StickySender">
            <summary>
            Whether to enable Sticky Sender on the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.MmsConverter">
            <summary>
            Whether to enable the MMS Converter for messages sent through the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.SmartEncoding">
            <summary>
            Whether to enable Encoding for messages sent through the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.ScanMessageContent">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.FallbackToLongCode">
            <summary>
            Whether to enable Fallback to Long Code for messages sent through the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.AreaCodeGeomatch">
            <summary>
            Whether to enable Area Code Geomatch on the Service Instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.ValidityPeriod">
            <summary>
            How long, in seconds, messages sent from the Service are valid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateServiceOptions.SynchronousValidation">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.CreateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateServiceOptions
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.UpdateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.InboundRequestUrl">
            <summary>
            The URL we call using inbound_method when a message is received by any phone number or short code in the Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.InboundMethod">
            <summary>
            The HTTP method we should use to call inbound_request_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.FallbackUrl">
            <summary>
            The URL that we call using fallback_method if an error occurs while retrieving or executing the TwiML from the Inbound Request URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.FallbackMethod">
            <summary>
            The HTTP method we should use to call fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.StatusCallback">
            <summary>
            The URL we should call to pass status updates about message delivery
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.StickySender">
            <summary>
            Whether to enable Sticky Sender on the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.MmsConverter">
            <summary>
            Whether to enable the MMS Converter for messages sent through the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.SmartEncoding">
            <summary>
            Whether to enable Encoding for messages sent through the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.ScanMessageContent">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.FallbackToLongCode">
            <summary>
            Whether to enable Fallback to Long Code for messages sent through the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.AreaCodeGeomatch">
            <summary>
            Whether to enable Area Code Geomatch on the Service Instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.ValidityPeriod">
            <summary>
            How long, in seconds, messages sent from the Service are valid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateServiceOptions.SynchronousValidation">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.ReadServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadServiceOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.FetchServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.FetchServiceOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.DeleteServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.DeleteServiceOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.Create(Twilio.Rest.Messaging.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.CreateAsync(Twilio.Rest.Messaging.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.Create(System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Rest.Messaging.V1.ServiceResource.ScanMessageContentEnum,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="inboundRequestUrl"> The URL we call using inbound_method when a message is received by any phone
                                    number or short code in the Service </param>
            <param name="inboundMethod"> The HTTP method we should use to call inbound_request_url </param>
            <param name="fallbackUrl"> The URL that we call using fallback_method if an error occurs while retrieving or
                              executing the TwiML from the Inbound Request URL </param>
            <param name="fallbackMethod"> The HTTP method we should use to call fallback_url </param>
            <param name="statusCallback"> The URL we should call to pass status updates about message delivery </param>
            <param name="stickySender"> Whether to enable Sticky Sender on the Service instance </param>
            <param name="mmsConverter"> Whether to enable the MMS Converter for messages sent through the Service instance
                               </param>
            <param name="smartEncoding"> Whether to enable Encoding for messages sent through the Service instance </param>
            <param name="scanMessageContent"> Reserved </param>
            <param name="fallbackToLongCode"> Whether to enable Fallback to Long Code for messages sent through the Service
                                     instance </param>
            <param name="areaCodeGeomatch"> Whether to enable Area Code Geomatch on the Service Instance </param>
            <param name="validityPeriod"> How long, in seconds, messages sent from the Service are valid </param>
            <param name="synchronousValidation"> Reserved </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.CreateAsync(System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Rest.Messaging.V1.ServiceResource.ScanMessageContentEnum,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="inboundRequestUrl"> The URL we call using inbound_method when a message is received by any phone
                                    number or short code in the Service </param>
            <param name="inboundMethod"> The HTTP method we should use to call inbound_request_url </param>
            <param name="fallbackUrl"> The URL that we call using fallback_method if an error occurs while retrieving or
                              executing the TwiML from the Inbound Request URL </param>
            <param name="fallbackMethod"> The HTTP method we should use to call fallback_url </param>
            <param name="statusCallback"> The URL we should call to pass status updates about message delivery </param>
            <param name="stickySender"> Whether to enable Sticky Sender on the Service instance </param>
            <param name="mmsConverter"> Whether to enable the MMS Converter for messages sent through the Service instance
                               </param>
            <param name="smartEncoding"> Whether to enable Encoding for messages sent through the Service instance </param>
            <param name="scanMessageContent"> Reserved </param>
            <param name="fallbackToLongCode"> Whether to enable Fallback to Long Code for messages sent through the Service
                                     instance </param>
            <param name="areaCodeGeomatch"> Whether to enable Area Code Geomatch on the Service Instance </param>
            <param name="validityPeriod"> How long, in seconds, messages sent from the Service are valid </param>
            <param name="synchronousValidation"> Reserved </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.Update(Twilio.Rest.Messaging.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.UpdateAsync(Twilio.Rest.Messaging.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.Update(System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Rest.Messaging.V1.ServiceResource.ScanMessageContentEnum,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="inboundRequestUrl"> The URL we call using inbound_method when a message is received by any phone
                                    number or short code in the Service </param>
            <param name="inboundMethod"> The HTTP method we should use to call inbound_request_url </param>
            <param name="fallbackUrl"> The URL that we call using fallback_method if an error occurs while retrieving or
                              executing the TwiML from the Inbound Request URL </param>
            <param name="fallbackMethod"> The HTTP method we should use to call fallback_url </param>
            <param name="statusCallback"> The URL we should call to pass status updates about message delivery </param>
            <param name="stickySender"> Whether to enable Sticky Sender on the Service instance </param>
            <param name="mmsConverter"> Whether to enable the MMS Converter for messages sent through the Service instance
                               </param>
            <param name="smartEncoding"> Whether to enable Encoding for messages sent through the Service instance </param>
            <param name="scanMessageContent"> Reserved </param>
            <param name="fallbackToLongCode"> Whether to enable Fallback to Long Code for messages sent through the Service
                                     instance </param>
            <param name="areaCodeGeomatch"> Whether to enable Area Code Geomatch on the Service Instance </param>
            <param name="validityPeriod"> How long, in seconds, messages sent from the Service are valid </param>
            <param name="synchronousValidation"> Reserved </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.UpdateAsync(System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Rest.Messaging.V1.ServiceResource.ScanMessageContentEnum,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="inboundRequestUrl"> The URL we call using inbound_method when a message is received by any phone
                                    number or short code in the Service </param>
            <param name="inboundMethod"> The HTTP method we should use to call inbound_request_url </param>
            <param name="fallbackUrl"> The URL that we call using fallback_method if an error occurs while retrieving or
                              executing the TwiML from the Inbound Request URL </param>
            <param name="fallbackMethod"> The HTTP method we should use to call fallback_url </param>
            <param name="statusCallback"> The URL we should call to pass status updates about message delivery </param>
            <param name="stickySender"> Whether to enable Sticky Sender on the Service instance </param>
            <param name="mmsConverter"> Whether to enable the MMS Converter for messages sent through the Service instance
                               </param>
            <param name="smartEncoding"> Whether to enable Encoding for messages sent through the Service instance </param>
            <param name="scanMessageContent"> Reserved </param>
            <param name="fallbackToLongCode"> Whether to enable Fallback to Long Code for messages sent through the Service
                                     instance </param>
            <param name="areaCodeGeomatch"> Whether to enable Area Code Geomatch on the Service Instance </param>
            <param name="validityPeriod"> How long, in seconds, messages sent from the Service are valid </param>
            <param name="synchronousValidation"> Reserved </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.Read(Twilio.Rest.Messaging.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.ReadAsync(Twilio.Rest.Messaging.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.Fetch(Twilio.Rest.Messaging.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.FetchAsync(Twilio.Rest.Messaging.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.Delete(Twilio.Rest.Messaging.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.DeleteAsync(Twilio.Rest.Messaging.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.InboundRequestUrl">
            <summary>
            The URL we call using inbound_method when a message is received by any phone number or short code in the Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.InboundMethod">
            <summary>
            The HTTP method we use to call inbound_request_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.FallbackUrl">
            <summary>
            The URL that we call using fallback_method if an error occurs while retrieving or executing the TwiML from the Inbound Request URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.FallbackMethod">
            <summary>
            The HTTP method we use to call fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.StatusCallback">
            <summary>
            The URL we call to pass status updates about message delivery
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.StickySender">
            <summary>
            Whether to enable Sticky Sender on the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.MmsConverter">
            <summary>
            Whether to enable the MMS Converter for messages sent through the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.SmartEncoding">
            <summary>
            Whether to enable Encoding for messages sent through the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.ScanMessageContent">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.FallbackToLongCode">
            <summary>
            Whether to enable Fallback to Long Code for messages sent through the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.AreaCodeGeomatch">
            <summary>
            Whether to enable Area Code Geomatch on the Service Instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.SynchronousValidation">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.ValidityPeriod">
            <summary>
            How long, in seconds, messages sent from the Service are valid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.Url">
            <summary>
            The absolute URL of the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.ServiceResource.Links">
            <summary>
            The absolute URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.CreateAlphaSenderOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateAlphaSenderOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.CreateAlphaSenderOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.CreateAlphaSenderOptions.AlphaSender">
            <summary>
            The Alphanumeric Sender ID string
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.CreateAlphaSenderOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateAlphaSenderOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="alphaSender"> The Alphanumeric Sender ID string </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.CreateAlphaSenderOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.ReadAlphaSenderOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadAlphaSenderOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ReadAlphaSenderOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ReadAlphaSenderOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadAlphaSenderOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ReadAlphaSenderOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.FetchAlphaSenderOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchAlphaSenderOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.FetchAlphaSenderOptions.PathServiceSid">
            <summary>
            The SID of the Messaging Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.FetchAlphaSenderOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.FetchAlphaSenderOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchAlphaSenderOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Messaging Service to fetch the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.FetchAlphaSenderOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.DeleteAlphaSenderOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteAlphaSenderOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.DeleteAlphaSenderOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.DeleteAlphaSenderOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.DeleteAlphaSenderOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteAlphaSenderOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.DeleteAlphaSenderOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.Create(Twilio.Rest.Messaging.V1.Service.CreateAlphaSenderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create AlphaSender parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.CreateAsync(Twilio.Rest.Messaging.V1.Service.CreateAlphaSenderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create AlphaSender parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="alphaSender"> The Alphanumeric Sender ID string </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="alphaSender"> The Alphanumeric Sender ID string </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.Read(Twilio.Rest.Messaging.V1.Service.ReadAlphaSenderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read AlphaSender parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.ReadAsync(Twilio.Rest.Messaging.V1.Service.ReadAlphaSenderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read AlphaSender parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.NextPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Service.AlphaSenderResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Service.AlphaSenderResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.Fetch(Twilio.Rest.Messaging.V1.Service.FetchAlphaSenderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch AlphaSender parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.FetchAsync(Twilio.Rest.Messaging.V1.Service.FetchAlphaSenderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch AlphaSender parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Messaging Service to fetch the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Messaging Service to fetch the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.Delete(Twilio.Rest.Messaging.V1.Service.DeleteAlphaSenderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete AlphaSender parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.DeleteAsync(Twilio.Rest.Messaging.V1.Service.DeleteAlphaSenderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete AlphaSender parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AlphaSender </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AlphaSenderResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AlphaSenderResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.AlphaSender">
            <summary>
            The Alphanumeric Sender ID string
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.Capabilities">
            <summary>
            An array of values that describe whether the number can receive calls or messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.AlphaSenderResource.Url">
            <summary>
            The absolute URL of the AlphaSender resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.CreatePhoneNumberOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreatePhoneNumberOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.CreatePhoneNumberOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.CreatePhoneNumberOptions.PhoneNumberSid">
            <summary>
            The SID of the Phone Number being added to the Service
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.CreatePhoneNumberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreatePhoneNumberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="phoneNumberSid"> The SID of the Phone Number being added to the Service </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.CreatePhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.DeletePhoneNumberOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeletePhoneNumberOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.DeletePhoneNumberOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.DeletePhoneNumberOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.DeletePhoneNumberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeletePhoneNumberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.DeletePhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.ReadPhoneNumberOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadPhoneNumberOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ReadPhoneNumberOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ReadPhoneNumberOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadPhoneNumberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ReadPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.FetchPhoneNumberOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchPhoneNumberOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.FetchPhoneNumberOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.FetchPhoneNumberOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.FetchPhoneNumberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchPhoneNumberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.FetchPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.Create(Twilio.Rest.Messaging.V1.Service.CreatePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.CreateAsync(Twilio.Rest.Messaging.V1.Service.CreatePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="phoneNumberSid"> The SID of the Phone Number being added to the Service </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="phoneNumberSid"> The SID of the Phone Number being added to the Service </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.Delete(Twilio.Rest.Messaging.V1.Service.DeletePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.DeleteAsync(Twilio.Rest.Messaging.V1.Service.DeletePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.Read(Twilio.Rest.Messaging.V1.Service.ReadPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.ReadAsync(Twilio.Rest.Messaging.V1.Service.ReadPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.NextPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Service.PhoneNumberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Service.PhoneNumberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.Fetch(Twilio.Rest.Messaging.V1.Service.FetchPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.FetchAsync(Twilio.Rest.Messaging.V1.Service.FetchPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a PhoneNumberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> PhoneNumberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.CountryCode">
            <summary>
            The 2-character ISO Country Code of the number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.Capabilities">
            <summary>
            An array of values that describe whether the number can receive calls or messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.PhoneNumberResource.Url">
            <summary>
            The absolute URL of the PhoneNumber resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.CreateShortCodeOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateShortCodeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.CreateShortCodeOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.CreateShortCodeOptions.ShortCodeSid">
            <summary>
            The SID of the ShortCode being added to the Service
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.CreateShortCodeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateShortCodeOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="shortCodeSid"> The SID of the ShortCode being added to the Service </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.CreateShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.DeleteShortCodeOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteShortCodeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.DeleteShortCodeOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.DeleteShortCodeOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.DeleteShortCodeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteShortCodeOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.DeleteShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.ReadShortCodeOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadShortCodeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ReadShortCodeOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ReadShortCodeOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadShortCodeOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ReadShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Service.FetchShortCodeOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchShortCodeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.FetchShortCodeOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.FetchShortCodeOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.FetchShortCodeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchShortCodeOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.FetchShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.Create(Twilio.Rest.Messaging.V1.Service.CreateShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.CreateAsync(Twilio.Rest.Messaging.V1.Service.CreateShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="shortCodeSid"> The SID of the ShortCode being added to the Service </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="shortCodeSid"> The SID of the ShortCode being added to the Service </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.Delete(Twilio.Rest.Messaging.V1.Service.DeleteShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.DeleteAsync(Twilio.Rest.Messaging.V1.Service.DeleteShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.Read(Twilio.Rest.Messaging.V1.Service.ReadShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.ReadAsync(Twilio.Rest.Messaging.V1.Service.ReadShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.NextPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Service.ShortCodeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Service.ShortCodeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.Fetch(Twilio.Rest.Messaging.V1.Service.FetchShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.FetchAsync(Twilio.Rest.Messaging.V1.Service.FetchShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ShortCodeResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ShortCodeResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.ShortCode">
            <summary>
            The E.164 format of the short code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.CountryCode">
            <summary>
            The 2-character ISO Country Code of the number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.Capabilities">
            <summary>
            An array of values that describe whether the number can receive calls or messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Service.ShortCodeResource.Url">
            <summary>
            The absolute URL of the ShortCode resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.FetchSessionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchSessionOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.FetchSessionOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.FetchSessionOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchSessionOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.FetchSessionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.DeleteSessionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteSessionOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.DeleteSessionOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.DeleteSessionOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteSessionOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.DeleteSessionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.CreateSessionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateSessionOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateSessionOptions.MessagingServiceSid">
            <summary>
            The SID of the SMS Service the session belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateSessionOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateSessionOptions.Attributes">
            <summary>
            A JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateSessionOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateSessionOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.CreateSessionOptions.CreatedBy">
            <summary>
            The Identity of the session's creator
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.CreateSessionOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateSessionOptions
            </summary>
            <param name="messagingServiceSid"> The SID of the SMS Service the session belongs to </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.CreateSessionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.UpdateSessionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateSessionOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateSessionOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateSessionOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateSessionOptions.Attributes">
            <summary>
            A JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateSessionOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateSessionOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateSessionOptions.CreatedBy">
            <summary>
            The Identity of the session's creator
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.UpdateSessionOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateSessionOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.UpdateSessionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.ReadSessionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadSessionOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.ReadSessionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.Fetch(Twilio.Rest.Messaging.V1.FetchSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.FetchAsync(Twilio.Rest.Messaging.V1.FetchSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.Delete(Twilio.Rest.Messaging.V1.DeleteSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.DeleteAsync(Twilio.Rest.Messaging.V1.DeleteSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.Create(Twilio.Rest.Messaging.V1.CreateSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.CreateAsync(Twilio.Rest.Messaging.V1.CreateSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.Create(System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="messagingServiceSid"> The SID of the SMS Service the session belongs to </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The Identity of the session's creator </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.CreateAsync(System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="messagingServiceSid"> The SID of the SMS Service the session belongs to </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The Identity of the session's creator </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.Update(Twilio.Rest.Messaging.V1.UpdateSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.UpdateAsync(Twilio.Rest.Messaging.V1.UpdateSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.Update(System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The Identity of the session's creator </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="createdBy"> The Identity of the session's creator </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.Read(Twilio.Rest.Messaging.V1.ReadSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.ReadAsync(Twilio.Rest.Messaging.V1.ReadSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.SessionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.SessionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.SessionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SessionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SessionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.SessionResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.SessionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.SessionResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.SessionResource.MessagingServiceSid">
            <summary>
            The SID of the SMS Service the session belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.SessionResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.SessionResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.SessionResource.CreatedBy">
            <summary>
            The Identity of the session's creator
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.SessionResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.SessionResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.SessionResource.Url">
            <summary>
            The absolute URL of the session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.SessionResource.Links">
            <summary>
            The absolute URLs of the Participants, Interactions, and Messages for the Session
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.FetchMessageOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchMessageOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.FetchMessageOptions.PathSessionSid">
            <summary>
            The SID of the Session with the message to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.FetchMessageOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.FetchMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchMessageOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the message to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.FetchMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.CreateMessageOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateMessageOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateMessageOptions.PathSessionSid">
            <summary>
            The SID of the Session for the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateMessageOptions.Author">
            <summary>
            The identity of the message's author
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateMessageOptions.Attributes">
            <summary>
            A JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateMessageOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateMessageOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateMessageOptions.Body">
            <summary>
            The message body
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.CreateMessageOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateMessageOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the message </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.CreateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateMessageOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions.PathSessionSid">
            <summary>
            The SID of the Session with the message to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions.Author">
            <summary>
            The identity of the message's author
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions.Attributes">
            <summary>
            A JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions.Body">
            <summary>
            The message body
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateMessageOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the message to update </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.ReadMessageOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadMessageOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ReadMessageOptions.PathSessionSid">
            <summary>
            The SID of the Session with the messages to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ReadMessageOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadMessageOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the messages to read </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ReadMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.DeleteMessageOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteMessageOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.DeleteMessageOptions.PathSessionSid">
            <summary>
            The SID of the Session with the message to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.DeleteMessageOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.DeleteMessageOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteMessageOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the message to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.DeleteMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.Fetch(Twilio.Rest.Messaging.V1.Session.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.FetchAsync(Twilio.Rest.Messaging.V1.Session.FetchMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the message to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the message to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.Create(Twilio.Rest.Messaging.V1.Session.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.CreateAsync(Twilio.Rest.Messaging.V1.Session.CreateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.Create(System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the message </param>
            <param name="author"> The identity of the message's author </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="body"> The message body </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.CreateAsync(System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the message </param>
            <param name="author"> The identity of the message's author </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="body"> The message body </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.Update(Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.UpdateAsync(Twilio.Rest.Messaging.V1.Session.UpdateMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.Update(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the message to update </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="author"> The identity of the message's author </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="body"> The message body </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the message to update </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="author"> The identity of the message's author </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="body"> The message body </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.Read(Twilio.Rest.Messaging.V1.Session.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.ReadAsync(Twilio.Rest.Messaging.V1.Session.ReadMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the messages to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the messages to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.NextPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Session.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Session.MessageResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.Delete(Twilio.Rest.Messaging.V1.Session.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.DeleteAsync(Twilio.Rest.Messaging.V1.Session.DeleteMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Message parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the message to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the message to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Message </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.MessageResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MessageResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MessageResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.MessagingServiceSid">
            <summary>
            The SID of the Messaging Service the message belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.SessionSid">
            <summary>
            The SID of the Session for the message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.Index">
            <summary>
            The index of the message within the Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.Author">
            <summary>
            The identity or the address of the device of the message's author
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.Body">
            <summary>
            The message body
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.MessageResource.Url">
            <summary>
            The absolute URL of the message
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateParticipantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions.PathSessionSid">
            <summary>
            The SID of the Session for the participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions.UserAddress">
            <summary>
            The address of the participant's device
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions.Attributes">
            <summary>
            A JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions.TwilioAddress">
            <summary>
            The address of the Twilio phone number that the participant is in contact with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateParticipantOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the participant </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.UpdateParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateParticipantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateParticipantOptions.PathSessionSid">
            <summary>
            The SID of the Session with the participant to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateParticipantOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateParticipantOptions.Attributes">
            <summary>
            A JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateParticipantOptions.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateParticipantOptions.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was updated
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.UpdateParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateParticipantOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participant to update </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.UpdateParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.FetchParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchParticipantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.FetchParticipantOptions.PathSessionSid">
            <summary>
            The SID of the Session with the participant to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.FetchParticipantOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.FetchParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchParticipantOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participant to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.FetchParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.ReadParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadParticipantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ReadParticipantOptions.PathSessionSid">
            <summary>
            The SID of the Session with the participants to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ReadParticipantOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadParticipantOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participants to read </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ReadParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.DeleteParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteParticipantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.DeleteParticipantOptions.PathSessionSid">
            <summary>
            The SID of the Session with the participant to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.DeleteParticipantOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.DeleteParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteParticipantOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participant to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.DeleteParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Create(Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.CreateAsync(Twilio.Rest.Messaging.V1.Session.CreateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Create(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the participant </param>
            <param name="identity"> The string that identifies the resource's User </param>
            <param name="userAddress"> The address of the participant's device </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="twilioAddress"> The address of the Twilio phone number that the participant is in contact with </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the participant </param>
            <param name="identity"> The string that identifies the resource's User </param>
            <param name="userAddress"> The address of the participant's device </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="twilioAddress"> The address of the Twilio phone number that the participant is in contact with </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Update(Twilio.Rest.Messaging.V1.Session.UpdateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.UpdateAsync(Twilio.Rest.Messaging.V1.Session.UpdateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Update(System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participant to update </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participant to update </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="attributes"> A JSON string that stores application-specific data </param>
            <param name="dateCreated"> The ISO 8601 date and time in GMT when the resource was created </param>
            <param name="dateUpdated"> The ISO 8601 date and time in GMT when the resource was updated </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Fetch(Twilio.Rest.Messaging.V1.Session.FetchParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.FetchAsync(Twilio.Rest.Messaging.V1.Session.FetchParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participant to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participant to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Read(Twilio.Rest.Messaging.V1.Session.ReadParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.ReadAsync(Twilio.Rest.Messaging.V1.Session.ReadParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participants to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participants to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.NextPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Session.ParticipantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Session.ParticipantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Delete(Twilio.Rest.Messaging.V1.Session.DeleteParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.DeleteAsync(Twilio.Rest.Messaging.V1.Session.DeleteParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participant to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the participant to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ParticipantResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ParticipantResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ParticipantResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.ServiceSid">
            <summary>
            The SID of the Service the session belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.MessagingServiceSid">
            <summary>
            The SID of the SMS Service the session belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.SessionSid">
            <summary>
            The SID of the Session for the participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.TwilioAddress">
            <summary>
            The address of the Twilio phone number that the participant is in contact with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.UserAddress">
            <summary>
            The address of the participant's device
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Attributes">
            <summary>
            The JSON string that stores application-specific data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Type">
            <summary>
            The type of messaging used by the participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ParticipantResource.Url">
            <summary>
            The absolute URL of the participant
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.ReadWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.ReadWebhookOptions.PathSessionSid">
            <summary>
            The SID of the Session with the Webhook resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ReadWebhookOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadWebhookOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the Webhook resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.ReadWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.FetchWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.FetchWebhookOptions.PathSessionSid">
            <summary>
            The SID of the Session with the Webhook resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.FetchWebhookOptions.PathSid">
            <summary>
            The SID of the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.FetchWebhookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchWebhookOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the Webhook resource to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.FetchWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.PathSessionSid">
            <summary>
            The SID of the Session for the webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.Target">
            <summary>
            The target of the webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.ConfigurationUrl">
            <summary>
            The absolute URL the webhook request should be sent to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.ConfigurationMethod">
            <summary>
            The HTTP method we should use when sending a webhook request to url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.ConfigurationFilters">
            <summary>
            The list of events that trigger a webhook event for the Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.ConfigurationTriggers">
            <summary>
            The list of keywords, firing webhook event for the Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.ConfigurationFlowSid">
            <summary>
            The SID of the studio flow where the webhook should be sent to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.ConfigurationRetryCount">
            <summary>
            The number of times to call the webhook request if the first attempt fails
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.ConfigurationReplayAfter">
            <summary>
            The message index for which and its successors the webhook will be replayed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.ConfigurationBufferMessages">
            <summary>
            Whether buffering should be applied to messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.ConfigurationBufferWindow">
            <summary>
            The period to buffer messages
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.#ctor(System.String,Twilio.Rest.Messaging.V1.Session.WebhookResource.TargetEnum)">
            <summary>
            Construct a new CreateWebhookOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the webhook </param>
            <param name="target"> The target of the webhook </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.PathSessionSid">
            <summary>
            The SID of the Session for the webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.ConfigurationUrl">
            <summary>
            The absolute URL the webhook request should be sent to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.ConfigurationMethod">
            <summary>
            The HTTP method we should use when sending a webhook request to url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.ConfigurationFilters">
            <summary>
            The list of events that trigger a  webhook event for the Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.ConfigurationTriggers">
            <summary>
            The list of keywords, that trigger a webhook event for the Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.ConfigurationFlowSid">
            <summary>
            The SID of the studio flow where the webhook should be sent to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.ConfigurationRetryCount">
            <summary>
            The number of times to try the webhook request if the first attempt fails
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.ConfigurationBufferMessages">
            <summary>
            Whether buffering should be applied to messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.ConfigurationBufferWindow">
            <summary>
            The period to buffer messages
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateWebhookOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the webhook </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.Session.DeleteWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.DeleteWebhookOptions.PathSessionSid">
            <summary>
            The SID of the Session with the Webhook resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.DeleteWebhookOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.DeleteWebhookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteWebhookOptions
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the Webhook resource to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.DeleteWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.Read(Twilio.Rest.Messaging.V1.Session.ReadWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.ReadAsync(Twilio.Rest.Messaging.V1.Session.ReadWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the Webhook resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the Webhook resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.NextPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Session.WebhookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Messaging.V1.Session.WebhookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.Fetch(Twilio.Rest.Messaging.V1.Session.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.FetchAsync(Twilio.Rest.Messaging.V1.Session.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the Webhook resource to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the Webhook resource to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.Create(Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.CreateAsync(Twilio.Rest.Messaging.V1.Session.CreateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.Create(System.String,Twilio.Rest.Messaging.V1.Session.WebhookResource.TargetEnum,System.String,Twilio.Rest.Messaging.V1.Session.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the webhook </param>
            <param name="target"> The target of the webhook </param>
            <param name="configurationUrl"> The absolute URL the webhook request should be sent to </param>
            <param name="configurationMethod"> The HTTP method we should use when sending a webhook request to url </param>
            <param name="configurationFilters"> The list of events that trigger a webhook event for the Session </param>
            <param name="configurationTriggers"> The list of keywords, firing webhook event for the Session </param>
            <param name="configurationFlowSid"> The SID of the studio flow where the webhook should be sent to </param>
            <param name="configurationRetryCount"> The number of times to call the webhook request if the first attempt fails
                                          </param>
            <param name="configurationReplayAfter"> The message index for which and its successors the webhook will be replayed
                                           </param>
            <param name="configurationBufferMessages"> Whether buffering should be applied to messages </param>
            <param name="configurationBufferWindow"> The period to buffer messages </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.CreateAsync(System.String,Twilio.Rest.Messaging.V1.Session.WebhookResource.TargetEnum,System.String,Twilio.Rest.Messaging.V1.Session.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the webhook </param>
            <param name="target"> The target of the webhook </param>
            <param name="configurationUrl"> The absolute URL the webhook request should be sent to </param>
            <param name="configurationMethod"> The HTTP method we should use when sending a webhook request to url </param>
            <param name="configurationFilters"> The list of events that trigger a webhook event for the Session </param>
            <param name="configurationTriggers"> The list of keywords, firing webhook event for the Session </param>
            <param name="configurationFlowSid"> The SID of the studio flow where the webhook should be sent to </param>
            <param name="configurationRetryCount"> The number of times to call the webhook request if the first attempt fails
                                          </param>
            <param name="configurationReplayAfter"> The message index for which and its successors the webhook will be replayed
                                           </param>
            <param name="configurationBufferMessages"> Whether buffering should be applied to messages </param>
            <param name="configurationBufferWindow"> The period to buffer messages </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.Update(Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.UpdateAsync(Twilio.Rest.Messaging.V1.Session.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.Update(System.String,System.String,System.String,Twilio.Rest.Messaging.V1.Session.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the webhook </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="configurationUrl"> The absolute URL the webhook request should be sent to </param>
            <param name="configurationMethod"> The HTTP method we should use when sending a webhook request to url </param>
            <param name="configurationFilters"> The list of events that trigger a  webhook event for the Session </param>
            <param name="configurationTriggers"> The list of keywords, that trigger a webhook event for the Session </param>
            <param name="configurationFlowSid"> The SID of the studio flow where the webhook should be sent to </param>
            <param name="configurationRetryCount"> The number of times to try the webhook request if the first attempt fails
                                          </param>
            <param name="configurationBufferMessages"> Whether buffering should be applied to messages </param>
            <param name="configurationBufferWindow"> The period to buffer messages </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.UpdateAsync(System.String,System.String,System.String,Twilio.Rest.Messaging.V1.Session.WebhookResource.MethodEnum,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSessionSid"> The SID of the Session for the webhook </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="configurationUrl"> The absolute URL the webhook request should be sent to </param>
            <param name="configurationMethod"> The HTTP method we should use when sending a webhook request to url </param>
            <param name="configurationFilters"> The list of events that trigger a  webhook event for the Session </param>
            <param name="configurationTriggers"> The list of keywords, that trigger a webhook event for the Session </param>
            <param name="configurationFlowSid"> The SID of the studio flow where the webhook should be sent to </param>
            <param name="configurationRetryCount"> The number of times to try the webhook request if the first attempt fails
                                          </param>
            <param name="configurationBufferMessages"> Whether buffering should be applied to messages </param>
            <param name="configurationBufferWindow"> The period to buffer messages </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.Delete(Twilio.Rest.Messaging.V1.Session.DeleteWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.DeleteAsync(Twilio.Rest.Messaging.V1.Session.DeleteWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the Webhook resource to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSessionSid"> The SID of the Session with the Webhook resource to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.Session.WebhookResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WebhookResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WebhookResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.WebhookResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.WebhookResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.WebhookResource.SessionSid">
            <summary>
            The SID of the Session for the webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.WebhookResource.Target">
            <summary>
            The target of the webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.WebhookResource.Url">
            <summary>
            The absolute URL of the webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.WebhookResource.Configuration">
            <summary>
            The configuration of the webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.WebhookResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.Session.WebhookResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.FetchWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchWebhookOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.FetchWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Messaging.V1.UpdateWebhookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateWebhookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateWebhookOptions.WebhookMethod">
            <summary>
            The HTTP method to use when sending a webhook request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateWebhookOptions.WebhookFilters">
            <summary>
            The list of webhook event triggers that are enabled for the Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateWebhookOptions.PreWebhookUrl">
            <summary>
            The absolute URL of the pre-event webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateWebhookOptions.PostWebhookUrl">
            <summary>
            The absolute URL of the post-event webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateWebhookOptions.PreWebhookRetryCount">
            <summary>
            The number of times to try the pre-event webhook request if the first attempt fails
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateWebhookOptions.PostWebhookRetryCount">
            <summary>
            The number of times to try the post-event webhook request if the first attempt fails
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.UpdateWebhookOptions.Target">
            <summary>
            The routing target of the webhook
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.UpdateWebhookOptions.#ctor">
            <summary>
            Construct a new UpdateWebhookOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.UpdateWebhookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.WebhookResource.Fetch(Twilio.Rest.Messaging.V1.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.WebhookResource.FetchAsync(Twilio.Rest.Messaging.V1.FetchWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.WebhookResource.Fetch(Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.WebhookResource.FetchAsync(Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.WebhookResource.Update(Twilio.Rest.Messaging.V1.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.WebhookResource.UpdateAsync(Twilio.Rest.Messaging.V1.UpdateWebhookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Webhook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.WebhookResource.Update(System.String,System.Collections.Generic.List{System.String},System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Rest.Messaging.V1.WebhookResource.TargetEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="webhookMethod"> The HTTP method to use when sending a webhook request </param>
            <param name="webhookFilters"> The list of webhook event triggers that are enabled for the Service </param>
            <param name="preWebhookUrl"> The absolute URL of the pre-event webhook </param>
            <param name="postWebhookUrl"> The absolute URL of the post-event webhook </param>
            <param name="preWebhookRetryCount"> The number of times to try the pre-event webhook request if the first attempt
                                       fails </param>
            <param name="postWebhookRetryCount"> The number of times to try the post-event webhook request if the first attempt
                                        fails </param>
            <param name="target"> The routing target of the webhook </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.WebhookResource.UpdateAsync(System.String,System.Collections.Generic.List{System.String},System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Rest.Messaging.V1.WebhookResource.TargetEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="webhookMethod"> The HTTP method to use when sending a webhook request </param>
            <param name="webhookFilters"> The list of webhook event triggers that are enabled for the Service </param>
            <param name="preWebhookUrl"> The absolute URL of the pre-event webhook </param>
            <param name="postWebhookUrl"> The absolute URL of the post-event webhook </param>
            <param name="preWebhookRetryCount"> The number of times to try the pre-event webhook request if the first attempt
                                       fails </param>
            <param name="postWebhookRetryCount"> The number of times to try the post-event webhook request if the first attempt
                                        fails </param>
            <param name="target"> The routing target of the webhook </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Webhook </returns>
        </member>
        <member name="M:Twilio.Rest.Messaging.V1.WebhookResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WebhookResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WebhookResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.WebhookResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.WebhookResource.ServiceSid">
            <summary>
            The SID of the Chat Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.WebhookResource.WebhookMethod">
            <summary>
            The HTTP method to use when sending a webhook request
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.WebhookResource.WebhookFilters">
            <summary>
            The list of webhook event triggers that are enabled for the Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.WebhookResource.PreWebhookUrl">
            <summary>
            The absolute URL of the pre-event webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.WebhookResource.PostWebhookUrl">
            <summary>
            The absolute URL of the post-event webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.WebhookResource.PreWebhookRetryCount">
            <summary>
            The number of times to try the pre-event webhook request if the first attempt fails
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.WebhookResource.PostWebhookRetryCount">
            <summary>
            The number of times to try the post-event webhook request if the first attempt fails
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.WebhookResource.Target">
            <summary>
            The routing target of the webhook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Messaging.V1.WebhookResource.Url">
            <summary>
            The absolute URL of the webhook
            </summary>
        </member>
        <member name="T:Twilio.Rest.Monitor.V1.FetchAlertOptions">
            <summary>
            FetchAlertOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.FetchAlertOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.FetchAlertOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchAlertOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.FetchAlertOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Monitor.V1.ReadAlertOptions">
            <summary>
            ReadAlertOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.ReadAlertOptions.LogLevel">
            <summary>
            Only show alerts for this log-level
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.ReadAlertOptions.StartDate">
            <summary>
            Only include alerts that occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.ReadAlertOptions.EndDate">
            <summary>
            Only include alerts that occurred on or before this date
            </summary>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.ReadAlertOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.Fetch(Twilio.Rest.Monitor.V1.FetchAlertOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Alert parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Alert </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.FetchAsync(Twilio.Rest.Monitor.V1.FetchAlertOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Alert parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Alert </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Alert </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Alert </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.Read(Twilio.Rest.Monitor.V1.ReadAlertOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Alert parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Alert </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.ReadAsync(Twilio.Rest.Monitor.V1.ReadAlertOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Alert parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Alert </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.Read(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="logLevel"> Only show alerts for this log-level </param>
            <param name="startDate"> Only include alerts that occurred on or after this date </param>
            <param name="endDate"> Only include alerts that occurred on or before this date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Alert </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.ReadAsync(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="logLevel"> Only show alerts for this log-level </param>
            <param name="startDate"> Only include alerts that occurred on or after this date </param>
            <param name="endDate"> Only include alerts that occurred on or before this date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Alert </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.NextPage(Twilio.Base.Page{Twilio.Rest.Monitor.V1.AlertResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Monitor.V1.AlertResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.AlertResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AlertResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AlertResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.AlertText">
            <summary>
            The text of the alert
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.ApiVersion">
            <summary>
            The API version used when the alert was generated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.DateGenerated">
            <summary>
            The date and time when the alert was generated specified in ISO 8601 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.ErrorCode">
            <summary>
            The error code for the condition that generated the alert
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.LogLevel">
            <summary>
            The log level
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.MoreInfo">
            <summary>
            The URL of the page in our Error Dictionary with more information about the error condition
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.RequestMethod">
            <summary>
            The method used by the request that generated the alert
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.RequestUrl">
            <summary>
            The URL of the request that generated the alert
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.RequestVariables">
            <summary>
            The variables passed in the request that generated the alert
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.ResourceSid">
            <summary>
            The SID of the resource for which the alert was generated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.ResponseBody">
            <summary>
            The response body of the request that generated the alert
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.ResponseHeaders">
            <summary>
            The response headers of the request that generated the alert
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.Url">
            <summary>
            The absolute URL of the Alert resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.RequestHeaders">
            <summary>
            The request headers of the request that generated the alert
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.AlertResource.ServiceSid">
            <summary>
            The SID of the service or resource that generated the alert
            </summary>
        </member>
        <member name="T:Twilio.Rest.Monitor.V1.FetchEventOptions">
            <summary>
            FetchEventOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.FetchEventOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.FetchEventOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchEventOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.FetchEventOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Monitor.V1.ReadEventOptions">
            <summary>
            Returns a list of events in the account, sorted by event-date.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.ReadEventOptions.ActorSid">
            <summary>
            Only include events initiated by this Actor
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.ReadEventOptions.EventType">
            <summary>
            Only include events of this Event Type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.ReadEventOptions.ResourceSid">
            <summary>
            Only include events that refer to this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.ReadEventOptions.SourceIpAddress">
            <summary>
            Only include events that originated from this IP address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.ReadEventOptions.StartDate">
            <summary>
            Only include events that occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.ReadEventOptions.EndDate">
            <summary>
            Only include events that occurred on or before this date
            </summary>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.ReadEventOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.Fetch(Twilio.Rest.Monitor.V1.FetchEventOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Event parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.FetchAsync(Twilio.Rest.Monitor.V1.FetchEventOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Event parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.Read(Twilio.Rest.Monitor.V1.ReadEventOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of events in the account, sorted by event-date.
            </summary>
            <param name="options"> Read Event parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.ReadAsync(Twilio.Rest.Monitor.V1.ReadEventOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of events in the account, sorted by event-date.
            </summary>
            <param name="options"> Read Event parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.Read(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of events in the account, sorted by event-date.
            </summary>
            <param name="actorSid"> Only include events initiated by this Actor </param>
            <param name="eventType"> Only include events of this Event Type </param>
            <param name="resourceSid"> Only include events that refer to this resource </param>
            <param name="sourceIpAddress"> Only include events that originated from this IP address </param>
            <param name="startDate"> Only include events that occurred on or after this date </param>
            <param name="endDate"> Only include events that occurred on or before this date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.ReadAsync(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of events in the account, sorted by event-date.
            </summary>
            <param name="actorSid"> Only include events initiated by this Actor </param>
            <param name="eventType"> Only include events of this Event Type </param>
            <param name="resourceSid"> Only include events that refer to this resource </param>
            <param name="sourceIpAddress"> Only include events that originated from this IP address </param>
            <param name="startDate"> Only include events that occurred on or after this date </param>
            <param name="endDate"> Only include events that occurred on or before this date </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.NextPage(Twilio.Base.Page{Twilio.Rest.Monitor.V1.EventResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Monitor.V1.EventResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Monitor.V1.EventResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a EventResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> EventResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.ActorSid">
            <summary>
            The SID of the actor that caused the event, if available
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.ActorType">
            <summary>
            The type of actor that caused the event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.Description">
            <summary>
            A description of the event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.EventData">
            <summary>
            A JSON string that represents an object with additional data about the event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.EventDate">
            <summary>
            The ISO 8601 date and time in GMT when the event was recorded
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.EventType">
            <summary>
            The event's type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.ResourceSid">
            <summary>
            The SID of the resource that was affected
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.ResourceType">
            <summary>
            The type of resource that was affected
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.Source">
            <summary>
            The originating system or interface that caused the event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.SourceIpAddress">
            <summary>
            The IP address of the source
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.Url">
            <summary>
            The absolute URL of the resource that was affected
            </summary>
        </member>
        <member name="P:Twilio.Rest.Monitor.V1.EventResource.Links">
            <summary>
            The absolute URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.ReadCredentialOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadCredentialOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ReadCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.CreateCredentialOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateCredentialOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateCredentialOptions.Type">
            <summary>
            The Credential type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateCredentialOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateCredentialOptions.Certificate">
            <summary>
            [APN only] The URL-encoded representation of the certificate
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateCredentialOptions.PrivateKey">
            <summary>
            [APN only] URL-encoded representation of the private key
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateCredentialOptions.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateCredentialOptions.ApiKey">
            <summary>
            [GCM only] The `Server key` of your project from Firebase console under Settings / Cloud messaging
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateCredentialOptions.Secret">
            <summary>
            [FCM only] The `Server key` of your project from Firebase console under Settings / Cloud messaging
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CreateCredentialOptions.#ctor(Twilio.Rest.Notify.V1.CredentialResource.PushServiceEnum)">
            <summary>
            Construct a new CreateCredentialOptions
            </summary>
            <param name="type"> The Credential type </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CreateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.FetchCredentialOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchCredentialOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.FetchCredentialOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.FetchCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCredentialOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.FetchCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.UpdateCredentialOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateCredentialOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateCredentialOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateCredentialOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateCredentialOptions.Certificate">
            <summary>
            [APN only] The URL-encoded representation of the certificate
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateCredentialOptions.PrivateKey">
            <summary>
            [APN only] URL-encoded representation of the private key
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateCredentialOptions.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateCredentialOptions.ApiKey">
            <summary>
            [GCM only] The `Server key` of your project from Firebase console under Settings / Cloud messaging
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateCredentialOptions.Secret">
            <summary>
            [FCM only] The `Server key` of your project from Firebase console under Settings / Cloud messaging
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.UpdateCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateCredentialOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.UpdateCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.DeleteCredentialOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteCredentialOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.DeleteCredentialOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.DeleteCredentialOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteCredentialOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.DeleteCredentialOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.Read(Twilio.Rest.Notify.V1.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.ReadAsync(Twilio.Rest.Notify.V1.ReadCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.NextPage(Twilio.Base.Page{Twilio.Rest.Notify.V1.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Notify.V1.CredentialResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.Create(Twilio.Rest.Notify.V1.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.CreateAsync(Twilio.Rest.Notify.V1.CreateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.Create(Twilio.Rest.Notify.V1.CredentialResource.PushServiceEnum,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="type"> The Credential type </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL-encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] URL-encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The `Server key` of your project from Firebase console under Settings / Cloud
                         messaging </param>
            <param name="secret"> [FCM only] The `Server key` of your project from Firebase console under Settings / Cloud
                         messaging </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.CreateAsync(Twilio.Rest.Notify.V1.CredentialResource.PushServiceEnum,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="type"> The Credential type </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL-encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] URL-encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The `Server key` of your project from Firebase console under Settings / Cloud
                         messaging </param>
            <param name="secret"> [FCM only] The `Server key` of your project from Firebase console under Settings / Cloud
                         messaging </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.Fetch(Twilio.Rest.Notify.V1.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.FetchAsync(Twilio.Rest.Notify.V1.FetchCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.Update(Twilio.Rest.Notify.V1.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.UpdateAsync(Twilio.Rest.Notify.V1.UpdateCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.Update(System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL-encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] URL-encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The `Server key` of your project from Firebase console under Settings / Cloud
                         messaging </param>
            <param name="secret"> [FCM only] The `Server key` of your project from Firebase console under Settings / Cloud
                         messaging </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="certificate"> [APN only] The URL-encoded representation of the certificate </param>
            <param name="privateKey"> [APN only] URL-encoded representation of the private key </param>
            <param name="sandbox"> [APN only] Whether to send the credential to sandbox APNs </param>
            <param name="apiKey"> [GCM only] The `Server key` of your project from Firebase console under Settings / Cloud
                         messaging </param>
            <param name="secret"> [FCM only] The `Server key` of your project from Firebase console under Settings / Cloud
                         messaging </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.Delete(Twilio.Rest.Notify.V1.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.DeleteAsync(Twilio.Rest.Notify.V1.DeleteCredentialOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Credential parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Credential </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CredentialResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CredentialResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CredentialResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CredentialResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CredentialResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CredentialResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CredentialResource.Type">
            <summary>
            The Credential type, one of `gcm`, `fcm`, or `apn`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CredentialResource.Sandbox">
            <summary>
            [APN only] Whether to send the credential to sandbox APNs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CredentialResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CredentialResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CredentialResource.Url">
            <summary>
            The absolute URL of the Credential resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.CreateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.ApnCredentialSid">
            <summary>
            The SID of the Credential to use for APN Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.GcmCredentialSid">
            <summary>
            The SID of the Credential to use for GCM Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.MessagingServiceSid">
            <summary>
            The SID of the Messaging Service to use for SMS Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.FacebookMessengerPageId">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.DefaultApnNotificationProtocolVersion">
            <summary>
            The protocol version to use for sending APNS notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.DefaultGcmNotificationProtocolVersion">
            <summary>
            The protocol version to use for sending GCM notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.FcmCredentialSid">
            <summary>
            The SID of the Credential to use for FCM Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.DefaultFcmNotificationProtocolVersion">
            <summary>
            The protocol version to use for sending FCM notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.LogEnabled">
            <summary>
            Whether to log notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.AlexaSkillId">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.CreateServiceOptions.DefaultAlexaNotificationProtocolVersion">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.DeleteServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.DeleteServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.FetchServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.FetchServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.ReadServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ReadServiceOptions.FriendlyName">
            <summary>
            The string that identifies the Service resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.UpdateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.ApnCredentialSid">
            <summary>
            The SID of the Credential to use for APN Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.GcmCredentialSid">
            <summary>
            The SID of the Credential to use for GCM Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.MessagingServiceSid">
            <summary>
            The SID of the Messaging Service to use for SMS Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.FacebookMessengerPageId">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.DefaultApnNotificationProtocolVersion">
            <summary>
            The protocol version to use for sending APNS notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.DefaultGcmNotificationProtocolVersion">
            <summary>
            The protocol version to use for sending GCM notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.FcmCredentialSid">
            <summary>
            The SID of the Credential to use for FCM Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.DefaultFcmNotificationProtocolVersion">
            <summary>
            The protocol version to use for sending FCM notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.LogEnabled">
            <summary>
            Whether to log notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.AlexaSkillId">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.UpdateServiceOptions.DefaultAlexaNotificationProtocolVersion">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.Create(Twilio.Rest.Notify.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.CreateAsync(Twilio.Rest.Notify.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.Create(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="apnCredentialSid"> The SID of the Credential to use for APN Bindings </param>
            <param name="gcmCredentialSid"> The SID of the Credential to use for GCM Bindings </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service to use for SMS Bindings </param>
            <param name="facebookMessengerPageId"> Deprecated </param>
            <param name="defaultApnNotificationProtocolVersion"> The protocol version to use for sending APNS notifications
                                                        </param>
            <param name="defaultGcmNotificationProtocolVersion"> The protocol version to use for sending GCM notifications
                                                        </param>
            <param name="fcmCredentialSid"> The SID of the Credential to use for FCM Bindings </param>
            <param name="defaultFcmNotificationProtocolVersion"> The protocol version to use for sending FCM notifications
                                                        </param>
            <param name="logEnabled"> Whether to log notifications </param>
            <param name="alexaSkillId"> Deprecated </param>
            <param name="defaultAlexaNotificationProtocolVersion"> Deprecated </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="apnCredentialSid"> The SID of the Credential to use for APN Bindings </param>
            <param name="gcmCredentialSid"> The SID of the Credential to use for GCM Bindings </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service to use for SMS Bindings </param>
            <param name="facebookMessengerPageId"> Deprecated </param>
            <param name="defaultApnNotificationProtocolVersion"> The protocol version to use for sending APNS notifications
                                                        </param>
            <param name="defaultGcmNotificationProtocolVersion"> The protocol version to use for sending GCM notifications
                                                        </param>
            <param name="fcmCredentialSid"> The SID of the Credential to use for FCM Bindings </param>
            <param name="defaultFcmNotificationProtocolVersion"> The protocol version to use for sending FCM notifications
                                                        </param>
            <param name="logEnabled"> Whether to log notifications </param>
            <param name="alexaSkillId"> Deprecated </param>
            <param name="defaultAlexaNotificationProtocolVersion"> Deprecated </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.Delete(Twilio.Rest.Notify.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.DeleteAsync(Twilio.Rest.Notify.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.Fetch(Twilio.Rest.Notify.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.FetchAsync(Twilio.Rest.Notify.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.Read(Twilio.Rest.Notify.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.ReadAsync(Twilio.Rest.Notify.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="friendlyName"> The string that identifies the Service resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="friendlyName"> The string that identifies the Service resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Notify.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Notify.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.Update(Twilio.Rest.Notify.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.UpdateAsync(Twilio.Rest.Notify.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.Update(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="apnCredentialSid"> The SID of the Credential to use for APN Bindings </param>
            <param name="gcmCredentialSid"> The SID of the Credential to use for GCM Bindings </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service to use for SMS Bindings </param>
            <param name="facebookMessengerPageId"> Deprecated </param>
            <param name="defaultApnNotificationProtocolVersion"> The protocol version to use for sending APNS notifications
                                                        </param>
            <param name="defaultGcmNotificationProtocolVersion"> The protocol version to use for sending GCM notifications
                                                        </param>
            <param name="fcmCredentialSid"> The SID of the Credential to use for FCM Bindings </param>
            <param name="defaultFcmNotificationProtocolVersion"> The protocol version to use for sending FCM notifications
                                                        </param>
            <param name="logEnabled"> Whether to log notifications </param>
            <param name="alexaSkillId"> Deprecated </param>
            <param name="defaultAlexaNotificationProtocolVersion"> Deprecated </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="apnCredentialSid"> The SID of the Credential to use for APN Bindings </param>
            <param name="gcmCredentialSid"> The SID of the Credential to use for GCM Bindings </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service to use for SMS Bindings </param>
            <param name="facebookMessengerPageId"> Deprecated </param>
            <param name="defaultApnNotificationProtocolVersion"> The protocol version to use for sending APNS notifications
                                                        </param>
            <param name="defaultGcmNotificationProtocolVersion"> The protocol version to use for sending GCM notifications
                                                        </param>
            <param name="fcmCredentialSid"> The SID of the Credential to use for FCM Bindings </param>
            <param name="defaultFcmNotificationProtocolVersion"> The protocol version to use for sending FCM notifications
                                                        </param>
            <param name="logEnabled"> Whether to log notifications </param>
            <param name="alexaSkillId"> Deprecated </param>
            <param name="defaultAlexaNotificationProtocolVersion"> Deprecated </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.ApnCredentialSid">
            <summary>
            The SID of the Credential to use for APN Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.GcmCredentialSid">
            <summary>
            The SID of the Credential to use for GCM Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.FcmCredentialSid">
            <summary>
            The SID of the Credential to use for FCM Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.MessagingServiceSid">
            <summary>
            The SID of the Messaging Service to use for SMS Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.FacebookMessengerPageId">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.DefaultApnNotificationProtocolVersion">
            <summary>
            The protocol version to use for sending APNS notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.DefaultGcmNotificationProtocolVersion">
            <summary>
            The protocol version to use for sending GCM notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.DefaultFcmNotificationProtocolVersion">
            <summary>
            The protocol version to use for sending FCM notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.LogEnabled">
            <summary>
            Whether to log notifications
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.Url">
            <summary>
            The absolute URL of the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.Links">
            <summary>
            The URLs of the resources related to the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.AlexaSkillId">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.ServiceResource.DefaultAlexaNotificationProtocolVersion">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.Service.FetchBindingOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchBindingOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.FetchBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.FetchBindingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.FetchBindingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.FetchBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.Service.DeleteBindingOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteBindingOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.DeleteBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.DeleteBindingOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.DeleteBindingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.DeleteBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.Service.CreateBindingOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateBindingOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateBindingOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateBindingOptions.BindingType">
            <summary>
            The type of the Binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateBindingOptions.Address">
            <summary>
            The channel-specific address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateBindingOptions.Tag">
            <summary>
            A tag that can be used to select the Bindings to notify
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateBindingOptions.NotificationProtocolVersion">
            <summary>
            The protocol version to use to send the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateBindingOptions.CredentialSid">
            <summary>
            The SID of the Credential resource to be used to send notifications to this Binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateBindingOptions.Endpoint">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.CreateBindingOptions.#ctor(System.String,System.String,Twilio.Rest.Notify.V1.Service.BindingResource.BindingTypeEnum,System.String)">
            <summary>
            Construct a new CreateBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="bindingType"> The type of the Binding </param>
            <param name="address"> The channel-specific address </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.CreateBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.Service.ReadBindingOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadBindingOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.ReadBindingOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.ReadBindingOptions.StartDate">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.ReadBindingOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.ReadBindingOptions.Identity">
            <summary>
            The `identity` value of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.ReadBindingOptions.Tag">
            <summary>
            Only list Bindings that have all of the specified Tags
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.ReadBindingOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadBindingOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.ReadBindingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.Fetch(Twilio.Rest.Notify.V1.Service.FetchBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.FetchAsync(Twilio.Rest.Notify.V1.Service.FetchBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.Delete(Twilio.Rest.Notify.V1.Service.DeleteBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.DeleteAsync(Twilio.Rest.Notify.V1.Service.DeleteBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.Create(Twilio.Rest.Notify.V1.Service.CreateBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.CreateAsync(Twilio.Rest.Notify.V1.Service.CreateBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.Create(System.String,System.String,Twilio.Rest.Notify.V1.Service.BindingResource.BindingTypeEnum,System.String,System.Collections.Generic.List{System.String},System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="bindingType"> The type of the Binding </param>
            <param name="address"> The channel-specific address </param>
            <param name="tag"> A tag that can be used to select the Bindings to notify </param>
            <param name="notificationProtocolVersion"> The protocol version to use to send the notification </param>
            <param name="credentialSid"> The SID of the Credential resource to be used to send notifications to this Binding
                                </param>
            <param name="endpoint"> Deprecated </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.CreateAsync(System.String,System.String,Twilio.Rest.Notify.V1.Service.BindingResource.BindingTypeEnum,System.String,System.Collections.Generic.List{System.String},System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="bindingType"> The type of the Binding </param>
            <param name="address"> The channel-specific address </param>
            <param name="tag"> A tag that can be used to select the Bindings to notify </param>
            <param name="notificationProtocolVersion"> The protocol version to use to send the notification </param>
            <param name="credentialSid"> The SID of the Credential resource to be used to send notifications to this Binding
                                </param>
            <param name="endpoint"> Deprecated </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.Read(Twilio.Rest.Notify.V1.Service.ReadBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.ReadAsync(Twilio.Rest.Notify.V1.Service.ReadBindingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Binding parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.Read(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="tag"> Only list Bindings that have all of the specified Tags </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.ReadAsync(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
            <param name="startDate"> Only include usage that has occurred on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="identity"> The `identity` value of the resources to read </param>
            <param name="tag"> Only list Bindings that have all of the specified Tags </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Binding </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Notify.V1.Service.BindingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Notify.V1.Service.BindingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.BindingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a BindingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> BindingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.CredentialSid">
            <summary>
            The SID of the Credential resource to be used to send notifications to this Binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.NotificationProtocolVersion">
            <summary>
            The protocol version to use to send the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.Endpoint">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.BindingType">
            <summary>
            The type of the Binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.Address">
            <summary>
            The channel-specific address
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.Tags">
            <summary>
            The list of tags associated with this Binding
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.Url">
            <summary>
            The absolute URL of the Binding resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.BindingResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateNotificationOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Identity">
            <summary>
            The `identity` value that identifies the new resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Tag">
            <summary>
            A tag that selects the Bindings to notify
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Body">
            <summary>
            The notification body text
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Priority">
            <summary>
            The priority of the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Ttl">
            <summary>
            How long, in seconds, the notification is valid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Title">
            <summary>
            The notification title
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Sound">
            <summary>
            The name of the sound to be played for the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Action">
            <summary>
            The actions to display for the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Data">
            <summary>
            The custom key-value pairs of the notification's payload
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Apn">
            <summary>
            The APNS-specific payload that overrides corresponding attributes in a generic payload for APNS Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Gcm">
            <summary>
            The GCM-specific payload that overrides corresponding attributes in generic payload for GCM Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Sms">
            <summary>
            The SMS-specific payload that overrides corresponding attributes in generic payload for SMS Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.FacebookMessenger">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Fcm">
            <summary>
            The FCM-specific payload that overrides corresponding attributes in generic payload for FCM Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Segment">
            <summary>
            A Segment to notify
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.Alexa">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.ToBinding">
            <summary>
            The destination address specified as a JSON string
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateNotificationOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.CreateNotificationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.NotificationResource.Create(Twilio.Rest.Notify.V1.Service.CreateNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.NotificationResource.CreateAsync(Twilio.Rest.Notify.V1.Service.CreateNotificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Notification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.NotificationResource.Create(System.String,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,Twilio.Rest.Notify.V1.Service.NotificationResource.PriorityEnum,System.Nullable{System.Int32},System.String,System.String,System.String,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Collections.Generic.List{System.String},System.Object,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="tag"> A tag that selects the Bindings to notify </param>
            <param name="body"> The notification body text </param>
            <param name="priority"> The priority of the notification </param>
            <param name="ttl"> How long, in seconds, the notification is valid </param>
            <param name="title"> The notification title </param>
            <param name="sound"> The name of the sound to be played for the notification </param>
            <param name="action"> The actions to display for the notification </param>
            <param name="data"> The custom key-value pairs of the notification's payload </param>
            <param name="apn"> The APNS-specific payload that overrides corresponding attributes in a generic payload for APNS
                      Bindings </param>
            <param name="gcm"> The GCM-specific payload that overrides corresponding attributes in generic payload for GCM
                      Bindings </param>
            <param name="sms"> The SMS-specific payload that overrides corresponding attributes in generic payload for SMS
                      Bindings </param>
            <param name="facebookMessenger"> Deprecated </param>
            <param name="fcm"> The FCM-specific payload that overrides corresponding attributes in generic payload for FCM
                      Bindings </param>
            <param name="segment"> A Segment to notify </param>
            <param name="alexa"> Deprecated </param>
            <param name="toBinding"> The destination address specified as a JSON string </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.NotificationResource.CreateAsync(System.String,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,Twilio.Rest.Notify.V1.Service.NotificationResource.PriorityEnum,System.Nullable{System.Int32},System.String,System.String,System.String,System.Object,System.Object,System.Object,System.Object,System.Object,System.Object,System.Collections.Generic.List{System.String},System.Object,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the resource under </param>
            <param name="identity"> The `identity` value that identifies the new resource's User </param>
            <param name="tag"> A tag that selects the Bindings to notify </param>
            <param name="body"> The notification body text </param>
            <param name="priority"> The priority of the notification </param>
            <param name="ttl"> How long, in seconds, the notification is valid </param>
            <param name="title"> The notification title </param>
            <param name="sound"> The name of the sound to be played for the notification </param>
            <param name="action"> The actions to display for the notification </param>
            <param name="data"> The custom key-value pairs of the notification's payload </param>
            <param name="apn"> The APNS-specific payload that overrides corresponding attributes in a generic payload for APNS
                      Bindings </param>
            <param name="gcm"> The GCM-specific payload that overrides corresponding attributes in generic payload for GCM
                      Bindings </param>
            <param name="sms"> The SMS-specific payload that overrides corresponding attributes in generic payload for SMS
                      Bindings </param>
            <param name="facebookMessenger"> Deprecated </param>
            <param name="fcm"> The FCM-specific payload that overrides corresponding attributes in generic payload for FCM
                      Bindings </param>
            <param name="segment"> A Segment to notify </param>
            <param name="alexa"> Deprecated </param>
            <param name="toBinding"> The destination address specified as a JSON string </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Notification </returns>
        </member>
        <member name="M:Twilio.Rest.Notify.V1.Service.NotificationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a NotificationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> NotificationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Identities">
            <summary>
            The list of identity values of the Users to notify
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Tags">
            <summary>
            The tags that select the Bindings to notify
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Segments">
            <summary>
            The list of Segments to notify
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Priority">
            <summary>
            The priority of the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Ttl">
            <summary>
            How long, in seconds, the notification is valid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Title">
            <summary>
            The notification title
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Body">
            <summary>
            The notification body text
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Sound">
            <summary>
            The name of the sound to be played for the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Action">
            <summary>
            The actions to display for the notification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Data">
            <summary>
            The custom key-value pairs of the notification's payload
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Apn">
            <summary>
            The APNS-specific payload that overrides corresponding attributes in a generic payload for APNS Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Gcm">
            <summary>
            The GCM-specific payload that overrides corresponding attributes in generic payload for GCM Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Fcm">
            <summary>
            The FCM-specific payload that overrides corresponding attributes in generic payload for FCM Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Sms">
            <summary>
            The SMS-specific payload that overrides corresponding attributes in generic payload for SMS Bindings
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.FacebookMessenger">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Notify.V1.Service.NotificationResource.Alexa">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.AccSecurity.CreateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Verification Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.CreateServiceOptions.Name">
            <summary>
            Friendly name of the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.CreateServiceOptions.CodeLength">
            <summary>
            Length of verification code. Valid values are 4-10
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.CreateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateServiceOptions
            </summary>
            <param name="name"> Friendly name of the service </param>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.AccSecurity.FetchServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch specific Verification Service Instance.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.FetchServiceOptions.PathSid">
            <summary>
            Verification Service Instance SID.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> Verification Service Instance SID. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.AccSecurity.ReadServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Phone Verification Services for an account.
             </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.AccSecurity.UpdateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update a specific Phone Verification Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.UpdateServiceOptions.PathSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.UpdateServiceOptions.Name">
            <summary>
            Friendly name of the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.UpdateServiceOptions.CodeLength">
            <summary>
            Length of verification code. Valid values are 4-10
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> Service Sid. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.Create(Twilio.Rest.Preview.AccSecurity.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification Service.
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.CreateAsync(Twilio.Rest.Preview.AccSecurity.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification Service.
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.Create(System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification Service.
            </summary>
            <param name="name"> Friendly name of the service </param>
            <param name="codeLength"> Length of verification code. Valid values are 4-10 </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.CreateAsync(System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification Service.
            </summary>
            <param name="name"> Friendly name of the service </param>
            <param name="codeLength"> Length of verification code. Valid values are 4-10 </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.Fetch(Twilio.Rest.Preview.AccSecurity.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch specific Verification Service Instance.
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.FetchAsync(Twilio.Rest.Preview.AccSecurity.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch specific Verification Service Instance.
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch specific Verification Service Instance.
            </summary>
            <param name="pathSid"> Verification Service Instance SID. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch specific Verification Service Instance.
            </summary>
            <param name="pathSid"> Verification Service Instance SID. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.Read(Twilio.Rest.Preview.AccSecurity.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Verification Services for an account.
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.ReadAsync(Twilio.Rest.Preview.AccSecurity.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Verification Services for an account.
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Verification Services for an account.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Verification Services for an account.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.AccSecurity.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.AccSecurity.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.Update(Twilio.Rest.Preview.AccSecurity.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Phone Verification Service.
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.UpdateAsync(Twilio.Rest.Preview.AccSecurity.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Phone Verification Service.
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.Update(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Phone Verification Service.
            </summary>
            <param name="pathSid"> Service Sid. </param>
            <param name="name"> Friendly name of the service </param>
            <param name="codeLength"> Length of verification code. Valid values are 4-10 </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.UpdateAsync(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Phone Verification Service.
            </summary>
            <param name="pathSid"> Service Sid. </param>
            <param name="name"> Friendly name of the service </param>
            <param name="codeLength"> Length of verification code. Valid values are 4-10 </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.ServiceResource.Sid">
            <summary>
            A string that uniquely identifies this Service.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.ServiceResource.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.ServiceResource.Name">
            <summary>
            Friendly name of the service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.ServiceResource.CodeLength">
            <summary>
            Length of verification code. Valid values are 4-10
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.ServiceResource.DateCreated">
            <summary>
            The date this Service was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.ServiceResource.DateUpdated">
            <summary>
            The date this Service was updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.ServiceResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.ServiceResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationCheckOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             challenge a specific Verification Check.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationCheckOptions.PathServiceSid">
            <summary>
            A string that uniquely identifies the Service.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationCheckOptions.Code">
            <summary>
            The verification string
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationCheckOptions.To">
            <summary>
            To phonenumber
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationCheckOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateVerificationCheckOptions
            </summary>
            <param name="pathServiceSid"> A string that uniquely identifies the Service. </param>
            <param name="code"> The verification string </param>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationCheckOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.Create(Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationCheckOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            challenge a specific Verification Check.
            </summary>
            <param name="options"> Create VerificationCheck parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of VerificationCheck </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.CreateAsync(Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationCheckOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            challenge a specific Verification Check.
            </summary>
            <param name="options"> Create VerificationCheck parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of VerificationCheck </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            challenge a specific Verification Check.
            </summary>
            <param name="pathServiceSid"> A string that uniquely identifies the Service. </param>
            <param name="code"> The verification string </param>
            <param name="to"> To phonenumber </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of VerificationCheck </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            challenge a specific Verification Check.
            </summary>
            <param name="pathServiceSid"> A string that uniquely identifies the Service. </param>
            <param name="code"> The verification string </param>
            <param name="to"> To phonenumber </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of VerificationCheck </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a VerificationCheckResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> VerificationCheckResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.Sid">
            <summary>
            A string that uniquely identifies this Verification Check.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.ServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.To">
            <summary>
            To phonenumber
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.Channel">
            <summary>
            sms or call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.Status">
            <summary>
            pending, approved, denied or expired
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.Valid">
            <summary>
            successful verification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.DateCreated">
            <summary>
            The date this Verification Check was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationCheckResource.DateUpdated">
            <summary>
            The date this Verification Check was updated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Verification for a To number using a Service
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationOptions.PathServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationOptions.To">
            <summary>
            To phonenumber
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationOptions.Channel">
            <summary>
            sms or call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationOptions.CustomMessage">
            <summary>
            A custom message for this verification
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateVerificationOptions
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="to"> To phonenumber </param>
            <param name="channel"> sms or call </param>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.Create(Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification for a To number using a Service
            </summary>
            <param name="options"> Create Verification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.CreateAsync(Twilio.Rest.Preview.AccSecurity.Service.CreateVerificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification for a To number using a Service
            </summary>
            <param name="options"> Create Verification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification for a To number using a Service
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="to"> To phonenumber </param>
            <param name="channel"> sms or call </param>
            <param name="customMessage"> A custom message for this verification </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification for a To number using a Service
            </summary>
            <param name="pathServiceSid"> Service Sid. </param>
            <param name="to"> To phonenumber </param>
            <param name="channel"> sms or call </param>
            <param name="customMessage"> A custom message for this verification </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a VerificationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> VerificationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.Sid">
            <summary>
            A string that uniquely identifies this Verification.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.ServiceSid">
            <summary>
            Service Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.To">
            <summary>
            To phonenumber
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.Channel">
            <summary>
            sms or call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.Status">
            <summary>
            pending, approved, denied or expired
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.Valid">
            <summary>
            successful verification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.DateCreated">
            <summary>
            The date this Verification was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.AccSecurity.Service.VerificationResource.DateUpdated">
            <summary>
            The date this Verification was updated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.BulkExports.FetchExportConfigurationOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchExportConfigurationOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.FetchExportConfigurationOptions.PathResourceType">
            <summary>
            The resource_type
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.FetchExportConfigurationOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchExportConfigurationOptions
            </summary>
            <param name="pathResourceType"> The resource_type </param>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.FetchExportConfigurationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.BulkExports.UpdateExportConfigurationOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateExportConfigurationOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.UpdateExportConfigurationOptions.PathResourceType">
            <summary>
            The resource_type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.UpdateExportConfigurationOptions.Enabled">
            <summary>
            The enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.UpdateExportConfigurationOptions.WebhookUrl">
            <summary>
            The webhook_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.UpdateExportConfigurationOptions.WebhookMethod">
            <summary>
            The webhook_method
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.UpdateExportConfigurationOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateExportConfigurationOptions
            </summary>
            <param name="pathResourceType"> The resource_type </param>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.UpdateExportConfigurationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.Fetch(Twilio.Rest.Preview.BulkExports.FetchExportConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch ExportConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExportConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.FetchAsync(Twilio.Rest.Preview.BulkExports.FetchExportConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch ExportConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExportConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathResourceType"> The resource_type </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExportConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathResourceType"> The resource_type </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExportConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.Update(Twilio.Rest.Preview.BulkExports.UpdateExportConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update ExportConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExportConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.UpdateAsync(Twilio.Rest.Preview.BulkExports.UpdateExportConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update ExportConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExportConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.Update(System.String,System.Nullable{System.Boolean},System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathResourceType"> The resource_type </param>
            <param name="enabled"> The enabled </param>
            <param name="webhookUrl"> The webhook_url </param>
            <param name="webhookMethod"> The webhook_method </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExportConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.UpdateAsync(System.String,System.Nullable{System.Boolean},System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathResourceType"> The resource_type </param>
            <param name="enabled"> The enabled </param>
            <param name="webhookUrl"> The webhook_url </param>
            <param name="webhookMethod"> The webhook_method </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExportConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ExportConfigurationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ExportConfigurationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.Enabled">
            <summary>
            The enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.WebhookUrl">
            <summary>
            The webhook_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.WebhookMethod">
            <summary>
            The webhook_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.ResourceType">
            <summary>
            The resource_type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.ExportConfigurationResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.BulkExports.FetchExportOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchExportOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.FetchExportOptions.PathResourceType">
            <summary>
            The resource_type
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.FetchExportOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchExportOptions
            </summary>
            <param name="pathResourceType"> The resource_type </param>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.FetchExportOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportResource.Fetch(Twilio.Rest.Preview.BulkExports.FetchExportOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Export parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Export </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportResource.FetchAsync(Twilio.Rest.Preview.BulkExports.FetchExportOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Export parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Export </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathResourceType"> The resource_type </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Export </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathResourceType"> The resource_type </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Export </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.ExportResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ExportResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ExportResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.ExportResource.ResourceType">
            <summary>
            The resource_type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.ExportResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.ExportResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.BulkExports.Export.ReadDayOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadDayOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.Export.ReadDayOptions.PathResourceType">
            <summary>
            The resource_type
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.Export.ReadDayOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadDayOptions
            </summary>
            <param name="pathResourceType"> The resource_type </param>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.Export.ReadDayOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.Export.DayResource.Read(Twilio.Rest.Preview.BulkExports.Export.ReadDayOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Day parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Day </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.Export.DayResource.ReadAsync(Twilio.Rest.Preview.BulkExports.Export.ReadDayOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Day parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Day </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.Export.DayResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathResourceType"> The resource_type </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Day </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.Export.DayResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathResourceType"> The resource_type </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Day </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.Export.DayResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.Export.DayResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.BulkExports.Export.DayResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.Export.DayResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.BulkExports.Export.DayResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.BulkExports.Export.DayResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DayResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DayResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.Export.DayResource.RedirectTo">
            <summary>
            The redirect_to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.Export.DayResource.Day">
            <summary>
            The day
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.Export.DayResource.Size">
            <summary>
            The size
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.BulkExports.Export.DayResource.ResourceType">
            <summary>
            The resource_type
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.FetchFleetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch information about a specific Fleet in your account.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.FetchFleetOptions.PathSid">
            <summary>
            A string that uniquely identifies the Fleet.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FetchFleetOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchFleetOptions
            </summary>
            <param name="pathSid"> A string that uniquely identifies the Fleet. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FetchFleetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.DeleteFleetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific Fleet from your account, also destroys all nested resources: Devices, Deployments, Certificates,
             Keys.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.DeleteFleetOptions.PathSid">
            <summary>
            A string that uniquely identifies the Fleet.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.DeleteFleetOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteFleetOptions
            </summary>
            <param name="pathSid"> A string that uniquely identifies the Fleet. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.DeleteFleetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.CreateFleetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Fleet for scoping of deployed devices within your account.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.CreateFleetOptions.FriendlyName">
            <summary>
            A human readable description for this Fleet.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.CreateFleetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.ReadFleetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Fleets belonging to your account.
             </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.ReadFleetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.UpdateFleetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update the friendly name property of a specific Fleet in your account.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.UpdateFleetOptions.PathSid">
            <summary>
            A string that uniquely identifies the Fleet.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.UpdateFleetOptions.FriendlyName">
            <summary>
            A human readable description for this Fleet.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.UpdateFleetOptions.DefaultDeploymentSid">
            <summary>
            A default Deployment SID.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.UpdateFleetOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateFleetOptions
            </summary>
            <param name="pathSid"> A string that uniquely identifies the Fleet. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.UpdateFleetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.Fetch(Twilio.Rest.Preview.DeployedDevices.FetchFleetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Fleet in your account.
            </summary>
            <param name="options"> Fetch Fleet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.FetchAsync(Twilio.Rest.Preview.DeployedDevices.FetchFleetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Fleet in your account.
            </summary>
            <param name="options"> Fetch Fleet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Fleet in your account.
            </summary>
            <param name="pathSid"> A string that uniquely identifies the Fleet. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Fleet in your account.
            </summary>
            <param name="pathSid"> A string that uniquely identifies the Fleet. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.Delete(Twilio.Rest.Preview.DeployedDevices.DeleteFleetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Fleet from your account, also destroys all nested resources: Devices, Deployments, Certificates,
            Keys.
            </summary>
            <param name="options"> Delete Fleet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.DeleteAsync(Twilio.Rest.Preview.DeployedDevices.DeleteFleetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Fleet from your account, also destroys all nested resources: Devices, Deployments, Certificates,
            Keys.
            </summary>
            <param name="options"> Delete Fleet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Fleet from your account, also destroys all nested resources: Devices, Deployments, Certificates,
            Keys.
            </summary>
            <param name="pathSid"> A string that uniquely identifies the Fleet. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Fleet from your account, also destroys all nested resources: Devices, Deployments, Certificates,
            Keys.
            </summary>
            <param name="pathSid"> A string that uniquely identifies the Fleet. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.Create(Twilio.Rest.Preview.DeployedDevices.CreateFleetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Fleet for scoping of deployed devices within your account.
            </summary>
            <param name="options"> Create Fleet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.CreateAsync(Twilio.Rest.Preview.DeployedDevices.CreateFleetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Fleet for scoping of deployed devices within your account.
            </summary>
            <param name="options"> Create Fleet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.Create(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Fleet for scoping of deployed devices within your account.
            </summary>
            <param name="friendlyName"> A human readable description for this Fleet. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.CreateAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Fleet for scoping of deployed devices within your account.
            </summary>
            <param name="friendlyName"> A human readable description for this Fleet. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.Read(Twilio.Rest.Preview.DeployedDevices.ReadFleetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Fleets belonging to your account.
            </summary>
            <param name="options"> Read Fleet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.ReadAsync(Twilio.Rest.Preview.DeployedDevices.ReadFleetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Fleets belonging to your account.
            </summary>
            <param name="options"> Read Fleet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Fleets belonging to your account.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Fleets belonging to your account.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.DeployedDevices.FleetResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.DeployedDevices.FleetResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.Update(Twilio.Rest.Preview.DeployedDevices.UpdateFleetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the friendly name property of a specific Fleet in your account.
            </summary>
            <param name="options"> Update Fleet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.UpdateAsync(Twilio.Rest.Preview.DeployedDevices.UpdateFleetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the friendly name property of a specific Fleet in your account.
            </summary>
            <param name="options"> Update Fleet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the friendly name property of a specific Fleet in your account.
            </summary>
            <param name="pathSid"> A string that uniquely identifies the Fleet. </param>
            <param name="friendlyName"> A human readable description for this Fleet. </param>
            <param name="defaultDeploymentSid"> A default Deployment SID. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the friendly name property of a specific Fleet in your account.
            </summary>
            <param name="pathSid"> A string that uniquely identifies the Fleet. </param>
            <param name="friendlyName"> A human readable description for this Fleet. </param>
            <param name="defaultDeploymentSid"> A default Deployment SID. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Fleet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.FleetResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FleetResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FleetResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.FleetResource.Sid">
            <summary>
            A string that uniquely identifies this Fleet.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.FleetResource.Url">
            <summary>
            URL of this Fleet.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.FleetResource.UniqueName">
            <summary>
            A unique, addressable name of this Fleet.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.FleetResource.FriendlyName">
            <summary>
            A human readable description for this Fleet.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.FleetResource.AccountSid">
            <summary>
            The unique SID that identifies this Account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.FleetResource.DefaultDeploymentSid">
            <summary>
            The unique SID that identifies this Fleet's default Deployment.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.FleetResource.DateCreated">
            <summary>
            The date this Fleet was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.FleetResource.DateUpdated">
            <summary>
            The date this Fleet was updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.FleetResource.Links">
            <summary>
            Nested resource URLs.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchCertificateOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch information about a specific Certificate credential in the Fleet.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchCertificateOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchCertificateOptions.PathSid">
            <summary>
            A string that uniquely identifies the Certificate.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchCertificateOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchCertificateOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Certificate. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchCertificateOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteCertificateOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Unregister a specific Certificate credential from the Fleet, effectively disallowing any inbound client connections
             that are presenting it.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteCertificateOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteCertificateOptions.PathSid">
            <summary>
            A string that uniquely identifies the Certificate.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteCertificateOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteCertificateOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Certificate. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteCertificateOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateCertificateOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Enroll a new Certificate credential to the Fleet, optionally giving it a friendly name and assigning to a Device.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateCertificateOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateCertificateOptions.CertificateData">
            <summary>
            The public certificate data.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateCertificateOptions.FriendlyName">
            <summary>
            The human readable description for this Certificate.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateCertificateOptions.DeviceSid">
            <summary>
            The unique identifier of a Device to be authenticated.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateCertificateOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateCertificateOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="certificateData"> The public certificate data. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateCertificateOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadCertificateOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Certificate credentials belonging to the Fleet.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadCertificateOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadCertificateOptions.DeviceSid">
            <summary>
            Find all Certificates authenticating specified Device.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadCertificateOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadCertificateOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadCertificateOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateCertificateOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update the given properties of a specific Certificate credential in the Fleet, giving it a friendly name or
             assigning to a Device.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateCertificateOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateCertificateOptions.PathSid">
            <summary>
            A string that uniquely identifies the Certificate.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateCertificateOptions.FriendlyName">
            <summary>
            The human readable description for this Certificate.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateCertificateOptions.DeviceSid">
            <summary>
            The unique identifier of a Device to be authenticated.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateCertificateOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateCertificateOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Certificate. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateCertificateOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Fetch(Twilio.Rest.Preview.DeployedDevices.Fleet.FetchCertificateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Certificate credential in the Fleet.
            </summary>
            <param name="options"> Fetch Certificate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.FetchAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.FetchCertificateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Certificate credential in the Fleet.
            </summary>
            <param name="options"> Fetch Certificate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Certificate credential in the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Certificate. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Certificate credential in the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Certificate. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Delete(Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteCertificateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Unregister a specific Certificate credential from the Fleet, effectively disallowing any inbound client connections
            that are presenting it.
            </summary>
            <param name="options"> Delete Certificate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.DeleteAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteCertificateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Unregister a specific Certificate credential from the Fleet, effectively disallowing any inbound client connections
            that are presenting it.
            </summary>
            <param name="options"> Delete Certificate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Unregister a specific Certificate credential from the Fleet, effectively disallowing any inbound client connections
            that are presenting it.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Certificate. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Unregister a specific Certificate credential from the Fleet, effectively disallowing any inbound client connections
            that are presenting it.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Certificate. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Create(Twilio.Rest.Preview.DeployedDevices.Fleet.CreateCertificateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Enroll a new Certificate credential to the Fleet, optionally giving it a friendly name and assigning to a Device.
            </summary>
            <param name="options"> Create Certificate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.CreateAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.CreateCertificateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Enroll a new Certificate credential to the Fleet, optionally giving it a friendly name and assigning to a Device.
            </summary>
            <param name="options"> Create Certificate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Enroll a new Certificate credential to the Fleet, optionally giving it a friendly name and assigning to a Device.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="certificateData"> The public certificate data. </param>
            <param name="friendlyName"> The human readable description for this Certificate. </param>
            <param name="deviceSid"> The unique identifier of a Device to be authenticated. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Enroll a new Certificate credential to the Fleet, optionally giving it a friendly name and assigning to a Device.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="certificateData"> The public certificate data. </param>
            <param name="friendlyName"> The human readable description for this Certificate. </param>
            <param name="deviceSid"> The unique identifier of a Device to be authenticated. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Read(Twilio.Rest.Preview.DeployedDevices.Fleet.ReadCertificateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Certificate credentials belonging to the Fleet.
            </summary>
            <param name="options"> Read Certificate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.ReadAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.ReadCertificateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Certificate credentials belonging to the Fleet.
            </summary>
            <param name="options"> Read Certificate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Certificate credentials belonging to the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="deviceSid"> Find all Certificates authenticating specified Device. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Certificate credentials belonging to the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="deviceSid"> Find all Certificates authenticating specified Device. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Update(Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateCertificateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Certificate credential in the Fleet, giving it a friendly name or
            assigning to a Device.
            </summary>
            <param name="options"> Update Certificate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.UpdateAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateCertificateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Certificate credential in the Fleet, giving it a friendly name or
            assigning to a Device.
            </summary>
            <param name="options"> Update Certificate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Update(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Certificate credential in the Fleet, giving it a friendly name or
            assigning to a Device.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Certificate. </param>
            <param name="friendlyName"> The human readable description for this Certificate. </param>
            <param name="deviceSid"> The unique identifier of a Device to be authenticated. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.UpdateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Certificate credential in the Fleet, giving it a friendly name or
            assigning to a Device.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Certificate. </param>
            <param name="friendlyName"> The human readable description for this Certificate. </param>
            <param name="deviceSid"> The unique identifier of a Device to be authenticated. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Certificate </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CertificateResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CertificateResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Sid">
            <summary>
            A string that uniquely identifies this Certificate.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Url">
            <summary>
            URL of this Certificate.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.FriendlyName">
            <summary>
            A human readable description for this Certificate.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.FleetSid">
            <summary>
            The unique identifier of the Fleet.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.AccountSid">
            <summary>
            The unique SID that identifies this Account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.DeviceSid">
            <summary>
            The unique identifier of a mapped Device.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.Thumbprint">
            <summary>
            A Certificate unique payload hash.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.DateCreated">
            <summary>
            The date this Certificate was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CertificateResource.DateUpdated">
            <summary>
            The date this Certificate was updated.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeploymentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch information about a specific Deployment in the Fleet.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeploymentOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeploymentOptions.PathSid">
            <summary>
            A string that uniquely identifies the Deployment.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeploymentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchDeploymentOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Deployment. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeploymentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeploymentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific Deployment from the Fleet, leaving associated devices effectively undeployed.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeploymentOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeploymentOptions.PathSid">
            <summary>
            A string that uniquely identifies the Deployment.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeploymentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteDeploymentOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Deployment. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeploymentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeploymentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Deployment in the Fleet, optionally giving it a friendly name and linking to a specific Twilio Sync
             service instance.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeploymentOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeploymentOptions.FriendlyName">
            <summary>
            A human readable description for this Deployment.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeploymentOptions.SyncServiceSid">
            <summary>
            The unique identifier of the Sync service instance.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeploymentOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateDeploymentOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeploymentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeploymentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Deployments belonging to the Fleet.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeploymentOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeploymentOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadDeploymentOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeploymentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeploymentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update the given properties of a specific Deployment credential in the Fleet, giving it a friendly name or linking
             to a specific Twilio Sync service instance.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeploymentOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeploymentOptions.PathSid">
            <summary>
            A string that uniquely identifies the Deployment.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeploymentOptions.FriendlyName">
            <summary>
            A human readable description for this Deployment.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeploymentOptions.SyncServiceSid">
            <summary>
            The unique identifier of the Sync service instance.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeploymentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateDeploymentOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Deployment. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeploymentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Fetch(Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Deployment in the Fleet.
            </summary>
            <param name="options"> Fetch Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.FetchAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Deployment in the Fleet.
            </summary>
            <param name="options"> Fetch Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Deployment in the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Deployment. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Deployment in the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Deployment. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Delete(Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Deployment from the Fleet, leaving associated devices effectively undeployed.
            </summary>
            <param name="options"> Delete Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.DeleteAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Deployment from the Fleet, leaving associated devices effectively undeployed.
            </summary>
            <param name="options"> Delete Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Deployment from the Fleet, leaving associated devices effectively undeployed.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Deployment. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Deployment from the Fleet, leaving associated devices effectively undeployed.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Deployment. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Create(Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Deployment in the Fleet, optionally giving it a friendly name and linking to a specific Twilio Sync
            service instance.
            </summary>
            <param name="options"> Create Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.CreateAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Deployment in the Fleet, optionally giving it a friendly name and linking to a specific Twilio Sync
            service instance.
            </summary>
            <param name="options"> Create Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Deployment in the Fleet, optionally giving it a friendly name and linking to a specific Twilio Sync
            service instance.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="friendlyName"> A human readable description for this Deployment. </param>
            <param name="syncServiceSid"> The unique identifier of the Sync service instance. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Deployment in the Fleet, optionally giving it a friendly name and linking to a specific Twilio Sync
            service instance.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="friendlyName"> A human readable description for this Deployment. </param>
            <param name="syncServiceSid"> The unique identifier of the Sync service instance. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Read(Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Deployments belonging to the Fleet.
            </summary>
            <param name="options"> Read Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.ReadAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Deployments belonging to the Fleet.
            </summary>
            <param name="options"> Read Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Deployments belonging to the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Deployments belonging to the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Update(Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Deployment credential in the Fleet, giving it a friendly name or linking
            to a specific Twilio Sync service instance.
            </summary>
            <param name="options"> Update Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.UpdateAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Deployment credential in the Fleet, giving it a friendly name or linking
            to a specific Twilio Sync service instance.
            </summary>
            <param name="options"> Update Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Update(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Deployment credential in the Fleet, giving it a friendly name or linking
            to a specific Twilio Sync service instance.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Deployment. </param>
            <param name="friendlyName"> A human readable description for this Deployment. </param>
            <param name="syncServiceSid"> The unique identifier of the Sync service instance. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.UpdateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Deployment credential in the Fleet, giving it a friendly name or linking
            to a specific Twilio Sync service instance.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Deployment. </param>
            <param name="friendlyName"> A human readable description for this Deployment. </param>
            <param name="syncServiceSid"> The unique identifier of the Sync service instance. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DeploymentResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DeploymentResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Sid">
            <summary>
            A string that uniquely identifies this Deployment.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.Url">
            <summary>
            URL of this Deployment.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.FriendlyName">
            <summary>
            A human readable description for this Deployment
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.FleetSid">
            <summary>
            The unique identifier of the Fleet.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.AccountSid">
            <summary>
            The unique SID that identifies this Account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.SyncServiceSid">
            <summary>
            The unique identifier of the Sync service instance.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.DateCreated">
            <summary>
            The date this Deployment was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeploymentResource.DateUpdated">
            <summary>
            The date this Deployment was updated.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeviceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch information about a specific Device in the Fleet.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeviceOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeviceOptions.PathSid">
            <summary>
            A string that uniquely identifies the Device.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeviceOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchDeviceOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Device. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeviceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeviceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific Device from the Fleet, also removing it from associated Deployments.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeviceOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeviceOptions.PathSid">
            <summary>
            A string that uniquely identifies the Device.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeviceOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteDeviceOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Device. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeviceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeviceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Device in the Fleet, optionally giving it a unique name, friendly name, and assigning to a Deployment
             and/or human identity.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeviceOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeviceOptions.UniqueName">
            <summary>
            A unique, addressable name of this Device.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeviceOptions.FriendlyName">
            <summary>
            A human readable description for this Device.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeviceOptions.Identity">
            <summary>
            An identifier of the Device user.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeviceOptions.DeploymentSid">
            <summary>
            The unique SID of the Deployment group.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeviceOptions.Enabled">
            <summary>
            The enabled
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeviceOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateDeviceOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeviceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeviceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Devices belonging to the Fleet.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeviceOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeviceOptions.DeploymentSid">
            <summary>
            Find all Devices grouped under the specified Deployment.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeviceOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadDeviceOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeviceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeviceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update the given properties of a specific Device in the Fleet, giving it a friendly name, assigning to a Deployment,
             or a human identity.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeviceOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeviceOptions.PathSid">
            <summary>
            A string that uniquely identifies the Device.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeviceOptions.FriendlyName">
            <summary>
            A human readable description for this Device.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeviceOptions.Identity">
            <summary>
            An identifier of the Device user.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeviceOptions.DeploymentSid">
            <summary>
            The unique SID of the Deployment group.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeviceOptions.Enabled">
            <summary>
            The enabled
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeviceOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateDeviceOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Device. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeviceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Fetch(Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Device in the Fleet.
            </summary>
            <param name="options"> Fetch Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.FetchAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.FetchDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Device in the Fleet.
            </summary>
            <param name="options"> Fetch Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Device in the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Device. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Device in the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Device. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Delete(Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Device from the Fleet, also removing it from associated Deployments.
            </summary>
            <param name="options"> Delete Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.DeleteAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Device from the Fleet, also removing it from associated Deployments.
            </summary>
            <param name="options"> Delete Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Device from the Fleet, also removing it from associated Deployments.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Device. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Device from the Fleet, also removing it from associated Deployments.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Device. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Create(Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Device in the Fleet, optionally giving it a unique name, friendly name, and assigning to a Deployment
            and/or human identity.
            </summary>
            <param name="options"> Create Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.CreateAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.CreateDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Device in the Fleet, optionally giving it a unique name, friendly name, and assigning to a Deployment
            and/or human identity.
            </summary>
            <param name="options"> Create Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Create(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Device in the Fleet, optionally giving it a unique name, friendly name, and assigning to a Deployment
            and/or human identity.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="uniqueName"> A unique, addressable name of this Device. </param>
            <param name="friendlyName"> A human readable description for this Device. </param>
            <param name="identity"> An identifier of the Device user. </param>
            <param name="deploymentSid"> The unique SID of the Deployment group. </param>
            <param name="enabled"> The enabled </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Device in the Fleet, optionally giving it a unique name, friendly name, and assigning to a Deployment
            and/or human identity.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="uniqueName"> A unique, addressable name of this Device. </param>
            <param name="friendlyName"> A human readable description for this Device. </param>
            <param name="identity"> An identifier of the Device user. </param>
            <param name="deploymentSid"> The unique SID of the Deployment group. </param>
            <param name="enabled"> The enabled </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Read(Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Devices belonging to the Fleet.
            </summary>
            <param name="options"> Read Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.ReadAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.ReadDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Devices belonging to the Fleet.
            </summary>
            <param name="options"> Read Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Devices belonging to the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="deploymentSid"> Find all Devices grouped under the specified Deployment. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Devices belonging to the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="deploymentSid"> Find all Devices grouped under the specified Deployment. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Update(Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Device in the Fleet, giving it a friendly name, assigning to a Deployment,
            or a human identity.
            </summary>
            <param name="options"> Update Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.UpdateAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Device in the Fleet, giving it a friendly name, assigning to a Deployment,
            or a human identity.
            </summary>
            <param name="options"> Update Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Update(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Device in the Fleet, giving it a friendly name, assigning to a Deployment,
            or a human identity.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Device. </param>
            <param name="friendlyName"> A human readable description for this Device. </param>
            <param name="identity"> An identifier of the Device user. </param>
            <param name="deploymentSid"> The unique SID of the Deployment group. </param>
            <param name="enabled"> The enabled </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Device in the Fleet, giving it a friendly name, assigning to a Deployment,
            or a human identity.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Device. </param>
            <param name="friendlyName"> A human readable description for this Device. </param>
            <param name="identity"> An identifier of the Device user. </param>
            <param name="deploymentSid"> The unique SID of the Deployment group. </param>
            <param name="enabled"> The enabled </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DeviceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DeviceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Sid">
            <summary>
            A string that uniquely identifies this Device.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Url">
            <summary>
            URL of this Device.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.UniqueName">
            <summary>
            A unique, addressable name of this Device.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.FriendlyName">
            <summary>
            A human readable description for this Device
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.FleetSid">
            <summary>
            The unique identifier of the Fleet.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Enabled">
            <summary>
            Device enabled flag.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.AccountSid">
            <summary>
            The unique SID that identifies this Account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.Identity">
            <summary>
            An identifier of the Device user.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.DeploymentSid">
            <summary>
            The unique SID of the Deployment group.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.DateCreated">
            <summary>
            The date this Device was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.DateUpdated">
            <summary>
            The date this Device was updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeviceResource.DateAuthenticated">
            <summary>
            The date this Device was authenticated.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchKeyOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch information about a specific Key credential in the Fleet.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchKeyOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchKeyOptions.PathSid">
            <summary>
            A string that uniquely identifies the Key.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchKeyOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchKeyOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Key. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.FetchKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteKeyOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific Key credential from the Fleet, effectively disallowing any inbound client connections that are
             presenting it.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteKeyOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteKeyOptions.PathSid">
            <summary>
            A string that uniquely identifies the Key.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteKeyOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteKeyOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Key. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateKeyOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Key credential in the Fleet, optionally giving it a friendly name and assigning to a Device.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateKeyOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateKeyOptions.FriendlyName">
            <summary>
            The human readable description for this Key.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateKeyOptions.DeviceSid">
            <summary>
            The unique identifier of a Key to be authenticated.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateKeyOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.CreateKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadKeyOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Keys credentials belonging to the Fleet.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadKeyOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadKeyOptions.DeviceSid">
            <summary>
            Find all Keys authenticating specified Device.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadKeyOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadKeyOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.ReadKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateKeyOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update the given properties of a specific Key credential in the Fleet, giving it a friendly name or assigning to a
             Device.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateKeyOptions.PathFleetSid">
            <summary>
            The fleet_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateKeyOptions.PathSid">
            <summary>
            A string that uniquely identifies the Key.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateKeyOptions.FriendlyName">
            <summary>
            The human readable description for this Key.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateKeyOptions.DeviceSid">
            <summary>
            The unique identifier of a Key to be authenticated.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateKeyOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateKeyOptions
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Key. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateKeyOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Fetch(Twilio.Rest.Preview.DeployedDevices.Fleet.FetchKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Key credential in the Fleet.
            </summary>
            <param name="options"> Fetch Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.FetchAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.FetchKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Key credential in the Fleet.
            </summary>
            <param name="options"> Fetch Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Key credential in the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Key. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch information about a specific Key credential in the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Key. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Delete(Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Key credential from the Fleet, effectively disallowing any inbound client connections that are
            presenting it.
            </summary>
            <param name="options"> Delete Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.DeleteAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.DeleteKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Key credential from the Fleet, effectively disallowing any inbound client connections that are
            presenting it.
            </summary>
            <param name="options"> Delete Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Key credential from the Fleet, effectively disallowing any inbound client connections that are
            presenting it.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Key. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Key credential from the Fleet, effectively disallowing any inbound client connections that are
            presenting it.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Key. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Create(Twilio.Rest.Preview.DeployedDevices.Fleet.CreateKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Key credential in the Fleet, optionally giving it a friendly name and assigning to a Device.
            </summary>
            <param name="options"> Create Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.CreateAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.CreateKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Key credential in the Fleet, optionally giving it a friendly name and assigning to a Device.
            </summary>
            <param name="options"> Create Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Key credential in the Fleet, optionally giving it a friendly name and assigning to a Device.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="friendlyName"> The human readable description for this Key. </param>
            <param name="deviceSid"> The unique identifier of a Key to be authenticated. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Key credential in the Fleet, optionally giving it a friendly name and assigning to a Device.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="friendlyName"> The human readable description for this Key. </param>
            <param name="deviceSid"> The unique identifier of a Key to be authenticated. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Read(Twilio.Rest.Preview.DeployedDevices.Fleet.ReadKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Keys credentials belonging to the Fleet.
            </summary>
            <param name="options"> Read Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.ReadAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.ReadKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Keys credentials belonging to the Fleet.
            </summary>
            <param name="options"> Read Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Keys credentials belonging to the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="deviceSid"> Find all Keys authenticating specified Device. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Keys credentials belonging to the Fleet.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="deviceSid"> Find all Keys authenticating specified Device. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Update(Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Key credential in the Fleet, giving it a friendly name or assigning to a
            Device.
            </summary>
            <param name="options"> Update Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.UpdateAsync(Twilio.Rest.Preview.DeployedDevices.Fleet.UpdateKeyOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Key credential in the Fleet, giving it a friendly name or assigning to a
            Device.
            </summary>
            <param name="options"> Update Key parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Update(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Key credential in the Fleet, giving it a friendly name or assigning to a
            Device.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Key. </param>
            <param name="friendlyName"> The human readable description for this Key. </param>
            <param name="deviceSid"> The unique identifier of a Key to be authenticated. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.UpdateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the given properties of a specific Key credential in the Fleet, giving it a friendly name or assigning to a
            Device.
            </summary>
            <param name="pathFleetSid"> The fleet_sid </param>
            <param name="pathSid"> A string that uniquely identifies the Key. </param>
            <param name="friendlyName"> The human readable description for this Key. </param>
            <param name="deviceSid"> The unique identifier of a Key to be authenticated. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Key </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a KeyResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> KeyResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Sid">
            <summary>
            A string that uniquely identifies this Key.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Url">
            <summary>
            URL of this Key.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.FriendlyName">
            <summary>
            A human readable description for this Key.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.FleetSid">
            <summary>
            The unique identifier of the Fleet.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.AccountSid">
            <summary>
            The unique SID that identifies this Account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.DeviceSid">
            <summary>
            The unique identifier of a mapped Device.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.Secret">
            <summary>
            The key secret.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.DateCreated">
            <summary>
            The date this Key credential was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.DeployedDevices.Fleet.KeyResource.DateUpdated">
            <summary>
            The date this Key credential was updated.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.HostedNumbers.FetchAuthorizationDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch a specific AuthorizationDocument.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.FetchAuthorizationDocumentOptions.PathSid">
            <summary>
            AuthorizationDocument sid.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.FetchAuthorizationDocumentOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchAuthorizationDocumentOptions
            </summary>
            <param name="pathSid"> AuthorizationDocument sid. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.FetchAuthorizationDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Updates a specific AuthorizationDocument.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions.HostedNumberOrderSids">
            <summary>
            A list of HostedNumberOrder sids.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions.AddressSid">
            <summary>
            Address sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions.Email">
            <summary>
            Email.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions.CcEmails">
            <summary>
            A list of emails.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions.Status">
            <summary>
            The Status of this AuthorizationDocument.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions.ContactTitle">
            <summary>
            Title of signee of this Authorization Document.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions.ContactPhoneNumber">
            <summary>
            Authorization Document's signee's phone number.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateAuthorizationDocumentOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.HostedNumbers.ReadAuthorizationDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of AuthorizationDocuments belonging to the account initiating the request.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.ReadAuthorizationDocumentOptions.Email">
            <summary>
            Email.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.ReadAuthorizationDocumentOptions.Status">
            <summary>
            The Status of this AuthorizationDocument.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.ReadAuthorizationDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.HostedNumbers.CreateAuthorizationDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create an AuthorizationDocument for authorizing the hosting of phone number capabilities on Twilio's platform.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateAuthorizationDocumentOptions.HostedNumberOrderSids">
            <summary>
            A list of HostedNumberOrder sids.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateAuthorizationDocumentOptions.AddressSid">
            <summary>
            Address sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateAuthorizationDocumentOptions.Email">
            <summary>
            Email.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateAuthorizationDocumentOptions.ContactTitle">
            <summary>
            Title of signee of this Authorization Document.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateAuthorizationDocumentOptions.ContactPhoneNumber">
            <summary>
            Authorization Document's signee's phone number.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateAuthorizationDocumentOptions.CcEmails">
            <summary>
            A list of emails.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.CreateAuthorizationDocumentOptions.#ctor(System.Collections.Generic.List{System.String},System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new CreateAuthorizationDocumentOptions
            </summary>
            <param name="hostedNumberOrderSids"> A list of HostedNumberOrder sids. </param>
            <param name="addressSid"> Address sid. </param>
            <param name="email"> Email. </param>
            <param name="contactTitle"> Title of signee of this Authorization Document. </param>
            <param name="contactPhoneNumber"> Authorization Document's signee's phone number. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.CreateAuthorizationDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Fetch(Twilio.Rest.Preview.HostedNumbers.FetchAuthorizationDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific AuthorizationDocument.
            </summary>
            <param name="options"> Fetch AuthorizationDocument parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.FetchAsync(Twilio.Rest.Preview.HostedNumbers.FetchAuthorizationDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific AuthorizationDocument.
            </summary>
            <param name="options"> Fetch AuthorizationDocument parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific AuthorizationDocument.
            </summary>
            <param name="pathSid"> AuthorizationDocument sid. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific AuthorizationDocument.
            </summary>
            <param name="pathSid"> AuthorizationDocument sid. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Update(Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates a specific AuthorizationDocument.
            </summary>
            <param name="options"> Update AuthorizationDocument parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.UpdateAsync(Twilio.Rest.Preview.HostedNumbers.UpdateAuthorizationDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates a specific AuthorizationDocument.
            </summary>
            <param name="options"> Update AuthorizationDocument parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Update(System.String,System.Collections.Generic.List{System.String},System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.StatusEnum,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates a specific AuthorizationDocument.
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="hostedNumberOrderSids"> A list of HostedNumberOrder sids. </param>
            <param name="addressSid"> Address sid. </param>
            <param name="email"> Email. </param>
            <param name="ccEmails"> A list of emails. </param>
            <param name="status"> The Status of this AuthorizationDocument. </param>
            <param name="contactTitle"> Title of signee of this Authorization Document. </param>
            <param name="contactPhoneNumber"> Authorization Document's signee's phone number. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.UpdateAsync(System.String,System.Collections.Generic.List{System.String},System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.StatusEnum,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates a specific AuthorizationDocument.
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="hostedNumberOrderSids"> A list of HostedNumberOrder sids. </param>
            <param name="addressSid"> Address sid. </param>
            <param name="email"> Email. </param>
            <param name="ccEmails"> A list of emails. </param>
            <param name="status"> The Status of this AuthorizationDocument. </param>
            <param name="contactTitle"> Title of signee of this Authorization Document. </param>
            <param name="contactPhoneNumber"> Authorization Document's signee's phone number. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Read(Twilio.Rest.Preview.HostedNumbers.ReadAuthorizationDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of AuthorizationDocuments belonging to the account initiating the request.
            </summary>
            <param name="options"> Read AuthorizationDocument parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.ReadAsync(Twilio.Rest.Preview.HostedNumbers.ReadAuthorizationDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of AuthorizationDocuments belonging to the account initiating the request.
            </summary>
            <param name="options"> Read AuthorizationDocument parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Read(System.String,Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.StatusEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of AuthorizationDocuments belonging to the account initiating the request.
            </summary>
            <param name="email"> Email. </param>
            <param name="status"> The Status of this AuthorizationDocument. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.ReadAsync(System.String,Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.StatusEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of AuthorizationDocuments belonging to the account initiating the request.
            </summary>
            <param name="email"> Email. </param>
            <param name="status"> The Status of this AuthorizationDocument. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Create(Twilio.Rest.Preview.HostedNumbers.CreateAuthorizationDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create an AuthorizationDocument for authorizing the hosting of phone number capabilities on Twilio's platform.
            </summary>
            <param name="options"> Create AuthorizationDocument parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.CreateAsync(Twilio.Rest.Preview.HostedNumbers.CreateAuthorizationDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create an AuthorizationDocument for authorizing the hosting of phone number capabilities on Twilio's platform.
            </summary>
            <param name="options"> Create AuthorizationDocument parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Create(System.Collections.Generic.List{System.String},System.String,System.String,System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create an AuthorizationDocument for authorizing the hosting of phone number capabilities on Twilio's platform.
            </summary>
            <param name="hostedNumberOrderSids"> A list of HostedNumberOrder sids. </param>
            <param name="addressSid"> Address sid. </param>
            <param name="email"> Email. </param>
            <param name="contactTitle"> Title of signee of this Authorization Document. </param>
            <param name="contactPhoneNumber"> Authorization Document's signee's phone number. </param>
            <param name="ccEmails"> A list of emails. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.CreateAsync(System.Collections.Generic.List{System.String},System.String,System.String,System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create an AuthorizationDocument for authorizing the hosting of phone number capabilities on Twilio's platform.
            </summary>
            <param name="hostedNumberOrderSids"> A list of HostedNumberOrder sids. </param>
            <param name="addressSid"> Address sid. </param>
            <param name="email"> Email. </param>
            <param name="contactTitle"> Title of signee of this Authorization Document. </param>
            <param name="contactPhoneNumber"> Authorization Document's signee's phone number. </param>
            <param name="ccEmails"> A list of emails. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AuthorizationDocument </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AuthorizationDocumentResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AuthorizationDocumentResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Sid">
            <summary>
            AuthorizationDocument sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.AddressSid">
            <summary>
            Address sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Status">
            <summary>
            The Status of this AuthorizationDocument.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Email">
            <summary>
            Email.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.CcEmails">
            <summary>
            A list of emails.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.DateCreated">
            <summary>
            The date this AuthorizationDocument was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.DateUpdated">
            <summary>
            The date this AuthorizationDocument was updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocumentResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.ReadDependentHostedNumberOrderOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of dependent HostedNumberOrders belonging to the AuthorizationDocument.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.ReadDependentHostedNumberOrderOptions.PathSigningDocumentSid">
            <summary>
            The signing_document_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.ReadDependentHostedNumberOrderOptions.Status">
            <summary>
            The Status of this HostedNumberOrder.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.ReadDependentHostedNumberOrderOptions.PhoneNumber">
            <summary>
            An E164 formatted phone number.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.ReadDependentHostedNumberOrderOptions.IncomingPhoneNumberSid">
            <summary>
            IncomingPhoneNumber sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.ReadDependentHostedNumberOrderOptions.FriendlyName">
            <summary>
            A human readable description of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.ReadDependentHostedNumberOrderOptions.UniqueName">
            <summary>
            A unique, developer assigned name of this HostedNumberOrder.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.ReadDependentHostedNumberOrderOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadDependentHostedNumberOrderOptions
            </summary>
            <param name="pathSigningDocumentSid"> The signing_document_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.ReadDependentHostedNumberOrderOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.Read(Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.ReadDependentHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of dependent HostedNumberOrders belonging to the AuthorizationDocument.
            </summary>
            <param name="options"> Read DependentHostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DependentHostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.ReadAsync(Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.ReadDependentHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of dependent HostedNumberOrders belonging to the AuthorizationDocument.
            </summary>
            <param name="options"> Read DependentHostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DependentHostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.Read(System.String,Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.StatusEnum,Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of dependent HostedNumberOrders belonging to the AuthorizationDocument.
            </summary>
            <param name="pathSigningDocumentSid"> The signing_document_sid </param>
            <param name="status"> The Status of this HostedNumberOrder. </param>
            <param name="phoneNumber"> An E164 formatted phone number. </param>
            <param name="incomingPhoneNumberSid"> IncomingPhoneNumber sid. </param>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="uniqueName"> A unique, developer assigned name of this HostedNumberOrder. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DependentHostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.ReadAsync(System.String,Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.StatusEnum,Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of dependent HostedNumberOrders belonging to the AuthorizationDocument.
            </summary>
            <param name="pathSigningDocumentSid"> The signing_document_sid </param>
            <param name="status"> The Status of this HostedNumberOrder. </param>
            <param name="phoneNumber"> An E164 formatted phone number. </param>
            <param name="incomingPhoneNumberSid"> IncomingPhoneNumber sid. </param>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="uniqueName"> A unique, developer assigned name of this HostedNumberOrder. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DependentHostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DependentHostedNumberOrderResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DependentHostedNumberOrderResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.Sid">
            <summary>
            HostedNumberOrder sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.AccountSid">
            <summary>
            Account sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.IncomingPhoneNumberSid">
            <summary>
            IncomingPhoneNumber sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.AddressSid">
            <summary>
            Address sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.SigningDocumentSid">
            <summary>
            LOA document sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.PhoneNumber">
            <summary>
            An E164 formatted phone number.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.Capabilities">
            <summary>
            A mapping of phone number capabilities.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.FriendlyName">
            <summary>
            A human readable description of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.UniqueName">
            <summary>
            A unique, developer assigned name of this HostedNumberOrder.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.Status">
            <summary>
            The Status of this HostedNumberOrder.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.FailureReason">
            <summary>
            Why a hosted_number_order reached status "action-required"
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.DateCreated">
            <summary>
            The date this HostedNumberOrder was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.DateUpdated">
            <summary>
            The date this HostedNumberOrder was updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.VerificationAttempts">
            <summary>
            The number of attempts made to verify ownership of the phone number.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.Email">
            <summary>
            Email.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.CcEmails">
            <summary>
            A list of emails.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.VerificationType">
            <summary>
            The method used for verifying ownership of the number to be hosted.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.VerificationDocumentSid">
            <summary>
            Verification Document Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.Extension">
            <summary>
            Phone extension to use for ownership verification call.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.CallDelay">
            <summary>
            Seconds (0-30) to delay ownership verification call by.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.VerificationCode">
            <summary>
            The digits passed during the ownership verification call.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.AuthorizationDocument.DependentHostedNumberOrderResource.VerificationCallSids">
            <summary>
            List of IDs for ownership verification calls.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.HostedNumbers.FetchHostedNumberOrderOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch a specific HostedNumberOrder.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.FetchHostedNumberOrderOptions.PathSid">
            <summary>
            HostedNumberOrder sid.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.FetchHostedNumberOrderOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchHostedNumberOrderOptions
            </summary>
            <param name="pathSid"> HostedNumberOrder sid. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.FetchHostedNumberOrderOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.HostedNumbers.DeleteHostedNumberOrderOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Cancel the HostedNumberOrder (only available when the status is in `received`).
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.DeleteHostedNumberOrderOptions.PathSid">
            <summary>
            HostedNumberOrder sid.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.DeleteHostedNumberOrderOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteHostedNumberOrderOptions
            </summary>
            <param name="pathSid"> HostedNumberOrder sid. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.DeleteHostedNumberOrderOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Updates a specific HostedNumberOrder.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.FriendlyName">
            <summary>
            A human readable description of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.UniqueName">
            <summary>
            A unique, developer assigned name of this HostedNumberOrder.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.Email">
            <summary>
            Email.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.CcEmails">
            <summary>
            A list of emails.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.Status">
            <summary>
            The Status of this HostedNumberOrder.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.VerificationCode">
            <summary>
            A verification code.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.VerificationType">
            <summary>
            Verification Type.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.VerificationDocumentSid">
            <summary>
            Verification Document Sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.Extension">
            <summary>
            Digits to dial after connecting the verification call.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.CallDelay">
            <summary>
            The number of seconds, between 0 and 60, to delay before initiating the verification call.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateHostedNumberOrderOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.HostedNumbers.ReadHostedNumberOrderOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of HostedNumberOrders belonging to the account initiating the request.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.ReadHostedNumberOrderOptions.Status">
            <summary>
            The Status of this HostedNumberOrder.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.ReadHostedNumberOrderOptions.PhoneNumber">
            <summary>
            An E164 formatted phone number.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.ReadHostedNumberOrderOptions.IncomingPhoneNumberSid">
            <summary>
            IncomingPhoneNumber sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.ReadHostedNumberOrderOptions.FriendlyName">
            <summary>
            A human readable description of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.ReadHostedNumberOrderOptions.UniqueName">
            <summary>
            A unique, developer assigned name of this HostedNumberOrder.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.ReadHostedNumberOrderOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Host a phone number's capability on Twilio's platform.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.PhoneNumber">
            <summary>
            An E164 formatted phone number.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.SmsCapability">
            <summary>
            Specify SMS capability to host.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.FriendlyName">
            <summary>
            A human readable description of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.UniqueName">
            <summary>
            A unique, developer assigned name of this HostedNumberOrder.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.CcEmails">
            <summary>
            A list of emails.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.SmsUrl">
            <summary>
            SMS URL.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.SmsMethod">
            <summary>
            SMS Method.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.SmsFallbackUrl">
            <summary>
            SMS Fallback URL.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.SmsFallbackMethod">
            <summary>
            SMS Fallback Method.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.StatusCallbackUrl">
            <summary>
            Status Callback URL.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.StatusCallbackMethod">
            <summary>
            Status Callback Method.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.SmsApplicationSid">
            <summary>
            SMS Application Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.AddressSid">
            <summary>
            Address sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.Email">
            <summary>
            Email.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.VerificationType">
            <summary>
            Verification Type.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.VerificationDocumentSid">
            <summary>
            Verification Document Sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.#ctor(Twilio.Types.PhoneNumber,System.Nullable{System.Boolean})">
            <summary>
            Construct a new CreateHostedNumberOrderOptions
            </summary>
            <param name="phoneNumber"> An E164 formatted phone number. </param>
            <param name="smsCapability"> Specify SMS capability to host. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Fetch(Twilio.Rest.Preview.HostedNumbers.FetchHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific HostedNumberOrder.
            </summary>
            <param name="options"> Fetch HostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.FetchAsync(Twilio.Rest.Preview.HostedNumbers.FetchHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific HostedNumberOrder.
            </summary>
            <param name="options"> Fetch HostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific HostedNumberOrder.
            </summary>
            <param name="pathSid"> HostedNumberOrder sid. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific HostedNumberOrder.
            </summary>
            <param name="pathSid"> HostedNumberOrder sid. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Delete(Twilio.Rest.Preview.HostedNumbers.DeleteHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Cancel the HostedNumberOrder (only available when the status is in `received`).
            </summary>
            <param name="options"> Delete HostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.DeleteAsync(Twilio.Rest.Preview.HostedNumbers.DeleteHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Cancel the HostedNumberOrder (only available when the status is in `received`).
            </summary>
            <param name="options"> Delete HostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Cancel the HostedNumberOrder (only available when the status is in `received`).
            </summary>
            <param name="pathSid"> HostedNumberOrder sid. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Cancel the HostedNumberOrder (only available when the status is in `received`).
            </summary>
            <param name="pathSid"> HostedNumberOrder sid. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Update(Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates a specific HostedNumberOrder.
            </summary>
            <param name="options"> Update HostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.UpdateAsync(Twilio.Rest.Preview.HostedNumbers.UpdateHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates a specific HostedNumberOrder.
            </summary>
            <param name="options"> Update HostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Update(System.String,System.String,System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.StatusEnum,System.String,Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.VerificationTypeEnum,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates a specific HostedNumberOrder.
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="uniqueName"> A unique, developer assigned name of this HostedNumberOrder. </param>
            <param name="email"> Email. </param>
            <param name="ccEmails"> A list of emails. </param>
            <param name="status"> The Status of this HostedNumberOrder. </param>
            <param name="verificationCode"> A verification code. </param>
            <param name="verificationType"> Verification Type. </param>
            <param name="verificationDocumentSid"> Verification Document Sid </param>
            <param name="extension"> Digits to dial after connecting the verification call. </param>
            <param name="callDelay"> The number of seconds, between 0 and 60, to delay before initiating the verification call.
                            </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.StatusEnum,System.String,Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.VerificationTypeEnum,System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates a specific HostedNumberOrder.
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="uniqueName"> A unique, developer assigned name of this HostedNumberOrder. </param>
            <param name="email"> Email. </param>
            <param name="ccEmails"> A list of emails. </param>
            <param name="status"> The Status of this HostedNumberOrder. </param>
            <param name="verificationCode"> A verification code. </param>
            <param name="verificationType"> Verification Type. </param>
            <param name="verificationDocumentSid"> Verification Document Sid </param>
            <param name="extension"> Digits to dial after connecting the verification call. </param>
            <param name="callDelay"> The number of seconds, between 0 and 60, to delay before initiating the verification call.
                            </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Read(Twilio.Rest.Preview.HostedNumbers.ReadHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of HostedNumberOrders belonging to the account initiating the request.
            </summary>
            <param name="options"> Read HostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.ReadAsync(Twilio.Rest.Preview.HostedNumbers.ReadHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of HostedNumberOrders belonging to the account initiating the request.
            </summary>
            <param name="options"> Read HostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Read(Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.StatusEnum,Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of HostedNumberOrders belonging to the account initiating the request.
            </summary>
            <param name="status"> The Status of this HostedNumberOrder. </param>
            <param name="phoneNumber"> An E164 formatted phone number. </param>
            <param name="incomingPhoneNumberSid"> IncomingPhoneNumber sid. </param>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="uniqueName"> A unique, developer assigned name of this HostedNumberOrder. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.ReadAsync(Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.StatusEnum,Twilio.Types.PhoneNumber,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of HostedNumberOrders belonging to the account initiating the request.
            </summary>
            <param name="status"> The Status of this HostedNumberOrder. </param>
            <param name="phoneNumber"> An E164 formatted phone number. </param>
            <param name="incomingPhoneNumberSid"> IncomingPhoneNumber sid. </param>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="uniqueName"> A unique, developer assigned name of this HostedNumberOrder. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Create(Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Host a phone number's capability on Twilio's platform.
            </summary>
            <param name="options"> Create HostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.CreateAsync(Twilio.Rest.Preview.HostedNumbers.CreateHostedNumberOrderOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Host a phone number's capability on Twilio's platform.
            </summary>
            <param name="options"> Create HostedNumberOrder parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Create(Twilio.Types.PhoneNumber,System.Nullable{System.Boolean},System.String,System.String,System.String,System.Collections.Generic.List{System.String},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.String,System.String,System.String,Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.VerificationTypeEnum,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Host a phone number's capability on Twilio's platform.
            </summary>
            <param name="phoneNumber"> An E164 formatted phone number. </param>
            <param name="smsCapability"> Specify SMS capability to host. </param>
            <param name="accountSid"> Account Sid. </param>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="uniqueName"> A unique, developer assigned name of this HostedNumberOrder. </param>
            <param name="ccEmails"> A list of emails. </param>
            <param name="smsUrl"> SMS URL. </param>
            <param name="smsMethod"> SMS Method. </param>
            <param name="smsFallbackUrl"> SMS Fallback URL. </param>
            <param name="smsFallbackMethod"> SMS Fallback Method. </param>
            <param name="statusCallbackUrl"> Status Callback URL. </param>
            <param name="statusCallbackMethod"> Status Callback Method. </param>
            <param name="smsApplicationSid"> SMS Application Sid. </param>
            <param name="addressSid"> Address sid. </param>
            <param name="email"> Email. </param>
            <param name="verificationType"> Verification Type. </param>
            <param name="verificationDocumentSid"> Verification Document Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.CreateAsync(Twilio.Types.PhoneNumber,System.Nullable{System.Boolean},System.String,System.String,System.String,System.Collections.Generic.List{System.String},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.String,System.String,System.String,Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.VerificationTypeEnum,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Host a phone number's capability on Twilio's platform.
            </summary>
            <param name="phoneNumber"> An E164 formatted phone number. </param>
            <param name="smsCapability"> Specify SMS capability to host. </param>
            <param name="accountSid"> Account Sid. </param>
            <param name="friendlyName"> A human readable description of this resource. </param>
            <param name="uniqueName"> A unique, developer assigned name of this HostedNumberOrder. </param>
            <param name="ccEmails"> A list of emails. </param>
            <param name="smsUrl"> SMS URL. </param>
            <param name="smsMethod"> SMS Method. </param>
            <param name="smsFallbackUrl"> SMS Fallback URL. </param>
            <param name="smsFallbackMethod"> SMS Fallback Method. </param>
            <param name="statusCallbackUrl"> Status Callback URL. </param>
            <param name="statusCallbackMethod"> Status Callback Method. </param>
            <param name="smsApplicationSid"> SMS Application Sid. </param>
            <param name="addressSid"> Address sid. </param>
            <param name="email"> Email. </param>
            <param name="verificationType"> Verification Type. </param>
            <param name="verificationDocumentSid"> Verification Document Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HostedNumberOrder </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a HostedNumberOrderResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> HostedNumberOrderResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Sid">
            <summary>
            HostedNumberOrder sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.IncomingPhoneNumberSid">
            <summary>
            IncomingPhoneNumber sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.AddressSid">
            <summary>
            Address sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.SigningDocumentSid">
            <summary>
            LOA document sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.PhoneNumber">
            <summary>
            An E164 formatted phone number.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Capabilities">
            <summary>
            A mapping of phone number capabilities.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.FriendlyName">
            <summary>
            A human readable description of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.UniqueName">
            <summary>
            A unique, developer assigned name of this HostedNumberOrder.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Status">
            <summary>
            The Status of this HostedNumberOrder.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.FailureReason">
            <summary>
            Why a hosted_number_order reached status "action-required"
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.DateCreated">
            <summary>
            The date this HostedNumberOrder was created.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.DateUpdated">
            <summary>
            The date this HostedNumberOrder was updated.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.VerificationAttempts">
            <summary>
            The number of attempts made to verify ownership of the phone number.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Email">
            <summary>
            Email.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.CcEmails">
            <summary>
            A list of emails.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Url">
            <summary>
            The URL of this HostedNumberOrder.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.VerificationType">
            <summary>
            The method used for verifying ownership of the number to be hosted.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.VerificationDocumentSid">
            <summary>
            Verification Document Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.Extension">
            <summary>
            Phone extension to use for ownership verification call.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.CallDelay">
            <summary>
            Seconds (0-30) to delay ownership verification call by.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.VerificationCode">
            <summary>
            The digits passed during the ownership verification call.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.HostedNumbers.HostedNumberOrderResource.VerificationCallSids">
            <summary>
            List of IDs for ownership verification calls.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.FetchAvailableAddOnOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch an instance of an Add-on currently available to be installed.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.FetchAvailableAddOnOptions.PathSid">
            <summary>
            The unique Available Add-on Sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.FetchAvailableAddOnOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchAvailableAddOnOptions
            </summary>
            <param name="pathSid"> The unique Available Add-on Sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.FetchAvailableAddOnOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.ReadAvailableAddOnOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of Add-ons currently available to be installed.
             </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.ReadAvailableAddOnOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.Fetch(Twilio.Rest.Preview.Marketplace.FetchAvailableAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on currently available to be installed.
            </summary>
            <param name="options"> Fetch AvailableAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailableAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.FetchAsync(Twilio.Rest.Preview.Marketplace.FetchAvailableAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on currently available to be installed.
            </summary>
            <param name="options"> Fetch AvailableAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailableAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on currently available to be installed.
            </summary>
            <param name="pathSid"> The unique Available Add-on Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailableAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on currently available to be installed.
            </summary>
            <param name="pathSid"> The unique Available Add-on Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailableAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.Read(Twilio.Rest.Preview.Marketplace.ReadAvailableAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-ons currently available to be installed.
            </summary>
            <param name="options"> Read AvailableAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailableAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.ReadAsync(Twilio.Rest.Preview.Marketplace.ReadAvailableAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-ons currently available to be installed.
            </summary>
            <param name="options"> Read AvailableAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailableAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-ons currently available to be installed.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailableAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-ons currently available to be installed.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailableAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Marketplace.AvailableAddOnResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Marketplace.AvailableAddOnResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AvailableAddOnResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AvailableAddOnResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.Sid">
            <summary>
            A string that uniquely identifies this Add-on
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.FriendlyName">
            <summary>
            A description of this Add-on
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.Description">
            <summary>
            A short description of the Add-on functionality
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.PricingType">
            <summary>
            The way customers are charged for using this Add-on
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.ConfigurationSchema">
            <summary>
            The JSON Schema describing the Add-on's configuration
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOnResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.AvailableAddOn.FetchAvailableAddOnExtensionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch an instance of an Extension for the Available Add-on.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOn.FetchAvailableAddOnExtensionOptions.PathAvailableAddOnSid">
            <summary>
            The available_add_on_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOn.FetchAvailableAddOnExtensionOptions.PathSid">
            <summary>
            The unique Extension Sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.FetchAvailableAddOnExtensionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchAvailableAddOnExtensionOptions
            </summary>
            <param name="pathAvailableAddOnSid"> The available_add_on_sid </param>
            <param name="pathSid"> The unique Extension Sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.FetchAvailableAddOnExtensionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.AvailableAddOn.ReadAvailableAddOnExtensionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of Extensions for the Available Add-on.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOn.ReadAvailableAddOnExtensionOptions.PathAvailableAddOnSid">
            <summary>
            The available_add_on_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.ReadAvailableAddOnExtensionOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadAvailableAddOnExtensionOptions
            </summary>
            <param name="pathAvailableAddOnSid"> The available_add_on_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.ReadAvailableAddOnExtensionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.Fetch(Twilio.Rest.Preview.Marketplace.AvailableAddOn.FetchAvailableAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Available Add-on.
            </summary>
            <param name="options"> Fetch AvailableAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailableAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.FetchAsync(Twilio.Rest.Preview.Marketplace.AvailableAddOn.FetchAvailableAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Available Add-on.
            </summary>
            <param name="options"> Fetch AvailableAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailableAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Available Add-on.
            </summary>
            <param name="pathAvailableAddOnSid"> The available_add_on_sid </param>
            <param name="pathSid"> The unique Extension Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailableAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Available Add-on.
            </summary>
            <param name="pathAvailableAddOnSid"> The available_add_on_sid </param>
            <param name="pathSid"> The unique Extension Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailableAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.Read(Twilio.Rest.Preview.Marketplace.AvailableAddOn.ReadAvailableAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Available Add-on.
            </summary>
            <param name="options"> Read AvailableAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailableAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.ReadAsync(Twilio.Rest.Preview.Marketplace.AvailableAddOn.ReadAvailableAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Available Add-on.
            </summary>
            <param name="options"> Read AvailableAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailableAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Available Add-on.
            </summary>
            <param name="pathAvailableAddOnSid"> The available_add_on_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AvailableAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Available Add-on.
            </summary>
            <param name="pathAvailableAddOnSid"> The available_add_on_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AvailableAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AvailableAddOnExtensionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AvailableAddOnExtensionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.Sid">
            <summary>
            A string that uniquely identifies this Extension
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.AvailableAddOnSid">
            <summary>
            The available_add_on_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.FriendlyName">
            <summary>
            A human-readable description of this Extension
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.ProductName">
            <summary>
            A human-readable description of the Extension's Product
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.UniqueName">
            <summary>
            The string that uniquely identifies this Extension
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.AvailableAddOn.AvailableAddOnExtensionResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.CreateInstalledAddOnOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Install an Add-on for the Account specified.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.CreateInstalledAddOnOptions.AvailableAddOnSid">
            <summary>
            A string that uniquely identifies the Add-on to install
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.CreateInstalledAddOnOptions.AcceptTermsOfService">
            <summary>
            A boolean reflecting your acceptance of the Terms of Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.CreateInstalledAddOnOptions.Configuration">
            <summary>
            The JSON object representing the configuration
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.CreateInstalledAddOnOptions.UniqueName">
            <summary>
            The string that uniquely identifies this Add-on installation
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.CreateInstalledAddOnOptions.#ctor(System.String,System.Nullable{System.Boolean})">
            <summary>
            Construct a new CreateInstalledAddOnOptions
            </summary>
            <param name="availableAddOnSid"> A string that uniquely identifies the Add-on to install </param>
            <param name="acceptTermsOfService"> A boolean reflecting your acceptance of the Terms of Service </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.CreateInstalledAddOnOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.DeleteInstalledAddOnOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Remove an Add-on installation from your account
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.DeleteInstalledAddOnOptions.PathSid">
            <summary>
            The Installed Add-on Sid to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.DeleteInstalledAddOnOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteInstalledAddOnOptions
            </summary>
            <param name="pathSid"> The Installed Add-on Sid to delete </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.DeleteInstalledAddOnOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.FetchInstalledAddOnOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch an instance of an Add-on currently installed on this Account.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.FetchInstalledAddOnOptions.PathSid">
            <summary>
            The unique Installed Add-on Sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.FetchInstalledAddOnOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchInstalledAddOnOptions
            </summary>
            <param name="pathSid"> The unique Installed Add-on Sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.FetchInstalledAddOnOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.UpdateInstalledAddOnOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update an Add-on installation for the Account specified.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.UpdateInstalledAddOnOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.UpdateInstalledAddOnOptions.Configuration">
            <summary>
            The JSON object representing the configuration
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.UpdateInstalledAddOnOptions.UniqueName">
            <summary>
            The string that uniquely identifies this Add-on installation
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.UpdateInstalledAddOnOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateInstalledAddOnOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.UpdateInstalledAddOnOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.ReadInstalledAddOnOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of Add-ons currently installed on this Account.
             </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.ReadInstalledAddOnOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Create(Twilio.Rest.Preview.Marketplace.CreateInstalledAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Install an Add-on for the Account specified.
            </summary>
            <param name="options"> Create InstalledAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.CreateAsync(Twilio.Rest.Preview.Marketplace.CreateInstalledAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Install an Add-on for the Account specified.
            </summary>
            <param name="options"> Create InstalledAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Create(System.String,System.Nullable{System.Boolean},System.Object,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Install an Add-on for the Account specified.
            </summary>
            <param name="availableAddOnSid"> A string that uniquely identifies the Add-on to install </param>
            <param name="acceptTermsOfService"> A boolean reflecting your acceptance of the Terms of Service </param>
            <param name="configuration"> The JSON object representing the configuration </param>
            <param name="uniqueName"> The string that uniquely identifies this Add-on installation </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.CreateAsync(System.String,System.Nullable{System.Boolean},System.Object,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Install an Add-on for the Account specified.
            </summary>
            <param name="availableAddOnSid"> A string that uniquely identifies the Add-on to install </param>
            <param name="acceptTermsOfService"> A boolean reflecting your acceptance of the Terms of Service </param>
            <param name="configuration"> The JSON object representing the configuration </param>
            <param name="uniqueName"> The string that uniquely identifies this Add-on installation </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Delete(Twilio.Rest.Preview.Marketplace.DeleteInstalledAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an Add-on installation from your account
            </summary>
            <param name="options"> Delete InstalledAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.DeleteAsync(Twilio.Rest.Preview.Marketplace.DeleteInstalledAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an Add-on installation from your account
            </summary>
            <param name="options"> Delete InstalledAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an Add-on installation from your account
            </summary>
            <param name="pathSid"> The Installed Add-on Sid to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an Add-on installation from your account
            </summary>
            <param name="pathSid"> The Installed Add-on Sid to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Fetch(Twilio.Rest.Preview.Marketplace.FetchInstalledAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on currently installed on this Account.
            </summary>
            <param name="options"> Fetch InstalledAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.FetchAsync(Twilio.Rest.Preview.Marketplace.FetchInstalledAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on currently installed on this Account.
            </summary>
            <param name="options"> Fetch InstalledAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on currently installed on this Account.
            </summary>
            <param name="pathSid"> The unique Installed Add-on Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Add-on currently installed on this Account.
            </summary>
            <param name="pathSid"> The unique Installed Add-on Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Update(Twilio.Rest.Preview.Marketplace.UpdateInstalledAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an Add-on installation for the Account specified.
            </summary>
            <param name="options"> Update InstalledAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.UpdateAsync(Twilio.Rest.Preview.Marketplace.UpdateInstalledAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an Add-on installation for the Account specified.
            </summary>
            <param name="options"> Update InstalledAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Update(System.String,System.Object,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an Add-on installation for the Account specified.
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="configuration"> The JSON object representing the configuration </param>
            <param name="uniqueName"> The string that uniquely identifies this Add-on installation </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.UpdateAsync(System.String,System.Object,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an Add-on installation for the Account specified.
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="configuration"> The JSON object representing the configuration </param>
            <param name="uniqueName"> The string that uniquely identifies this Add-on installation </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Read(Twilio.Rest.Preview.Marketplace.ReadInstalledAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-ons currently installed on this Account.
            </summary>
            <param name="options"> Read InstalledAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.ReadAsync(Twilio.Rest.Preview.Marketplace.ReadInstalledAddOnOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-ons currently installed on this Account.
            </summary>
            <param name="options"> Read InstalledAddOn parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-ons currently installed on this Account.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Add-ons currently installed on this Account.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOn </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Marketplace.InstalledAddOnResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Marketplace.InstalledAddOnResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a InstalledAddOnResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> InstalledAddOnResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Sid">
            <summary>
            A string that uniquely identifies this Add-on installation
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.AccountSid">
            <summary>
            The Account id that has installed this Add-on
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.FriendlyName">
            <summary>
            A description of this Add-on installation
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Description">
            <summary>
            A short description of the Add-on functionality
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Configuration">
            <summary>
            The JSON object representing the current configuration
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.UniqueName">
            <summary>
            The string that uniquely identifies this Add-on installation
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.DateCreated">
            <summary>
            The date this Add-on installation was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.DateUpdated">
            <summary>
            The date this Add-on installation was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOnResource.Links">
            <summary>
            A dictionary of URLs for related resource.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.InstalledAddOn.FetchInstalledAddOnExtensionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch an instance of an Extension for the Installed Add-on.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.FetchInstalledAddOnExtensionOptions.PathInstalledAddOnSid">
            <summary>
            The installed_add_on_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.FetchInstalledAddOnExtensionOptions.PathSid">
            <summary>
            The unique Extension Sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.FetchInstalledAddOnExtensionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchInstalledAddOnExtensionOptions
            </summary>
            <param name="pathInstalledAddOnSid"> The installed_add_on_sid </param>
            <param name="pathSid"> The unique Extension Sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.FetchInstalledAddOnExtensionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.InstalledAddOn.UpdateInstalledAddOnExtensionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update an Extension for an Add-on installation.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.UpdateInstalledAddOnExtensionOptions.PathInstalledAddOnSid">
            <summary>
            The installed_add_on_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.UpdateInstalledAddOnExtensionOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.UpdateInstalledAddOnExtensionOptions.Enabled">
            <summary>
            A Boolean indicating if the Extension will be invoked
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.UpdateInstalledAddOnExtensionOptions.#ctor(System.String,System.String,System.Nullable{System.Boolean})">
            <summary>
            Construct a new UpdateInstalledAddOnExtensionOptions
            </summary>
            <param name="pathInstalledAddOnSid"> The installed_add_on_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="enabled"> A Boolean indicating if the Extension will be invoked </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.UpdateInstalledAddOnExtensionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Marketplace.InstalledAddOn.ReadInstalledAddOnExtensionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of Extensions for the Installed Add-on.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.ReadInstalledAddOnExtensionOptions.PathInstalledAddOnSid">
            <summary>
            The installed_add_on_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.ReadInstalledAddOnExtensionOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadInstalledAddOnExtensionOptions
            </summary>
            <param name="pathInstalledAddOnSid"> The installed_add_on_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.ReadInstalledAddOnExtensionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.Fetch(Twilio.Rest.Preview.Marketplace.InstalledAddOn.FetchInstalledAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Installed Add-on.
            </summary>
            <param name="options"> Fetch InstalledAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.FetchAsync(Twilio.Rest.Preview.Marketplace.InstalledAddOn.FetchInstalledAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Installed Add-on.
            </summary>
            <param name="options"> Fetch InstalledAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Installed Add-on.
            </summary>
            <param name="pathInstalledAddOnSid"> The installed_add_on_sid </param>
            <param name="pathSid"> The unique Extension Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch an instance of an Extension for the Installed Add-on.
            </summary>
            <param name="pathInstalledAddOnSid"> The installed_add_on_sid </param>
            <param name="pathSid"> The unique Extension Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.Update(Twilio.Rest.Preview.Marketplace.InstalledAddOn.UpdateInstalledAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an Extension for an Add-on installation.
            </summary>
            <param name="options"> Update InstalledAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.UpdateAsync(Twilio.Rest.Preview.Marketplace.InstalledAddOn.UpdateInstalledAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an Extension for an Add-on installation.
            </summary>
            <param name="options"> Update InstalledAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.Update(System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an Extension for an Add-on installation.
            </summary>
            <param name="pathInstalledAddOnSid"> The installed_add_on_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="enabled"> A Boolean indicating if the Extension will be invoked </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.UpdateAsync(System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an Extension for an Add-on installation.
            </summary>
            <param name="pathInstalledAddOnSid"> The installed_add_on_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="enabled"> A Boolean indicating if the Extension will be invoked </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.Read(Twilio.Rest.Preview.Marketplace.InstalledAddOn.ReadInstalledAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Installed Add-on.
            </summary>
            <param name="options"> Read InstalledAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.ReadAsync(Twilio.Rest.Preview.Marketplace.InstalledAddOn.ReadInstalledAddOnExtensionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Installed Add-on.
            </summary>
            <param name="options"> Read InstalledAddOnExtension parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Installed Add-on.
            </summary>
            <param name="pathInstalledAddOnSid"> The installed_add_on_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Extensions for the Installed Add-on.
            </summary>
            <param name="pathInstalledAddOnSid"> The installed_add_on_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of InstalledAddOnExtension </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a InstalledAddOnExtensionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> InstalledAddOnExtensionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.Sid">
            <summary>
            A string that uniquely identifies this Extension
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.InstalledAddOnSid">
            <summary>
            The installed_add_on_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.FriendlyName">
            <summary>
            A human-readable description of this Extension
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.ProductName">
            <summary>
            A human-readable description of the Extension's Product
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.UniqueName">
            <summary>
            The string that uniquely identifies this Extension
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.Enabled">
            <summary>
            A Boolean indicating if the Extension will be invoked
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Marketplace.InstalledAddOn.InstalledAddOnExtensionResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.FetchServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.FetchServiceOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.DeleteServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.DeleteServiceOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.CreateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.CreateServiceOptions.FriendlyName">
            <summary>
            The friendly_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.CreateServiceOptions.WebhookUrl">
            <summary>
            The webhook_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.CreateServiceOptions.ReachabilityWebhooksEnabled">
            <summary>
            The reachability_webhooks_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.CreateServiceOptions.AclEnabled">
            <summary>
            The acl_enabled
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.ReadServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadServiceOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.UpdateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.UpdateServiceOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.UpdateServiceOptions.WebhookUrl">
            <summary>
            The webhook_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.UpdateServiceOptions.FriendlyName">
            <summary>
            The friendly_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.UpdateServiceOptions.ReachabilityWebhooksEnabled">
            <summary>
            The reachability_webhooks_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.UpdateServiceOptions.AclEnabled">
            <summary>
            The acl_enabled
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.Fetch(Twilio.Rest.Preview.Sync.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.FetchAsync(Twilio.Rest.Preview.Sync.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.Delete(Twilio.Rest.Preview.Sync.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.DeleteAsync(Twilio.Rest.Preview.Sync.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.Create(Twilio.Rest.Preview.Sync.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.CreateAsync(Twilio.Rest.Preview.Sync.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.Create(System.String,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> The friendly_name </param>
            <param name="webhookUrl"> The webhook_url </param>
            <param name="reachabilityWebhooksEnabled"> The reachability_webhooks_enabled </param>
            <param name="aclEnabled"> The acl_enabled </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.CreateAsync(System.String,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> The friendly_name </param>
            <param name="webhookUrl"> The webhook_url </param>
            <param name="reachabilityWebhooksEnabled"> The reachability_webhooks_enabled </param>
            <param name="aclEnabled"> The acl_enabled </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.Read(Twilio.Rest.Preview.Sync.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.ReadAsync(Twilio.Rest.Preview.Sync.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.Update(Twilio.Rest.Preview.Sync.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.UpdateAsync(Twilio.Rest.Preview.Sync.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.Update(System.String,System.Uri,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="webhookUrl"> The webhook_url </param>
            <param name="friendlyName"> The friendly_name </param>
            <param name="reachabilityWebhooksEnabled"> The reachability_webhooks_enabled </param>
            <param name="aclEnabled"> The acl_enabled </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.UpdateAsync(System.String,System.Uri,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="webhookUrl"> The webhook_url </param>
            <param name="friendlyName"> The friendly_name </param>
            <param name="reachabilityWebhooksEnabled"> The reachability_webhooks_enabled </param>
            <param name="aclEnabled"> The acl_enabled </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.ServiceResource.Sid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.ServiceResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.ServiceResource.FriendlyName">
            <summary>
            The friendly_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.ServiceResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.ServiceResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.ServiceResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.ServiceResource.WebhookUrl">
            <summary>
            The webhook_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.ServiceResource.ReachabilityWebhooksEnabled">
            <summary>
            The reachability_webhooks_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.ServiceResource.AclEnabled">
            <summary>
            The acl_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.ServiceResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.FetchDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchDocumentOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.FetchDocumentOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.FetchDocumentOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.FetchDocumentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchDocumentOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.FetchDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.DeleteDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteDocumentOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DeleteDocumentOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DeleteDocumentOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DeleteDocumentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteDocumentOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DeleteDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.CreateDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateDocumentOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.CreateDocumentOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.CreateDocumentOptions.UniqueName">
            <summary>
            The unique_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.CreateDocumentOptions.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.CreateDocumentOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateDocumentOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.CreateDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.ReadDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadDocumentOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.ReadDocumentOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.ReadDocumentOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadDocumentOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.ReadDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.UpdateDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateDocumentOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.UpdateDocumentOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.UpdateDocumentOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.UpdateDocumentOptions.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.UpdateDocumentOptions.#ctor(System.String,System.String,System.Object)">
            <summary>
            Construct a new UpdateDocumentOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="data"> The data </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.UpdateDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.Fetch(Twilio.Rest.Preview.Sync.Service.FetchDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.FetchAsync(Twilio.Rest.Preview.Sync.Service.FetchDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.Delete(Twilio.Rest.Preview.Sync.Service.DeleteDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.DeleteAsync(Twilio.Rest.Preview.Sync.Service.DeleteDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.Create(Twilio.Rest.Preview.Sync.Service.CreateDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.CreateAsync(Twilio.Rest.Preview.Sync.Service.CreateDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.Create(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="uniqueName"> The unique_name </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.CreateAsync(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="uniqueName"> The unique_name </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.Read(Twilio.Rest.Preview.Sync.Service.ReadDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.ReadAsync(Twilio.Rest.Preview.Sync.Service.ReadDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.DocumentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.DocumentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.Update(Twilio.Rest.Preview.Sync.Service.UpdateDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.UpdateAsync(Twilio.Rest.Preview.Sync.Service.UpdateDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.Update(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.UpdateAsync(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DocumentResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DocumentResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DocumentResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DocumentResource.Sid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DocumentResource.UniqueName">
            <summary>
            The unique_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DocumentResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DocumentResource.ServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DocumentResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DocumentResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DocumentResource.Revision">
            <summary>
            The revision
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DocumentResource.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DocumentResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DocumentResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DocumentResource.CreatedBy">
            <summary>
            The created_by
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.Document.FetchDocumentPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch a specific Sync Document Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.FetchDocumentPermissionOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.FetchDocumentPermissionOptions.PathDocumentSid">
            <summary>
            Sync Document SID or unique name.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.FetchDocumentPermissionOptions.PathIdentity">
            <summary>
            Identity of the user to whom the Sync Document Permission applies.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.FetchDocumentPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchDocumentPermissionOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Document Permission applies. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.FetchDocumentPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.Document.DeleteDocumentPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific Sync Document Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.DeleteDocumentPermissionOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.DeleteDocumentPermissionOptions.PathDocumentSid">
            <summary>
            Sync Document SID or unique name.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.DeleteDocumentPermissionOptions.PathIdentity">
            <summary>
            Identity of the user to whom the Sync Document Permission applies.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DeleteDocumentPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteDocumentPermissionOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Document Permission applies. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DeleteDocumentPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.Document.ReadDocumentPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Permissions applying to a Sync Document.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.ReadDocumentPermissionOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.ReadDocumentPermissionOptions.PathDocumentSid">
            <summary>
            Sync Document SID or unique name.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.ReadDocumentPermissionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadDocumentPermissionOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.ReadDocumentPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.Document.UpdateDocumentPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update an identity's access to a specific Sync Document.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.UpdateDocumentPermissionOptions.PathServiceSid">
            <summary>
            Sync Service Instance SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.UpdateDocumentPermissionOptions.PathDocumentSid">
            <summary>
            Sync Document SID or unique name.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.UpdateDocumentPermissionOptions.PathIdentity">
            <summary>
            Identity of the user to whom the Sync Document Permission applies.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.UpdateDocumentPermissionOptions.Read">
            <summary>
            Read access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.UpdateDocumentPermissionOptions.Write">
            <summary>
            Write access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.UpdateDocumentPermissionOptions.Manage">
            <summary>
            Manage access.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.UpdateDocumentPermissionOptions.#ctor(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
            <summary>
            Construct a new UpdateDocumentPermissionOptions
            </summary>
            <param name="pathServiceSid"> Sync Service Instance SID. </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Document Permission applies. </param>
            <param name="read"> Read access. </param>
            <param name="write"> Write access. </param>
            <param name="manage"> Manage access. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.UpdateDocumentPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Fetch(Twilio.Rest.Preview.Sync.Service.Document.FetchDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Document Permission.
            </summary>
            <param name="options"> Fetch DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.FetchAsync(Twilio.Rest.Preview.Sync.Service.Document.FetchDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Document Permission.
            </summary>
            <param name="options"> Fetch DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Document Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Document Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Document Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Document Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Delete(Twilio.Rest.Preview.Sync.Service.Document.DeleteDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Document Permission.
            </summary>
            <param name="options"> Delete DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.DeleteAsync(Twilio.Rest.Preview.Sync.Service.Document.DeleteDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Document Permission.
            </summary>
            <param name="options"> Delete DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Document Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Document Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Document Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Document Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Read(Twilio.Rest.Preview.Sync.Service.Document.ReadDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Document.
            </summary>
            <param name="options"> Read DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.ReadAsync(Twilio.Rest.Preview.Sync.Service.Document.ReadDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Document.
            </summary>
            <param name="options"> Read DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Document.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Document.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Update(Twilio.Rest.Preview.Sync.Service.Document.UpdateDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Document.
            </summary>
            <param name="options"> Update DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.UpdateAsync(Twilio.Rest.Preview.Sync.Service.Document.UpdateDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Document.
            </summary>
            <param name="options"> Update DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Update(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Document.
            </summary>
            <param name="pathServiceSid"> Sync Service Instance SID. </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Document Permission applies. </param>
            <param name="read"> Read access. </param>
            <param name="write"> Write access. </param>
            <param name="manage"> Manage access. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Document.
            </summary>
            <param name="pathServiceSid"> Sync Service Instance SID. </param>
            <param name="pathDocumentSid"> Sync Document SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Document Permission applies. </param>
            <param name="read"> Read access. </param>
            <param name="write"> Write access. </param>
            <param name="manage"> Manage access. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DocumentPermissionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DocumentPermissionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.AccountSid">
            <summary>
            Twilio Account SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.ServiceSid">
            <summary>
            Sync Service Instance SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.DocumentSid">
            <summary>
            Sync Document SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Identity">
            <summary>
            Identity of the user to whom the Sync Document Permission applies.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource._Read">
            <summary>
            Read access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Write">
            <summary>
            Write access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Manage">
            <summary>
            Manage access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.Document.DocumentPermissionResource.Url">
            <summary>
            URL of this Sync Document Permission.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.FetchSyncListOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchSyncListOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.FetchSyncListOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.FetchSyncListOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.FetchSyncListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchSyncListOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.FetchSyncListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.DeleteSyncListOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteSyncListOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DeleteSyncListOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DeleteSyncListOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DeleteSyncListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteSyncListOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DeleteSyncListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.CreateSyncListOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateSyncListOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.CreateSyncListOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.CreateSyncListOptions.UniqueName">
            <summary>
            The unique_name
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.CreateSyncListOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateSyncListOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.CreateSyncListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.ReadSyncListOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadSyncListOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.ReadSyncListOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.ReadSyncListOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadSyncListOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.ReadSyncListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.Fetch(Twilio.Rest.Preview.Sync.Service.FetchSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.FetchAsync(Twilio.Rest.Preview.Sync.Service.FetchSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.Delete(Twilio.Rest.Preview.Sync.Service.DeleteSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.DeleteAsync(Twilio.Rest.Preview.Sync.Service.DeleteSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.Create(Twilio.Rest.Preview.Sync.Service.CreateSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.CreateAsync(Twilio.Rest.Preview.Sync.Service.CreateSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="uniqueName"> The unique_name </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="uniqueName"> The unique_name </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.Read(Twilio.Rest.Preview.Sync.Service.ReadSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.ReadAsync(Twilio.Rest.Preview.Sync.Service.ReadSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncListResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncListResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncListResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncListResource.Sid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncListResource.UniqueName">
            <summary>
            The unique_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncListResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncListResource.ServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncListResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncListResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncListResource.Revision">
            <summary>
            The revision
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncListResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncListResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncListResource.CreatedBy">
            <summary>
            The created_by
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListItemOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchSyncListItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListItemOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListItemOptions.PathListSid">
            <summary>
            The list_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListItemOptions.PathIndex">
            <summary>
            The index
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListItemOptions.#ctor(System.String,System.String,System.Nullable{System.Int32})">
            <summary>
            Construct a new FetchSyncListItemOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="pathIndex"> The index </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListItemOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteSyncListItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListItemOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListItemOptions.PathListSid">
            <summary>
            The list_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListItemOptions.PathIndex">
            <summary>
            The index
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListItemOptions.#ctor(System.String,System.String,System.Nullable{System.Int32})">
            <summary>
            Construct a new DeleteSyncListItemOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="pathIndex"> The index </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncList.CreateSyncListItemOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateSyncListItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.CreateSyncListItemOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.CreateSyncListItemOptions.PathListSid">
            <summary>
            The list_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.CreateSyncListItemOptions.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.CreateSyncListItemOptions.#ctor(System.String,System.String,System.Object)">
            <summary>
            Construct a new CreateSyncListItemOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="data"> The data </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.CreateSyncListItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListItemOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadSyncListItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListItemOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListItemOptions.PathListSid">
            <summary>
            The list_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListItemOptions.Order">
            <summary>
            The order
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListItemOptions.From">
            <summary>
            The from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListItemOptions.Bounds">
            <summary>
            The bounds
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListItemOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadSyncListItemOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListItemOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateSyncListItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListItemOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListItemOptions.PathListSid">
            <summary>
            The list_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListItemOptions.PathIndex">
            <summary>
            The index
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListItemOptions.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListItemOptions.#ctor(System.String,System.String,System.Nullable{System.Int32},System.Object)">
            <summary>
            Construct a new UpdateSyncListItemOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="pathIndex"> The index </param>
            <param name="data"> The data </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Fetch(Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.FetchAsync(Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Fetch(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="pathIndex"> The index </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.FetchAsync(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="pathIndex"> The index </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Delete(Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.DeleteAsync(Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Delete(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="pathIndex"> The index </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.DeleteAsync(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="pathIndex"> The index </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Create(Twilio.Rest.Preview.Sync.Service.SyncList.CreateSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.CreateAsync(Twilio.Rest.Preview.Sync.Service.SyncList.CreateSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Create(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.CreateAsync(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Read(Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.ReadAsync(Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Read(System.String,System.String,Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.QueryResultOrderEnum,System.String,Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.QueryFromBoundTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="order"> The order </param>
            <param name="from"> The from </param>
            <param name="bounds"> The bounds </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.ReadAsync(System.String,System.String,Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.QueryResultOrderEnum,System.String,Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.QueryFromBoundTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="order"> The order </param>
            <param name="from"> The from </param>
            <param name="bounds"> The bounds </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Update(Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.UpdateAsync(Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Update(System.String,System.String,System.Nullable{System.Int32},System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="pathIndex"> The index </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.UpdateAsync(System.String,System.String,System.Nullable{System.Int32},System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> The list_sid </param>
            <param name="pathIndex"> The index </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncListItemResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncListItemResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Index">
            <summary>
            The index
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.ServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.ListSid">
            <summary>
            The list_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Revision">
            <summary>
            The revision
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListItemResource.CreatedBy">
            <summary>
            The created_by
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch a specific Sync List Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListPermissionOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListPermissionOptions.PathListSid">
            <summary>
            Sync List SID or unique name.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListPermissionOptions.PathIdentity">
            <summary>
            Identity of the user to whom the Sync List Permission applies.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchSyncListPermissionOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync List Permission applies. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific Sync List Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListPermissionOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListPermissionOptions.PathListSid">
            <summary>
            Sync List SID or unique name.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListPermissionOptions.PathIdentity">
            <summary>
            Identity of the user to whom the Sync List Permission applies.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteSyncListPermissionOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync List Permission applies. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Permissions applying to a Sync List.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListPermissionOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListPermissionOptions.PathListSid">
            <summary>
            Sync List SID or unique name.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListPermissionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadSyncListPermissionOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update an identity's access to a specific Sync List.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListPermissionOptions.PathServiceSid">
            <summary>
            Sync Service Instance SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListPermissionOptions.PathListSid">
            <summary>
            Sync List SID or unique name.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListPermissionOptions.PathIdentity">
            <summary>
            Identity of the user to whom the Sync List Permission applies.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListPermissionOptions.Read">
            <summary>
            Read access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListPermissionOptions.Write">
            <summary>
            Write access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListPermissionOptions.Manage">
            <summary>
            Manage access.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListPermissionOptions.#ctor(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
            <summary>
            Construct a new UpdateSyncListPermissionOptions
            </summary>
            <param name="pathServiceSid"> Sync Service Instance SID. </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync List Permission applies. </param>
            <param name="read"> Read access. </param>
            <param name="write"> Write access. </param>
            <param name="manage"> Manage access. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Fetch(Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync List Permission.
            </summary>
            <param name="options"> Fetch SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.FetchAsync(Twilio.Rest.Preview.Sync.Service.SyncList.FetchSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync List Permission.
            </summary>
            <param name="options"> Fetch SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync List Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync List Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync List Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync List Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Delete(Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync List Permission.
            </summary>
            <param name="options"> Delete SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.DeleteAsync(Twilio.Rest.Preview.Sync.Service.SyncList.DeleteSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync List Permission.
            </summary>
            <param name="options"> Delete SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync List Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync List Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync List Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync List Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Read(Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync List.
            </summary>
            <param name="options"> Read SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.ReadAsync(Twilio.Rest.Preview.Sync.Service.SyncList.ReadSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync List.
            </summary>
            <param name="options"> Read SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync List.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync List.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Update(Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync List.
            </summary>
            <param name="options"> Update SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.UpdateAsync(Twilio.Rest.Preview.Sync.Service.SyncList.UpdateSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync List.
            </summary>
            <param name="options"> Update SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Update(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync List.
            </summary>
            <param name="pathServiceSid"> Sync Service Instance SID. </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync List Permission applies. </param>
            <param name="read"> Read access. </param>
            <param name="write"> Write access. </param>
            <param name="manage"> Manage access. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync List.
            </summary>
            <param name="pathServiceSid"> Sync Service Instance SID. </param>
            <param name="pathListSid"> Sync List SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync List Permission applies. </param>
            <param name="read"> Read access. </param>
            <param name="write"> Write access. </param>
            <param name="manage"> Manage access. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncListPermissionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncListPermissionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.AccountSid">
            <summary>
            Twilio Account SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.ServiceSid">
            <summary>
            Sync Service Instance SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.ListSid">
            <summary>
            Sync List SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Identity">
            <summary>
            Identity of the user to whom the Sync List Permission applies.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource._Read">
            <summary>
            Read access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Write">
            <summary>
            Write access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Manage">
            <summary>
            Manage access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncList.SyncListPermissionResource.Url">
            <summary>
            URL of this Sync List Permission.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.FetchSyncMapOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchSyncMapOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.FetchSyncMapOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.FetchSyncMapOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.FetchSyncMapOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchSyncMapOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.FetchSyncMapOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.DeleteSyncMapOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteSyncMapOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DeleteSyncMapOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.DeleteSyncMapOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DeleteSyncMapOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteSyncMapOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.DeleteSyncMapOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.CreateSyncMapOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateSyncMapOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.CreateSyncMapOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.CreateSyncMapOptions.UniqueName">
            <summary>
            The unique_name
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.CreateSyncMapOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateSyncMapOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.CreateSyncMapOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.ReadSyncMapOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadSyncMapOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.ReadSyncMapOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.ReadSyncMapOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadSyncMapOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.ReadSyncMapOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Fetch(Twilio.Rest.Preview.Sync.Service.FetchSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.FetchAsync(Twilio.Rest.Preview.Sync.Service.FetchSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Delete(Twilio.Rest.Preview.Sync.Service.DeleteSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.DeleteAsync(Twilio.Rest.Preview.Sync.Service.DeleteSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Create(Twilio.Rest.Preview.Sync.Service.CreateSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.CreateAsync(Twilio.Rest.Preview.Sync.Service.CreateSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="uniqueName"> The unique_name </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="uniqueName"> The unique_name </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Read(Twilio.Rest.Preview.Sync.Service.ReadSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.ReadAsync(Twilio.Rest.Preview.Sync.Service.ReadSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncMapResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncMapResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMapResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncMapResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncMapResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Sid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMapResource.UniqueName">
            <summary>
            The unique_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMapResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMapResource.ServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMapResource.Revision">
            <summary>
            The revision
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMapResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMapResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMapResource.CreatedBy">
            <summary>
            The created_by
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapItemOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchSyncMapItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapItemOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapItemOptions.PathMapSid">
            <summary>
            The map_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapItemOptions.PathKey">
            <summary>
            The key
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapItemOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchSyncMapItemOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="pathKey"> The key </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapItemOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteSyncMapItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapItemOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapItemOptions.PathMapSid">
            <summary>
            The map_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapItemOptions.PathKey">
            <summary>
            The key
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapItemOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteSyncMapItemOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="pathKey"> The key </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncMap.CreateSyncMapItemOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateSyncMapItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.CreateSyncMapItemOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.CreateSyncMapItemOptions.PathMapSid">
            <summary>
            The map_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.CreateSyncMapItemOptions.Key">
            <summary>
            The key
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.CreateSyncMapItemOptions.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.CreateSyncMapItemOptions.#ctor(System.String,System.String,System.String,System.Object)">
            <summary>
            Construct a new CreateSyncMapItemOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="key"> The key </param>
            <param name="data"> The data </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.CreateSyncMapItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapItemOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadSyncMapItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapItemOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapItemOptions.PathMapSid">
            <summary>
            The map_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapItemOptions.Order">
            <summary>
            The order
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapItemOptions.From">
            <summary>
            The from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapItemOptions.Bounds">
            <summary>
            The bounds
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapItemOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadSyncMapItemOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapItemOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateSyncMapItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapItemOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapItemOptions.PathMapSid">
            <summary>
            The map_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapItemOptions.PathKey">
            <summary>
            The key
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapItemOptions.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapItemOptions.#ctor(System.String,System.String,System.String,System.Object)">
            <summary>
            Construct a new UpdateSyncMapItemOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="pathKey"> The key </param>
            <param name="data"> The data </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Fetch(Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.FetchAsync(Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="pathKey"> The key </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="pathKey"> The key </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Delete(Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.DeleteAsync(Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="pathKey"> The key </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="pathKey"> The key </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Create(Twilio.Rest.Preview.Sync.Service.SyncMap.CreateSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.CreateAsync(Twilio.Rest.Preview.Sync.Service.SyncMap.CreateSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Create(System.String,System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="key"> The key </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.CreateAsync(System.String,System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="key"> The key </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Read(Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.ReadAsync(Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Read(System.String,System.String,Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.QueryResultOrderEnum,System.String,Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.QueryFromBoundTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="order"> The order </param>
            <param name="from"> The from </param>
            <param name="bounds"> The bounds </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.ReadAsync(System.String,System.String,Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.QueryResultOrderEnum,System.String,Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.QueryFromBoundTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="order"> The order </param>
            <param name="from"> The from </param>
            <param name="bounds"> The bounds </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Update(Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.UpdateAsync(Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Update(System.String,System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="pathKey"> The key </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.UpdateAsync(System.String,System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> The map_sid </param>
            <param name="pathKey"> The key </param>
            <param name="data"> The data </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncMapItemResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncMapItemResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Key">
            <summary>
            The key
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.ServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.MapSid">
            <summary>
            The map_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Revision">
            <summary>
            The revision
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapItemResource.CreatedBy">
            <summary>
            The created_by
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch a specific Sync Map Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapPermissionOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapPermissionOptions.PathMapSid">
            <summary>
            Sync Map SID or unique name.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapPermissionOptions.PathIdentity">
            <summary>
            Identity of the user to whom the Sync Map Permission applies.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchSyncMapPermissionOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Map Permission applies. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific Sync Map Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapPermissionOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapPermissionOptions.PathMapSid">
            <summary>
            Sync Map SID or unique name.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapPermissionOptions.PathIdentity">
            <summary>
            Identity of the user to whom the Sync Map Permission applies.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteSyncMapPermissionOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Map Permission applies. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Permissions applying to a Sync Map.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapPermissionOptions.PathServiceSid">
            <summary>
            The service_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapPermissionOptions.PathMapSid">
            <summary>
            Sync Map SID or unique name.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapPermissionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadSyncMapPermissionOptions
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update an identity's access to a specific Sync Map.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapPermissionOptions.PathServiceSid">
            <summary>
            Sync Service Instance SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapPermissionOptions.PathMapSid">
            <summary>
            Sync Map SID or unique name.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapPermissionOptions.PathIdentity">
            <summary>
            Identity of the user to whom the Sync Map Permission applies.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapPermissionOptions.Read">
            <summary>
            Read access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapPermissionOptions.Write">
            <summary>
            Write access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapPermissionOptions.Manage">
            <summary>
            Manage access.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapPermissionOptions.#ctor(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
            <summary>
            Construct a new UpdateSyncMapPermissionOptions
            </summary>
            <param name="pathServiceSid"> Sync Service Instance SID. </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Map Permission applies. </param>
            <param name="read"> Read access. </param>
            <param name="write"> Write access. </param>
            <param name="manage"> Manage access. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Fetch(Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Map Permission.
            </summary>
            <param name="options"> Fetch SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.FetchAsync(Twilio.Rest.Preview.Sync.Service.SyncMap.FetchSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Map Permission.
            </summary>
            <param name="options"> Fetch SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Map Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Map Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Map Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Map Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Delete(Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Map Permission.
            </summary>
            <param name="options"> Delete SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.DeleteAsync(Twilio.Rest.Preview.Sync.Service.SyncMap.DeleteSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Map Permission.
            </summary>
            <param name="options"> Delete SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Map Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Map Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Map Permission.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Map Permission applies. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Read(Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Map.
            </summary>
            <param name="options"> Read SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.ReadAsync(Twilio.Rest.Preview.Sync.Service.SyncMap.ReadSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Map.
            </summary>
            <param name="options"> Read SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Map.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Map.
            </summary>
            <param name="pathServiceSid"> The service_sid </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Update(Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Map.
            </summary>
            <param name="options"> Update SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.UpdateAsync(Twilio.Rest.Preview.Sync.Service.SyncMap.UpdateSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Map.
            </summary>
            <param name="options"> Update SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Update(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Map.
            </summary>
            <param name="pathServiceSid"> Sync Service Instance SID. </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Map Permission applies. </param>
            <param name="read"> Read access. </param>
            <param name="write"> Write access. </param>
            <param name="manage"> Manage access. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Map.
            </summary>
            <param name="pathServiceSid"> Sync Service Instance SID. </param>
            <param name="pathMapSid"> Sync Map SID or unique name. </param>
            <param name="pathIdentity"> Identity of the user to whom the Sync Map Permission applies. </param>
            <param name="read"> Read access. </param>
            <param name="write"> Write access. </param>
            <param name="manage"> Manage access. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncMapPermissionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncMapPermissionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.AccountSid">
            <summary>
            Twilio Account SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.ServiceSid">
            <summary>
            Sync Service Instance SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.MapSid">
            <summary>
            Sync Map SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Identity">
            <summary>
            Identity of the user to whom the Sync Map Permission applies.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource._Read">
            <summary>
            Read access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Write">
            <summary>
            Write access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Manage">
            <summary>
            Manage access.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Sync.Service.SyncMap.SyncMapPermissionResource.Url">
            <summary>
            URL of this Sync Map Permission.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.TrustedComms.CreateBrandedCallOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Brands a Call without actually placing it. Useful for cases when the Customer wants to initiate the call themselves
             right after calling this endpoint. This can be used also through a TwiML using `<Brand callerId="+1500123"
             callReason="This is the call reason" callSid="CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa">+1500456</Brand>`, and right after
             doing `<Dial callerId="+1500123">+1500456</Dial>`
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreateBrandedCallOptions.From">
            <summary>
            Twilio number from which to brand the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreateBrandedCallOptions.To">
            <summary>
            The terminating Phone Number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreateBrandedCallOptions.Reason">
            <summary>
            The business reason for this phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreateBrandedCallOptions.CallSid">
            <summary>
            The Call sid this Branded Call should link to
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CreateBrandedCallOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateBrandedCallOptions
            </summary>
            <param name="from"> Twilio number from which to brand the call </param>
            <param name="to"> The terminating Phone Number </param>
            <param name="reason"> The business reason for this phone call </param>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CreateBrandedCallOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.Create(Twilio.Rest.Preview.TrustedComms.CreateBrandedCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Brands a Call without actually placing it. Useful for cases when the Customer wants to initiate the call themselves
            right after calling this endpoint. This can be used also through a TwiML using `<Brand callerId="+1500123"
            callReason="This is the call reason" callSid="CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa">+1500456</Brand>`, and right after
            doing `<Dial callerId="+1500123">+1500456</Dial>`
            </summary>
            <param name="options"> Create BrandedCall parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of BrandedCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.CreateAsync(Twilio.Rest.Preview.TrustedComms.CreateBrandedCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Brands a Call without actually placing it. Useful for cases when the Customer wants to initiate the call themselves
            right after calling this endpoint. This can be used also through a TwiML using `<Brand callerId="+1500123"
            callReason="This is the call reason" callSid="CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa">+1500456</Brand>`, and right after
            doing `<Dial callerId="+1500123">+1500456</Dial>`
            </summary>
            <param name="options"> Create BrandedCall parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of BrandedCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Brands a Call without actually placing it. Useful for cases when the Customer wants to initiate the call themselves
            right after calling this endpoint. This can be used also through a TwiML using `<Brand callerId="+1500123"
            callReason="This is the call reason" callSid="CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa">+1500456</Brand>`, and right after
            doing `<Dial callerId="+1500123">+1500456</Dial>`
            </summary>
            <param name="from"> Twilio number from which to brand the call </param>
            <param name="to"> The terminating Phone Number </param>
            <param name="reason"> The business reason for this phone call </param>
            <param name="callSid"> The Call sid this Branded Call should link to </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of BrandedCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Brands a Call without actually placing it. Useful for cases when the Customer wants to initiate the call themselves
            right after calling this endpoint. This can be used also through a TwiML using `<Brand callerId="+1500123"
            callReason="This is the call reason" callSid="CAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa">+1500456</Brand>`, and right after
            doing `<Dial callerId="+1500123">+1500456</Dial>`
            </summary>
            <param name="from"> Twilio number from which to brand the call </param>
            <param name="to"> The terminating Phone Number </param>
            <param name="reason"> The business reason for this phone call </param>
            <param name="callSid"> The Call sid this Branded Call should link to </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of BrandedCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a BrandedCallResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> BrandedCallResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.BgColor">
            <summary>
            Background color of the current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.Caller">
            <summary>
            Caller name of the current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.CreatedAt">
            <summary>
            The date this current phone call was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.FontColor">
            <summary>
            Font color of the current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.From">
            <summary>
            The originating phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.Logo">
            <summary>
            Logo URL of the caller
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.Reason">
            <summary>
            The business reason for this current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.Sid">
            <summary>
            A string that uniquely identifies this current phone call.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.Status">
            <summary>
            The status of the current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.To">
            <summary>
            The terminating phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.BrandedCallResource.UseCase">
            <summary>
            The use case for the current phone call
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.TrustedComms.FetchCpsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch a specific Call Placement Service (CPS) given a phone number via `X-XCNAM-Sensitive-Phone-Number` header.
             </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.FetchCpsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CpsResource.Fetch(Twilio.Rest.Preview.TrustedComms.FetchCpsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Call Placement Service (CPS) given a phone number via `X-XCNAM-Sensitive-Phone-Number` header.
            </summary>
            <param name="options"> Fetch Cps parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Cps </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CpsResource.FetchAsync(Twilio.Rest.Preview.TrustedComms.FetchCpsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Call Placement Service (CPS) given a phone number via `X-XCNAM-Sensitive-Phone-Number` header.
            </summary>
            <param name="options"> Fetch Cps parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Cps </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CpsResource.Fetch(Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Call Placement Service (CPS) given a phone number via `X-XCNAM-Sensitive-Phone-Number` header.
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Cps </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CpsResource.FetchAsync(Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Call Placement Service (CPS) given a phone number via `X-XCNAM-Sensitive-Phone-Number` header.
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Cps </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CpsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CpsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CpsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CpsResource.PhoneNumber">
            <summary>
            Phone number passed.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CpsResource.CpsUrl">
            <summary>
            CPS URL of the phone number.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CpsResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.TrustedComms.FetchCurrentCallOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a current call given the originating and terminating number via `X-XCNAM-Sensitive-Phone-Number-From` and
             `X-XCNAM-Sensitive-Phone-Number-To` headers.
             </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.FetchCurrentCallOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.Fetch(Twilio.Rest.Preview.TrustedComms.FetchCurrentCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a current call given the originating and terminating number via `X-XCNAM-Sensitive-Phone-Number-From` and
            `X-XCNAM-Sensitive-Phone-Number-To` headers.
            </summary>
            <param name="options"> Fetch CurrentCall parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CurrentCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.FetchAsync(Twilio.Rest.Preview.TrustedComms.FetchCurrentCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a current call given the originating and terminating number via `X-XCNAM-Sensitive-Phone-Number-From` and
            `X-XCNAM-Sensitive-Phone-Number-To` headers.
            </summary>
            <param name="options"> Fetch CurrentCall parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CurrentCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.Fetch(Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a current call given the originating and terminating number via `X-XCNAM-Sensitive-Phone-Number-From` and
            `X-XCNAM-Sensitive-Phone-Number-To` headers.
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CurrentCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.FetchAsync(Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a current call given the originating and terminating number via `X-XCNAM-Sensitive-Phone-Number-From` and
            `X-XCNAM-Sensitive-Phone-Number-To` headers.
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CurrentCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CurrentCallResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CurrentCallResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.Sid">
            <summary>
            A string that uniquely identifies this current phone call.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.From">
            <summary>
            The originating phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.To">
            <summary>
            The terminating phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.Status">
            <summary>
            The status of the current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.Reason">
            <summary>
            The business reason for this current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.CreatedAt">
            <summary>
            The date this current phone call was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.Caller">
            <summary>
            Caller name of the current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.Logo">
            <summary>
            Logo URL of the caller
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.BgColor">
            <summary>
            Background color of the current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.FontColor">
            <summary>
            Font color of the current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.UseCase">
            <summary>
            The use case for the current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.Manager">
            <summary>
            The name of the CPS organization
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.ShieldImg">
            <summary>
            Shield image URL that serves as authenticity proof of the current phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CurrentCallResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.TrustedComms.CreateDeviceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Registers a new Device and Push Token against Trusted Comms API. This works specially for iOS devices, which don't
             allow the SDK to know when there's an incoming call, nor the originating number.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreateDeviceOptions.PhoneNumber">
            <summary>
            The end user Phone Number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreateDeviceOptions.PushToken">
            <summary>
            The Push Token for this Phone Number
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CreateDeviceOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateDeviceOptions
            </summary>
            <param name="phoneNumber"> The end user Phone Number </param>
            <param name="pushToken"> The Push Token for this Phone Number </param>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CreateDeviceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.DeviceResource.Create(Twilio.Rest.Preview.TrustedComms.CreateDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Registers a new Device and Push Token against Trusted Comms API. This works specially for iOS devices, which don't
            allow the SDK to know when there's an incoming call, nor the originating number.
            </summary>
            <param name="options"> Create Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.DeviceResource.CreateAsync(Twilio.Rest.Preview.TrustedComms.CreateDeviceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Registers a new Device and Push Token against Trusted Comms API. This works specially for iOS devices, which don't
            allow the SDK to know when there's an incoming call, nor the originating number.
            </summary>
            <param name="options"> Create Device parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.DeviceResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Registers a new Device and Push Token against Trusted Comms API. This works specially for iOS devices, which don't
            allow the SDK to know when there's an incoming call, nor the originating number.
            </summary>
            <param name="phoneNumber"> The end user Phone Number </param>
            <param name="pushToken"> The Push Token for this Phone Number </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.DeviceResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Registers a new Device and Push Token against Trusted Comms API. This works specially for iOS devices, which don't
            allow the SDK to know when there's an incoming call, nor the originating number.
            </summary>
            <param name="phoneNumber"> The end user Phone Number </param>
            <param name="pushToken"> The Push Token for this Phone Number </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Device </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.DeviceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DeviceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DeviceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.DeviceResource.Sid">
            <summary>
            A string that uniquely identifies this Device.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.DeviceResource.PhoneNumber">
            <summary>
            The end user Phone Number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.DeviceResource.BindingSid">
            <summary>
            Binding Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.DeviceResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Initiates a Branded Call.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.From">
            <summary>
            Twilio number from which to originate the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.To">
            <summary>
            The terminating Phone Number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.Reason">
            <summary>
            The business reason for this phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.ApplicationSid">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.CallerId">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.FallbackMethod">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.FallbackUrl">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.MachineDetection">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.MachineDetectionSilenceTimeout">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.MachineDetectionSpeechEndThreshold">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.MachineDetectionSpeechThreshold">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.MachineDetectionTimeout">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.Method">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.Record">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.RecordingChannels">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.RecordingStatusCallback">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.RecordingStatusCallbackEvent">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.RecordingStatusCallbackMethod">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.SendDigits">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.SipAuthPassword">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.SipAuthUsername">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.StatusCallback">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.StatusCallbackEvent">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.StatusCallbackMethod">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.Timeout">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.Trim">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.Url">
            <summary>
            Refers to the Voice API Initiate Call parameter
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreatePhoneCallOptions
            </summary>
            <param name="from"> Twilio number from which to originate the call </param>
            <param name="to"> The terminating Phone Number </param>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.Create(Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Initiates a Branded Call.
            </summary>
            <param name="options"> Create PhoneCall parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.CreateAsync(Twilio.Rest.Preview.TrustedComms.CreatePhoneCallOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Initiates a Branded Call.
            </summary>
            <param name="options"> Create PhoneCall parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Http.HttpMethod,System.String,System.String,System.String,System.Uri,System.Collections.Generic.List{System.String},Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.String,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Initiates a Branded Call.
            </summary>
            <param name="from"> Twilio number from which to originate the call </param>
            <param name="to"> The terminating Phone Number </param>
            <param name="reason"> The business reason for this phone call </param>
            <param name="applicationSid"> Refers to the Voice API Initiate Call parameter </param>
            <param name="callerId"> Refers to the Voice API Initiate Call parameter </param>
            <param name="fallbackMethod"> Refers to the Voice API Initiate Call parameter </param>
            <param name="fallbackUrl"> Refers to the Voice API Initiate Call parameter </param>
            <param name="machineDetection"> Refers to the Voice API Initiate Call parameter </param>
            <param name="machineDetectionSilenceTimeout"> Refers to the Voice API Initiate Call parameter </param>
            <param name="machineDetectionSpeechEndThreshold"> Refers to the Voice API Initiate Call parameter </param>
            <param name="machineDetectionSpeechThreshold"> Refers to the Voice API Initiate Call parameter </param>
            <param name="machineDetectionTimeout"> Refers to the Voice API Initiate Call parameter </param>
            <param name="method"> Refers to the Voice API Initiate Call parameter </param>
            <param name="record"> Refers to the Voice API Initiate Call parameter </param>
            <param name="recordingChannels"> Refers to the Voice API Initiate Call parameter </param>
            <param name="recordingStatusCallback"> Refers to the Voice API Initiate Call parameter </param>
            <param name="recordingStatusCallbackEvent"> Refers to the Voice API Initiate Call parameter </param>
            <param name="recordingStatusCallbackMethod"> Refers to the Voice API Initiate Call parameter </param>
            <param name="sendDigits"> Refers to the Voice API Initiate Call parameter </param>
            <param name="sipAuthPassword"> Refers to the Voice API Initiate Call parameter </param>
            <param name="sipAuthUsername"> Refers to the Voice API Initiate Call parameter </param>
            <param name="statusCallback"> Refers to the Voice API Initiate Call parameter </param>
            <param name="statusCallbackEvent"> Refers to the Voice API Initiate Call parameter </param>
            <param name="statusCallbackMethod"> Refers to the Voice API Initiate Call parameter </param>
            <param name="timeout"> Refers to the Voice API Initiate Call parameter </param>
            <param name="trim"> Refers to the Voice API Initiate Call parameter </param>
            <param name="url"> Refers to the Voice API Initiate Call parameter </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.String,System.String,System.Collections.Generic.List{System.String},Twilio.Http.HttpMethod,System.String,System.String,System.String,System.Uri,System.Collections.Generic.List{System.String},Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.String,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Initiates a Branded Call.
            </summary>
            <param name="from"> Twilio number from which to originate the call </param>
            <param name="to"> The terminating Phone Number </param>
            <param name="reason"> The business reason for this phone call </param>
            <param name="applicationSid"> Refers to the Voice API Initiate Call parameter </param>
            <param name="callerId"> Refers to the Voice API Initiate Call parameter </param>
            <param name="fallbackMethod"> Refers to the Voice API Initiate Call parameter </param>
            <param name="fallbackUrl"> Refers to the Voice API Initiate Call parameter </param>
            <param name="machineDetection"> Refers to the Voice API Initiate Call parameter </param>
            <param name="machineDetectionSilenceTimeout"> Refers to the Voice API Initiate Call parameter </param>
            <param name="machineDetectionSpeechEndThreshold"> Refers to the Voice API Initiate Call parameter </param>
            <param name="machineDetectionSpeechThreshold"> Refers to the Voice API Initiate Call parameter </param>
            <param name="machineDetectionTimeout"> Refers to the Voice API Initiate Call parameter </param>
            <param name="method"> Refers to the Voice API Initiate Call parameter </param>
            <param name="record"> Refers to the Voice API Initiate Call parameter </param>
            <param name="recordingChannels"> Refers to the Voice API Initiate Call parameter </param>
            <param name="recordingStatusCallback"> Refers to the Voice API Initiate Call parameter </param>
            <param name="recordingStatusCallbackEvent"> Refers to the Voice API Initiate Call parameter </param>
            <param name="recordingStatusCallbackMethod"> Refers to the Voice API Initiate Call parameter </param>
            <param name="sendDigits"> Refers to the Voice API Initiate Call parameter </param>
            <param name="sipAuthPassword"> Refers to the Voice API Initiate Call parameter </param>
            <param name="sipAuthUsername"> Refers to the Voice API Initiate Call parameter </param>
            <param name="statusCallback"> Refers to the Voice API Initiate Call parameter </param>
            <param name="statusCallbackEvent"> Refers to the Voice API Initiate Call parameter </param>
            <param name="statusCallbackMethod"> Refers to the Voice API Initiate Call parameter </param>
            <param name="timeout"> Refers to the Voice API Initiate Call parameter </param>
            <param name="trim"> Refers to the Voice API Initiate Call parameter </param>
            <param name="url"> Refers to the Voice API Initiate Call parameter </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneCall </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a PhoneCallResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> PhoneCallResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.Sid">
            <summary>
            A string that uniquely identifies this Current Call.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.AccountSid">
            <summary>
            Account Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.From">
            <summary>
            The originating Phone Number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.To">
            <summary>
            The terminating Phone Number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.Reason">
            <summary>
            The business reason for this phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.CreatedAt">
            <summary>
            The date this Current Call was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.TrustedComms.PhoneCallResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.FetchAssistantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchAssistantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.FetchAssistantOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.FetchAssistantOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchAssistantOptions
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.FetchAssistantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.ReadAssistantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadAssistantOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.ReadAssistantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.CreateAssistantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateAssistantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.CreateAssistantOptions.FriendlyName">
            <summary>
            A text description for the Assistant. It is non-unique and can up to 255 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.CreateAssistantOptions.LogQueries">
            <summary>
            A boolean that specifies whether queries should be logged for 30 days further training. If false, no queries will be stored, if true, queries will be stored for 30 days and deleted thereafter. Defaults to true if no value is provided.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.CreateAssistantOptions.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.CreateAssistantOptions.CallbackUrl">
            <summary>
            A user-provided URL to send event callbacks to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.CreateAssistantOptions.CallbackEvents">
            <summary>
            Space-separated list of callback events that will trigger callbacks.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.CreateAssistantOptions.FallbackActions">
            <summary>
            The JSON actions to be executed when the user's input is not recognized as matching any Task.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.CreateAssistantOptions.InitiationActions">
            <summary>
            The JSON actions to be executed on inbound phone calls when the Assistant has to say something first.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.CreateAssistantOptions.StyleSheet">
            <summary>
            The JSON object that holds the style sheet for the assistant
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.CreateAssistantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.UpdateAssistantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateAssistantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.UpdateAssistantOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.UpdateAssistantOptions.FriendlyName">
            <summary>
            A text description for the Assistant. It is non-unique and can up to 255 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.UpdateAssistantOptions.LogQueries">
            <summary>
            A boolean that specifies whether queries should be logged for 30 days further training. If false, no queries will be stored, if true, queries will be stored for 30 days and deleted thereafter. Defaults to true if no value is provided.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.UpdateAssistantOptions.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.UpdateAssistantOptions.CallbackUrl">
            <summary>
            A user-provided URL to send event callbacks to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.UpdateAssistantOptions.CallbackEvents">
            <summary>
            Space-separated list of callback events that will trigger callbacks.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.UpdateAssistantOptions.FallbackActions">
            <summary>
            The JSON actions to be executed when the user's input is not recognized as matching any Task.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.UpdateAssistantOptions.InitiationActions">
            <summary>
            The JSON actions to be executed on inbound phone calls when the Assistant has to say something first.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.UpdateAssistantOptions.StyleSheet">
            <summary>
            The JSON object that holds the style sheet for the assistant
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.UpdateAssistantOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateAssistantOptions
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.UpdateAssistantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.DeleteAssistantOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteAssistantOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.DeleteAssistantOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.DeleteAssistantOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteAssistantOptions
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.DeleteAssistantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.Fetch(Twilio.Rest.Preview.Understand.FetchAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.FetchAsync(Twilio.Rest.Preview.Understand.FetchAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.Read(Twilio.Rest.Preview.Understand.ReadAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.ReadAsync(Twilio.Rest.Preview.Understand.ReadAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.AssistantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.AssistantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.Create(Twilio.Rest.Preview.Understand.CreateAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.CreateAsync(Twilio.Rest.Preview.Understand.CreateAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.Create(System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.String,System.Object,System.Object,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A text description for the Assistant. It is non-unique and can up to 255 characters
                               long. </param>
            <param name="logQueries"> A boolean that specifies whether queries should be logged for 30 days further training.
                             If false, no queries will be stored, if true, queries will be stored for 30 days and deleted
                             thereafter. Defaults to true if no value is provided. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="callbackUrl"> A user-provided URL to send event callbacks to. </param>
            <param name="callbackEvents"> Space-separated list of callback events that will trigger callbacks. </param>
            <param name="fallbackActions"> The JSON actions to be executed when the user's input is not recognized as matching
                                  any Task. </param>
            <param name="initiationActions"> The JSON actions to be executed on inbound phone calls when the Assistant has to
                                    say something first. </param>
            <param name="styleSheet"> The JSON object that holds the style sheet for the assistant </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.CreateAsync(System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.String,System.Object,System.Object,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A text description for the Assistant. It is non-unique and can up to 255 characters
                               long. </param>
            <param name="logQueries"> A boolean that specifies whether queries should be logged for 30 days further training.
                             If false, no queries will be stored, if true, queries will be stored for 30 days and deleted
                             thereafter. Defaults to true if no value is provided. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="callbackUrl"> A user-provided URL to send event callbacks to. </param>
            <param name="callbackEvents"> Space-separated list of callback events that will trigger callbacks. </param>
            <param name="fallbackActions"> The JSON actions to be executed when the user's input is not recognized as matching
                                  any Task. </param>
            <param name="initiationActions"> The JSON actions to be executed on inbound phone calls when the Assistant has to
                                    say something first. </param>
            <param name="styleSheet"> The JSON object that holds the style sheet for the assistant </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.Update(Twilio.Rest.Preview.Understand.UpdateAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.UpdateAsync(Twilio.Rest.Preview.Understand.UpdateAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.Update(System.String,System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.String,System.Object,System.Object,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="friendlyName"> A text description for the Assistant. It is non-unique and can up to 255 characters
                               long. </param>
            <param name="logQueries"> A boolean that specifies whether queries should be logged for 30 days further training.
                             If false, no queries will be stored, if true, queries will be stored for 30 days and deleted
                             thereafter. Defaults to true if no value is provided. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="callbackUrl"> A user-provided URL to send event callbacks to. </param>
            <param name="callbackEvents"> Space-separated list of callback events that will trigger callbacks. </param>
            <param name="fallbackActions"> The JSON actions to be executed when the user's input is not recognized as matching
                                  any Task. </param>
            <param name="initiationActions"> The JSON actions to be executed on inbound phone calls when the Assistant has to
                                    say something first. </param>
            <param name="styleSheet"> The JSON object that holds the style sheet for the assistant </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.UpdateAsync(System.String,System.String,System.Nullable{System.Boolean},System.String,System.Uri,System.String,System.Object,System.Object,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="friendlyName"> A text description for the Assistant. It is non-unique and can up to 255 characters
                               long. </param>
            <param name="logQueries"> A boolean that specifies whether queries should be logged for 30 days further training.
                             If false, no queries will be stored, if true, queries will be stored for 30 days and deleted
                             thereafter. Defaults to true if no value is provided. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="callbackUrl"> A user-provided URL to send event callbacks to. </param>
            <param name="callbackEvents"> Space-separated list of callback events that will trigger callbacks. </param>
            <param name="fallbackActions"> The JSON actions to be executed when the user's input is not recognized as matching
                                  any Task. </param>
            <param name="initiationActions"> The JSON actions to be executed on inbound phone calls when the Assistant has to
                                    say something first. </param>
            <param name="styleSheet"> The JSON object that holds the style sheet for the assistant </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.Delete(Twilio.Rest.Preview.Understand.DeleteAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.DeleteAsync(Twilio.Rest.Preview.Understand.DeleteAssistantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Assistant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Assistant </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.AssistantResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AssistantResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AssistantResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.FriendlyName">
            <summary>
            A text description for the Assistant. It is non-unique and can up to 255 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.LatestModelBuildSid">
            <summary>
            The unique ID (Sid) of the latest model build. Null if no model has been built.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.LogQueries">
            <summary>
            A boolean that specifies whether queries should be logged for 30 days further training. If false, no queries will be stored, if true, queries will be stored for 30 days and deleted thereafter.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. You can use the unique name in the URL path. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.CallbackUrl">
            <summary>
            A user-provided URL to send event callbacks to.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.AssistantResource.CallbackEvents">
            <summary>
            Space-separated list of callback events that will trigger callbacks.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FetchAssistantFallbackActionsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchAssistantFallbackActionsOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchAssistantFallbackActionsOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchAssistantFallbackActionsOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchAssistantFallbackActionsOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchAssistantFallbackActionsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantFallbackActionsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateAssistantFallbackActionsOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantFallbackActionsOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantFallbackActionsOptions.FallbackActions">
            <summary>
            The fallback_actions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantFallbackActionsOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateAssistantFallbackActionsOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantFallbackActionsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.FetchAssistantFallbackActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch AssistantFallbackActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssistantFallbackActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.FetchAssistantFallbackActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch AssistantFallbackActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssistantFallbackActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssistantFallbackActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssistantFallbackActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.Update(Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantFallbackActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update AssistantFallbackActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssistantFallbackActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.UpdateAsync(Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantFallbackActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update AssistantFallbackActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssistantFallbackActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.Update(System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="fallbackActions"> The fallback_actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssistantFallbackActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.UpdateAsync(System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="fallbackActions"> The fallback_actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssistantFallbackActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AssistantFallbackActionsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AssistantFallbackActionsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.AssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.AssistantFallbackActionsResource.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FetchAssistantInitiationActionsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchAssistantInitiationActionsOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchAssistantInitiationActionsOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchAssistantInitiationActionsOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchAssistantInitiationActionsOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchAssistantInitiationActionsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantInitiationActionsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateAssistantInitiationActionsOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantInitiationActionsOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantInitiationActionsOptions.InitiationActions">
            <summary>
            The initiation_actions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantInitiationActionsOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateAssistantInitiationActionsOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantInitiationActionsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.FetchAssistantInitiationActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch AssistantInitiationActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssistantInitiationActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.FetchAssistantInitiationActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch AssistantInitiationActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssistantInitiationActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssistantInitiationActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssistantInitiationActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.Update(Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantInitiationActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update AssistantInitiationActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssistantInitiationActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.UpdateAsync(Twilio.Rest.Preview.Understand.Assistant.UpdateAssistantInitiationActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update AssistantInitiationActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssistantInitiationActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.Update(System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="initiationActions"> The initiation_actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssistantInitiationActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.UpdateAsync(System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="initiationActions"> The initiation_actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssistantInitiationActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AssistantInitiationActionsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AssistantInitiationActionsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.AssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.AssistantInitiationActionsResource.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FetchDialogueOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchDialogueOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchDialogueOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchDialogueOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchDialogueOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchDialogueOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchDialogueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DialogueResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.FetchDialogueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Dialogue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Dialogue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DialogueResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.FetchDialogueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Dialogue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Dialogue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DialogueResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Dialogue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DialogueResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Dialogue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DialogueResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DialogueResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DialogueResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DialogueResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Field.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DialogueResource.AssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DialogueResource.Sid">
            <summary>
            The unique ID of the Dialogue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DialogueResource.Data">
            <summary>
            The dialogue memory object as json
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DialogueResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FetchFieldTypeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchFieldTypeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchFieldTypeOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchFieldTypeOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchFieldTypeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchFieldTypeOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchFieldTypeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.ReadFieldTypeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadFieldTypeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ReadFieldTypeOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ReadFieldTypeOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadFieldTypeOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ReadFieldTypeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.CreateFieldTypeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateFieldTypeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateFieldTypeOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateFieldTypeOptions.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateFieldTypeOptions.FriendlyName">
            <summary>
            A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.CreateFieldTypeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateFieldTypeOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.CreateFieldTypeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.UpdateFieldTypeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateFieldTypeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateFieldTypeOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateFieldTypeOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateFieldTypeOptions.FriendlyName">
            <summary>
            A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateFieldTypeOptions.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateFieldTypeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateFieldTypeOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateFieldTypeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.DeleteFieldTypeOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteFieldTypeOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DeleteFieldTypeOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DeleteFieldTypeOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DeleteFieldTypeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteFieldTypeOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DeleteFieldTypeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.FetchFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.FetchFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Read(Twilio.Rest.Preview.Understand.Assistant.ReadFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.ReadAsync(Twilio.Rest.Preview.Understand.Assistant.ReadFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Create(Twilio.Rest.Preview.Understand.Assistant.CreateFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.CreateAsync(Twilio.Rest.Preview.Understand.Assistant.CreateFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="friendlyName"> A user-provided string that identifies this resource. It is non-unique and can up to
                               255 characters long. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="friendlyName"> A user-provided string that identifies this resource. It is non-unique and can up to
                               255 characters long. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Update(Twilio.Rest.Preview.Understand.Assistant.UpdateFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.UpdateAsync(Twilio.Rest.Preview.Understand.Assistant.UpdateFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Update(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="friendlyName"> A user-provided string that identifies this resource. It is non-unique and can up to
                               255 characters long. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.UpdateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="friendlyName"> A user-provided string that identifies this resource. It is non-unique and can up to
                               255 characters long. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Delete(Twilio.Rest.Preview.Understand.Assistant.DeleteFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.DeleteAsync(Twilio.Rest.Preview.Understand.Assistant.DeleteFieldTypeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete FieldType parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldType </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FieldTypeResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FieldTypeResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Field Type.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.FriendlyName">
            <summary>
            A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.AssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldTypeResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FieldType.FetchFieldValueOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchFieldValueOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FetchFieldValueOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FetchFieldValueOptions.PathFieldTypeSid">
            <summary>
            The field_type_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FetchFieldValueOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FetchFieldValueOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchFieldValueOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FetchFieldValueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FieldType.ReadFieldValueOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadFieldValueOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.ReadFieldValueOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.ReadFieldValueOptions.PathFieldTypeSid">
            <summary>
            The field_type_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.ReadFieldValueOptions.Language">
            <summary>
            An ISO language-country string of the value. For example: en-US
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.ReadFieldValueOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadFieldValueOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.ReadFieldValueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FieldType.CreateFieldValueOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateFieldValueOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.CreateFieldValueOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.CreateFieldValueOptions.PathFieldTypeSid">
            <summary>
            The field_type_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.CreateFieldValueOptions.Language">
            <summary>
            An ISO language-country string of the value.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.CreateFieldValueOptions.Value">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.CreateFieldValueOptions.SynonymOf">
            <summary>
            A value that indicates this field value is a synonym of. Empty if the value is not a synonym.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.CreateFieldValueOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new CreateFieldValueOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
            <param name="language"> An ISO language-country string of the value. </param>
            <param name="value"> A user-provided string that uniquely identifies this resource as an alternative to the sid.
                        Unique up to 64 characters long. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.CreateFieldValueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FieldType.DeleteFieldValueOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteFieldValueOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.DeleteFieldValueOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.DeleteFieldValueOptions.PathFieldTypeSid">
            <summary>
            The field_type_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.DeleteFieldValueOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.DeleteFieldValueOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteFieldValueOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.DeleteFieldValueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.FieldType.FetchFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.FieldType.FetchFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Read(Twilio.Rest.Preview.Understand.Assistant.FieldType.ReadFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.ReadAsync(Twilio.Rest.Preview.Understand.Assistant.FieldType.ReadFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Read(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
            <param name="language"> An ISO language-country string of the value. For example: en-US </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.ReadAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
            <param name="language"> An ISO language-country string of the value. For example: en-US </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Create(Twilio.Rest.Preview.Understand.Assistant.FieldType.CreateFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.CreateAsync(Twilio.Rest.Preview.Understand.Assistant.FieldType.CreateFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
            <param name="language"> An ISO language-country string of the value. </param>
            <param name="value"> A user-provided string that uniquely identifies this resource as an alternative to the sid.
                        Unique up to 64 characters long. </param>
            <param name="synonymOf"> A value that indicates this field value is a synonym of. Empty if the value is not a
                            synonym. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
            <param name="language"> An ISO language-country string of the value. </param>
            <param name="value"> A user-provided string that uniquely identifies this resource as an alternative to the sid.
                        Unique up to 64 characters long. </param>
            <param name="synonymOf"> A value that indicates this field value is a synonym of. Empty if the value is not a
                            synonym. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Delete(Twilio.Rest.Preview.Understand.Assistant.FieldType.DeleteFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.DeleteAsync(Twilio.Rest.Preview.Understand.Assistant.FieldType.DeleteFieldValueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete FieldValue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathFieldTypeSid"> The field_type_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FieldValue </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FieldValueResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FieldValueResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Field Value.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.FieldTypeSid">
            <summary>
            The unique ID of the Field Type associated with this Field Value.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Language">
            <summary>
            An ISO language-country string of the value.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.AssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Value">
            <summary>
            The Field Value itself.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FieldType.FieldValueResource.SynonymOf">
            <summary>
            A value that indicates this field value is a synonym of. Empty if the value is not a synonym.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FetchModelBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchModelBuildOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchModelBuildOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchModelBuildOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchModelBuildOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchModelBuildOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchModelBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.ReadModelBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadModelBuildOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ReadModelBuildOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ReadModelBuildOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadModelBuildOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ReadModelBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.CreateModelBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateModelBuildOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateModelBuildOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateModelBuildOptions.StatusCallback">
            <summary>
            The status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateModelBuildOptions.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long. For example: v0.1
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.CreateModelBuildOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateModelBuildOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.CreateModelBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.UpdateModelBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateModelBuildOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateModelBuildOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateModelBuildOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateModelBuildOptions.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long. For example: v0.1
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateModelBuildOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateModelBuildOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateModelBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.DeleteModelBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteModelBuildOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DeleteModelBuildOptions.PathAssistantSid">
            <summary>
            The assistant_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DeleteModelBuildOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DeleteModelBuildOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteModelBuildOptions
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DeleteModelBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.FetchModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.FetchModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Read(Twilio.Rest.Preview.Understand.Assistant.ReadModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.ReadAsync(Twilio.Rest.Preview.Understand.Assistant.ReadModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Create(Twilio.Rest.Preview.Understand.Assistant.CreateModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.CreateAsync(Twilio.Rest.Preview.Understand.Assistant.CreateModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Create(System.String,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="statusCallback"> The status_callback </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. For example: v0.1 </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.CreateAsync(System.String,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="statusCallback"> The status_callback </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. For example: v0.1 </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Update(Twilio.Rest.Preview.Understand.Assistant.UpdateModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.UpdateAsync(Twilio.Rest.Preview.Understand.Assistant.UpdateModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. For example: v0.1 </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. For example: v0.1 </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Delete(Twilio.Rest.Preview.Understand.Assistant.DeleteModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.DeleteAsync(Twilio.Rest.Preview.Understand.Assistant.DeleteModelBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete ModelBuild parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The assistant_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ModelBuild </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ModelBuildResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ModelBuildResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Model Build.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.AssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Status">
            <summary>
            A string that described the model build status. The values can be: enqueued, building, completed, failed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.BuildDuration">
            <summary>
            The time in seconds it took to build the model.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ModelBuildResource.ErrorCode">
            <summary>
            The error_code
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FetchQueryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchQueryOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchQueryOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchQueryOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchQueryOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchQueryOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchQueryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.ReadQueryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadQueryOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ReadQueryOptions.PathAssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ReadQueryOptions.Language">
            <summary>
            An ISO language-country string of the sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ReadQueryOptions.ModelBuild">
            <summary>
            The Model Build Sid or unique name of the Model Build to be queried.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ReadQueryOptions.Status">
            <summary>
            A string that described the query status. The values can be: pending_review, reviewed, discarded
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ReadQueryOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadQueryOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ReadQueryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.CreateQueryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateQueryOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateQueryOptions.PathAssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateQueryOptions.Language">
            <summary>
            An ISO language-country string of the sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateQueryOptions.Query">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. It can be up to 2048 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateQueryOptions.Tasks">
            <summary>
            Constraints the query to a set of tasks. Useful when you need to constrain the paths the user can take. Tasks should be comma separated task-unique-name-1, task-unique-name-2
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateQueryOptions.ModelBuild">
            <summary>
            The Model Build Sid or unique name of the Model Build to be queried.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateQueryOptions.Field">
            <summary>
            Constraints the query to a given Field with an task. Useful when you know the Field you are expecting. It accepts one field in the format task-unique-name-1:field-unique-name
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.CreateQueryOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateQueryOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="query"> A user-provided string that uniquely identifies this resource as an alternative to the sid. It
                        can be up to 2048 characters long. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.CreateQueryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.UpdateQueryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateQueryOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateQueryOptions.PathAssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateQueryOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateQueryOptions.SampleSid">
            <summary>
            An optional reference to the Sample created from this query.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateQueryOptions.Status">
            <summary>
            A string that described the query status. The values can be: pending_review, reviewed, discarded
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateQueryOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateQueryOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateQueryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.DeleteQueryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteQueryOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DeleteQueryOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DeleteQueryOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DeleteQueryOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteQueryOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DeleteQueryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.FetchQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.FetchQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Read(Twilio.Rest.Preview.Understand.Assistant.ReadQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.ReadAsync(Twilio.Rest.Preview.Understand.Assistant.ReadQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Read(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="modelBuild"> The Model Build Sid or unique name of the Model Build to be queried. </param>
            <param name="status"> A string that described the query status. The values can be: pending_review, reviewed,
                         discarded </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.ReadAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="modelBuild"> The Model Build Sid or unique name of the Model Build to be queried. </param>
            <param name="status"> A string that described the query status. The values can be: pending_review, reviewed,
                         discarded </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.QueryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.QueryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Create(Twilio.Rest.Preview.Understand.Assistant.CreateQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.CreateAsync(Twilio.Rest.Preview.Understand.Assistant.CreateQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Create(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="query"> A user-provided string that uniquely identifies this resource as an alternative to the sid. It
                        can be up to 2048 characters long. </param>
            <param name="tasks"> Constraints the query to a set of tasks. Useful when you need to constrain the paths the user
                        can take. Tasks should be comma separated task-unique-name-1, task-unique-name-2 </param>
            <param name="modelBuild"> The Model Build Sid or unique name of the Model Build to be queried. </param>
            <param name="field"> Constraints the query to a given Field with an task. Useful when you know the Field you are
                        expecting. It accepts one field in the format task-unique-name-1:field-unique-name </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="query"> A user-provided string that uniquely identifies this resource as an alternative to the sid. It
                        can be up to 2048 characters long. </param>
            <param name="tasks"> Constraints the query to a set of tasks. Useful when you need to constrain the paths the user
                        can take. Tasks should be comma separated task-unique-name-1, task-unique-name-2 </param>
            <param name="modelBuild"> The Model Build Sid or unique name of the Model Build to be queried. </param>
            <param name="field"> Constraints the query to a given Field with an task. Useful when you know the Field you are
                        expecting. It accepts one field in the format task-unique-name-1:field-unique-name </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Update(Twilio.Rest.Preview.Understand.Assistant.UpdateQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.UpdateAsync(Twilio.Rest.Preview.Understand.Assistant.UpdateQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Update(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="sampleSid"> An optional reference to the Sample created from this query. </param>
            <param name="status"> A string that described the query status. The values can be: pending_review, reviewed,
                         discarded </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.UpdateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="sampleSid"> An optional reference to the Sample created from this query. </param>
            <param name="status"> A string that described the query status. The values can be: pending_review, reviewed,
                         discarded </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Delete(Twilio.Rest.Preview.Understand.Assistant.DeleteQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.DeleteAsync(Twilio.Rest.Preview.Understand.Assistant.DeleteQueryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Query parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Query </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.QueryResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a QueryResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> QueryResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Query.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Results">
            <summary>
            The natural language analysis results which include the Task recognized, the confidence score and a list of identified Fields.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Language">
            <summary>
            An ISO language-country string of the sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.ModelBuildSid">
            <summary>
            The unique ID of the Model Build queried.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Query">
            <summary>
            The end-user's natural language input.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.SampleSid">
            <summary>
            An optional reference to the Sample created from this query.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.AssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Status">
            <summary>
            A string that described the query status. The values can be: pending_review, reviewed, discarded
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.QueryResource.SourceChannel">
            <summary>
            The communication channel where this end-user input came from
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FetchStyleSheetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Returns Style sheet JSON object for this Assistant
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchStyleSheetOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchStyleSheetOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchStyleSheetOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchStyleSheetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.UpdateStyleSheetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Updates the style sheet for an assistant identified by {AssistantSid} or {AssistantUniqueName}.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateStyleSheetOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateStyleSheetOptions.StyleSheet">
            <summary>
            The JSON Style sheet string
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateStyleSheetOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateStyleSheetOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateStyleSheetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.FetchStyleSheetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns Style sheet JSON object for this Assistant
            </summary>
            <param name="options"> Fetch StyleSheet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.FetchStyleSheetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns Style sheet JSON object for this Assistant
            </summary>
            <param name="options"> Fetch StyleSheet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns Style sheet JSON object for this Assistant
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns Style sheet JSON object for this Assistant
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.Update(Twilio.Rest.Preview.Understand.Assistant.UpdateStyleSheetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the style sheet for an assistant identified by {AssistantSid} or {AssistantUniqueName}.
            </summary>
            <param name="options"> Update StyleSheet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.UpdateAsync(Twilio.Rest.Preview.Understand.Assistant.UpdateStyleSheetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the style sheet for an assistant identified by {AssistantSid} or {AssistantUniqueName}.
            </summary>
            <param name="options"> Update StyleSheet parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.Update(System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the style sheet for an assistant identified by {AssistantSid} or {AssistantUniqueName}.
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant </param>
            <param name="styleSheet"> The JSON Style sheet string </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.UpdateAsync(System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the style sheet for an assistant identified by {AssistantSid} or {AssistantUniqueName}.
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant </param>
            <param name="styleSheet"> The JSON Style sheet string </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StyleSheet </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a StyleSheetResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> StyleSheetResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Assistant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.AssistantSid">
            <summary>
            The unique ID of the Assistant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.StyleSheetResource.Data">
            <summary>
            The JSON style sheet object
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.FetchTaskOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchTaskOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchTaskOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.FetchTaskOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchTaskOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.FetchTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.ReadTaskOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadTaskOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.ReadTaskOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ReadTaskOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadTaskOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.ReadTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.CreateTaskOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateTaskOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateTaskOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateTaskOptions.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateTaskOptions.FriendlyName">
            <summary>
            A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateTaskOptions.Actions">
            <summary>
            A user-provided JSON object encoded as a string to specify the actions for this task. It is optional and non-unique.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.CreateTaskOptions.ActionsUrl">
            <summary>
            User-provided HTTP endpoint where from the assistant fetches actions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.CreateTaskOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateTaskOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.CreateTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.UpdateTaskOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateTaskOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateTaskOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateTaskOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateTaskOptions.FriendlyName">
            <summary>
            A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateTaskOptions.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateTaskOptions.Actions">
            <summary>
            A user-provided JSON object encoded as a string to specify the actions for this task. It is optional and non-unique.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.UpdateTaskOptions.ActionsUrl">
            <summary>
            User-provided HTTP endpoint where from the assistant fetches actions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateTaskOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateTaskOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.UpdateTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.DeleteTaskOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteTaskOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DeleteTaskOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.DeleteTaskOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DeleteTaskOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteTaskOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.DeleteTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.FetchTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.FetchTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Read(Twilio.Rest.Preview.Understand.Assistant.ReadTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.ReadAsync(Twilio.Rest.Preview.Understand.Assistant.ReadTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.TaskResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.TaskResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Create(Twilio.Rest.Preview.Understand.Assistant.CreateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.CreateAsync(Twilio.Rest.Preview.Understand.Assistant.CreateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Create(System.String,System.String,System.String,System.Object,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="friendlyName"> A user-provided string that identifies this resource. It is non-unique and can up to
                               255 characters long. </param>
            <param name="actions"> A user-provided JSON object encoded as a string to specify the actions for this task. It is
                          optional and non-unique. </param>
            <param name="actionsUrl"> User-provided HTTP endpoint where from the assistant fetches actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.CreateAsync(System.String,System.String,System.String,System.Object,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="friendlyName"> A user-provided string that identifies this resource. It is non-unique and can up to
                               255 characters long. </param>
            <param name="actions"> A user-provided JSON object encoded as a string to specify the actions for this task. It is
                          optional and non-unique. </param>
            <param name="actionsUrl"> User-provided HTTP endpoint where from the assistant fetches actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Update(Twilio.Rest.Preview.Understand.Assistant.UpdateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.UpdateAsync(Twilio.Rest.Preview.Understand.Assistant.UpdateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Update(System.String,System.String,System.String,System.String,System.Object,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="friendlyName"> A user-provided string that identifies this resource. It is non-unique and can up to
                               255 characters long. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="actions"> A user-provided JSON object encoded as a string to specify the actions for this task. It is
                          optional and non-unique. </param>
            <param name="actionsUrl"> User-provided HTTP endpoint where from the assistant fetches actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.UpdateAsync(System.String,System.String,System.String,System.String,System.Object,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="friendlyName"> A user-provided string that identifies this resource. It is non-unique and can up to
                               255 characters long. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="actions"> A user-provided JSON object encoded as a string to specify the actions for this task. It is
                          optional and non-unique. </param>
            <param name="actionsUrl"> User-provided HTTP endpoint where from the assistant fetches actions </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Delete(Twilio.Rest.Preview.Understand.Assistant.DeleteTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.DeleteAsync(Twilio.Rest.Preview.Understand.Assistant.DeleteTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.TaskResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.TaskResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Task.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.TaskResource.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.TaskResource.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.TaskResource.FriendlyName">
            <summary>
            A user-provided string that identifies this resource. It is non-unique and can up to 255 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.TaskResource.AssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.TaskResource.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.TaskResource.ActionsUrl">
            <summary>
            User-provided HTTP endpoint where from the assistant fetches actions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.TaskResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.FetchFieldOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchFieldOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FetchFieldOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FetchFieldOptions.PathTaskSid">
            <summary>
            The unique ID of the Task associated with this Field.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FetchFieldOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FetchFieldOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchFieldOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FetchFieldOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.ReadFieldOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadFieldOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.ReadFieldOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.ReadFieldOptions.PathTaskSid">
            <summary>
            The unique ID of the Task associated with this Field.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.ReadFieldOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadFieldOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.ReadFieldOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.CreateFieldOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateFieldOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.CreateFieldOptions.PathAssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.CreateFieldOptions.PathTaskSid">
            <summary>
            The unique ID of the Task associated with this Field.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.CreateFieldOptions.FieldType">
            <summary>
            The unique name or sid of the FieldType. It can be any Built-in Field Type or the unique_name or sid of a custom Field Type.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.CreateFieldOptions.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.CreateFieldOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new CreateFieldOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="fieldType"> The unique name or sid of the FieldType. It can be any Built-in Field Type or the
                            unique_name or sid of a custom Field Type. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.CreateFieldOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteFieldOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteFieldOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteFieldOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteFieldOptions.PathTaskSid">
            <summary>
            The unique ID of the Task associated with this Field.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteFieldOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteFieldOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteFieldOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteFieldOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.Task.FetchFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.Task.FetchFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.Read(Twilio.Rest.Preview.Understand.Assistant.Task.ReadFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.ReadAsync(Twilio.Rest.Preview.Understand.Assistant.Task.ReadFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.Create(Twilio.Rest.Preview.Understand.Assistant.Task.CreateFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.CreateAsync(Twilio.Rest.Preview.Understand.Assistant.Task.CreateFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="fieldType"> The unique name or sid of the FieldType. It can be any Built-in Field Type or the
                            unique_name or sid of a custom Field Type. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="fieldType"> The unique name or sid of the FieldType. It can be any Built-in Field Type or the
                            unique_name or sid of a custom Field Type. </param>
            <param name="uniqueName"> A user-provided string that uniquely identifies this resource as an alternative to the
                             sid. Unique up to 64 characters long. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.Delete(Twilio.Rest.Preview.Understand.Assistant.Task.DeleteFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.DeleteAsync(Twilio.Rest.Preview.Understand.Assistant.Task.DeleteFieldOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Field parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Field </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FieldResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FieldResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Field.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.FieldType">
            <summary>
            The Field Type of this field. It can be any Built-in Field Type or unique_name or the Field Type sid of a custom Field Type.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.TaskSid">
            <summary>
            The unique ID of the Task associated with this Field.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.AssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.UniqueName">
            <summary>
            A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FieldResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.FetchSampleOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchSampleOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FetchSampleOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FetchSampleOptions.PathTaskSid">
            <summary>
            The unique ID of the Task associated with this Sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FetchSampleOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FetchSampleOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchSampleOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FetchSampleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.ReadSampleOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadSampleOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.ReadSampleOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.ReadSampleOptions.PathTaskSid">
            <summary>
            The unique ID of the Task associated with this Sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.ReadSampleOptions.Language">
            <summary>
            An ISO language-country string of the sample.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.ReadSampleOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadSampleOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.ReadSampleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.CreateSampleOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateSampleOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.CreateSampleOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.CreateSampleOptions.PathTaskSid">
            <summary>
            The unique ID of the Task associated with this Sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.CreateSampleOptions.Language">
            <summary>
            An ISO language-country string of the sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.CreateSampleOptions.TaggedText">
            <summary>
            The text example of how end-users may express this task. The sample may contain Field tag blocks.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.CreateSampleOptions.SourceChannel">
            <summary>
            The communication channel the sample was captured. It can be: voice, sms, chat, alexa, google-assistant, or slack. If not included the value will be null
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.CreateSampleOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new CreateSampleOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="taggedText"> The text example of how end-users may express this task. The sample may contain Field tag
                             blocks. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.CreateSampleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateSampleOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateSampleOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateSampleOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateSampleOptions.PathTaskSid">
            <summary>
            The unique ID of the Task associated with this Sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateSampleOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateSampleOptions.Language">
            <summary>
            An ISO language-country string of the sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateSampleOptions.TaggedText">
            <summary>
            The text example of how end-users may express this task. The sample may contain Field tag blocks.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateSampleOptions.SourceChannel">
            <summary>
            The communication channel the sample was captured. It can be: voice, sms, chat, alexa, google-assistant, or slack. If not included the value will be null
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateSampleOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateSampleOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateSampleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteSampleOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteSampleOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteSampleOptions.PathAssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteSampleOptions.PathTaskSid">
            <summary>
            The unique ID of the Task associated with this Sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteSampleOptions.PathSid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteSampleOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteSampleOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.DeleteSampleOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.Task.FetchSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.Task.FetchSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Read(Twilio.Rest.Preview.Understand.Assistant.Task.ReadSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.ReadAsync(Twilio.Rest.Preview.Understand.Assistant.Task.ReadSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Read(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.ReadAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Create(Twilio.Rest.Preview.Understand.Assistant.Task.CreateSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.CreateAsync(Twilio.Rest.Preview.Understand.Assistant.Task.CreateSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Create(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="taggedText"> The text example of how end-users may express this task. The sample may contain Field tag
                             blocks. </param>
            <param name="sourceChannel"> The communication channel the sample was captured. It can be: voice, sms, chat, alexa,
                                google-assistant, or slack. If not included the value will be null </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="taggedText"> The text example of how end-users may express this task. The sample may contain Field tag
                             blocks. </param>
            <param name="sourceChannel"> The communication channel the sample was captured. It can be: voice, sms, chat, alexa,
                                google-assistant, or slack. If not included the value will be null </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Update(Twilio.Rest.Preview.Understand.Assistant.Task.UpdateSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.UpdateAsync(Twilio.Rest.Preview.Understand.Assistant.Task.UpdateSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Update(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="taggedText"> The text example of how end-users may express this task. The sample may contain Field tag
                             blocks. </param>
            <param name="sourceChannel"> The communication channel the sample was captured. It can be: voice, sms, chat, alexa,
                                google-assistant, or slack. If not included the value will be null </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="language"> An ISO language-country string of the sample. </param>
            <param name="taggedText"> The text example of how end-users may express this task. The sample may contain Field tag
                             blocks. </param>
            <param name="sourceChannel"> The communication channel the sample was captured. It can be: voice, sms, chat, alexa,
                                google-assistant, or slack. If not included the value will be null </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Delete(Twilio.Rest.Preview.Understand.Assistant.Task.DeleteSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.DeleteAsync(Twilio.Rest.Preview.Understand.Assistant.Task.DeleteSampleOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Sample parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathAssistantSid"> The unique ID of the Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Sample. </param>
            <param name="pathSid"> A 34 character string that uniquely identifies this resource. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sample </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SampleResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SampleResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.DateCreated">
            <summary>
            The date that this resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.DateUpdated">
            <summary>
            The date that this resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.TaskSid">
            <summary>
            The unique ID of the Task associated with this Sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Language">
            <summary>
            An ISO language-country string of the sample.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.AssistantSid">
            <summary>
            The unique ID of the Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Sid">
            <summary>
            A 34 character string that uniquely identifies this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.TaggedText">
            <summary>
            The text example of how end-users may express this task. The sample may contain Field tag blocks.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.SampleResource.SourceChannel">
            <summary>
            The communication channel the sample was captured. It can be: voice, sms, chat, alexa, google-assistant, or slack. If not included the value will be null
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskActionsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Returns JSON actions for this Task.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskActionsOptions.PathAssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskActionsOptions.PathTaskSid">
            <summary>
            The unique ID of the Task.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskActionsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskActionsOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskActionsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateTaskActionsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Updates the actions of an Task identified by {TaskSid} or {TaskUniqueName}.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateTaskActionsOptions.PathAssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateTaskActionsOptions.PathTaskSid">
            <summary>
            The unique ID of the Task.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateTaskActionsOptions.Actions">
            <summary>
            The JSON actions that instruct the Assistant how to perform this task.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateTaskActionsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateTaskActionsOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.UpdateTaskActionsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns JSON actions for this Task.
            </summary>
            <param name="options"> Fetch TaskActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns JSON actions for this Task.
            </summary>
            <param name="options"> Fetch TaskActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns JSON actions for this Task.
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns JSON actions for this Task.
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.Update(Twilio.Rest.Preview.Understand.Assistant.Task.UpdateTaskActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the actions of an Task identified by {TaskSid} or {TaskUniqueName}.
            </summary>
            <param name="options"> Update TaskActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.UpdateAsync(Twilio.Rest.Preview.Understand.Assistant.Task.UpdateTaskActionsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the actions of an Task identified by {TaskSid} or {TaskUniqueName}.
            </summary>
            <param name="options"> Update TaskActions parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.Update(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the actions of an Task identified by {TaskSid} or {TaskUniqueName}.
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task. </param>
            <param name="actions"> The JSON actions that instruct the Assistant how to perform this task. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.UpdateAsync(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the actions of an Task identified by {TaskSid} or {TaskUniqueName}.
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task. </param>
            <param name="actions"> The JSON actions that instruct the Assistant how to perform this task. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskActions </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskActionsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskActionsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Field.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.AssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.TaskSid">
            <summary>
            The unique ID of the Task.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.TaskActionsResource.Data">
            <summary>
            The data
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskStatisticsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchTaskStatisticsOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskStatisticsOptions.PathAssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskStatisticsOptions.PathTaskSid">
            <summary>
            The unique ID of the Task associated with this Field.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskStatisticsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskStatisticsOptions
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskStatisticsResource.Fetch(Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskStatisticsResource.FetchAsync(Twilio.Rest.Preview.Understand.Assistant.Task.FetchTaskStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskStatisticsResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskStatisticsResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathAssistantSid"> The unique ID of the parent Assistant. </param>
            <param name="pathTaskSid"> The unique ID of the Task associated with this Field. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Understand.Assistant.Task.TaskStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.TaskStatisticsResource.AccountSid">
            <summary>
            The unique ID of the Account that created this Field.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.TaskStatisticsResource.AssistantSid">
            <summary>
            The unique ID of the parent Assistant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.TaskStatisticsResource.TaskSid">
            <summary>
            The unique ID of the Task associated with this Field.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.TaskStatisticsResource.SamplesCount">
            <summary>
            The total number of Samples associated with this Task.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.TaskStatisticsResource.FieldsCount">
            <summary>
            The total number of Fields associated with this Task.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Understand.Assistant.Task.TaskStatisticsResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.FetchCommandOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchCommandOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.FetchCommandOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.FetchCommandOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCommandOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.FetchCommandOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.ReadCommandOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadCommandOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.ReadCommandOptions.Device">
            <summary>
            The device
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.ReadCommandOptions.Sim">
            <summary>
            The sim
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.ReadCommandOptions.Status">
            <summary>
            The status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.ReadCommandOptions.Direction">
            <summary>
            The direction
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.ReadCommandOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.CreateCommandOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateCommandOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateCommandOptions.Command">
            <summary>
            The command
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateCommandOptions.Device">
            <summary>
            The device
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateCommandOptions.Sim">
            <summary>
            The sim
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateCommandOptions.CallbackMethod">
            <summary>
            The callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateCommandOptions.CallbackUrl">
            <summary>
            The callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateCommandOptions.CommandMode">
            <summary>
            The command_mode
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateCommandOptions.IncludeSid">
            <summary>
            The include_sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CreateCommandOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateCommandOptions
            </summary>
            <param name="command"> The command </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CreateCommandOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.Fetch(Twilio.Rest.Preview.Wireless.FetchCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.FetchAsync(Twilio.Rest.Preview.Wireless.FetchCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.Read(Twilio.Rest.Preview.Wireless.ReadCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.ReadAsync(Twilio.Rest.Preview.Wireless.ReadCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.Read(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="device"> The device </param>
            <param name="sim"> The sim </param>
            <param name="status"> The status </param>
            <param name="direction"> The direction </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.ReadAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="device"> The device </param>
            <param name="sim"> The sim </param>
            <param name="status"> The status </param>
            <param name="direction"> The direction </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Wireless.CommandResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Wireless.CommandResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.Create(Twilio.Rest.Preview.Wireless.CreateCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.CreateAsync(Twilio.Rest.Preview.Wireless.CreateCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.Create(System.String,System.String,System.String,System.String,System.Uri,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="command"> The command </param>
            <param name="device"> The device </param>
            <param name="sim"> The sim </param>
            <param name="callbackMethod"> The callback_method </param>
            <param name="callbackUrl"> The callback_url </param>
            <param name="commandMode"> The command_mode </param>
            <param name="includeSid"> The include_sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.CreateAsync(System.String,System.String,System.String,System.String,System.Uri,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="command"> The command </param>
            <param name="device"> The device </param>
            <param name="sim"> The sim </param>
            <param name="callbackMethod"> The callback_method </param>
            <param name="callbackUrl"> The callback_url </param>
            <param name="commandMode"> The command_mode </param>
            <param name="includeSid"> The include_sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CommandResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CommandResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CommandResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CommandResource.Sid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CommandResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CommandResource.DeviceSid">
            <summary>
            The device_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CommandResource.SimSid">
            <summary>
            The sim_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CommandResource.Command">
            <summary>
            The command
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CommandResource.CommandMode">
            <summary>
            The command_mode
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CommandResource.Status">
            <summary>
            The status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CommandResource.Direction">
            <summary>
            The direction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CommandResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CommandResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CommandResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.ReadRatePlanOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadRatePlanOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.ReadRatePlanOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.FetchRatePlanOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchRatePlanOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.FetchRatePlanOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.FetchRatePlanOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchRatePlanOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.FetchRatePlanOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateRatePlanOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.UniqueName">
            <summary>
            The unique_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.FriendlyName">
            <summary>
            The friendly_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.DataEnabled">
            <summary>
            The data_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.DataLimit">
            <summary>
            The data_limit
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.DataMetering">
            <summary>
            The data_metering
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.MessagingEnabled">
            <summary>
            The messaging_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.VoiceEnabled">
            <summary>
            The voice_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.CommandsEnabled">
            <summary>
            The commands_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.NationalRoamingEnabled">
            <summary>
            The national_roaming_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.InternationalRoaming">
            <summary>
            The international_roaming
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.#ctor">
            <summary>
            Construct a new CreateRatePlanOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.CreateRatePlanOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.UpdateRatePlanOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateRatePlanOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateRatePlanOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateRatePlanOptions.UniqueName">
            <summary>
            The unique_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateRatePlanOptions.FriendlyName">
            <summary>
            The friendly_name
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.UpdateRatePlanOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateRatePlanOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.UpdateRatePlanOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.DeleteRatePlanOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             DeleteRatePlanOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.DeleteRatePlanOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.DeleteRatePlanOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteRatePlanOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.DeleteRatePlanOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.Read(Twilio.Rest.Preview.Wireless.ReadRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.ReadAsync(Twilio.Rest.Preview.Wireless.ReadRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Wireless.RatePlanResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Wireless.RatePlanResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.Fetch(Twilio.Rest.Preview.Wireless.FetchRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.FetchAsync(Twilio.Rest.Preview.Wireless.FetchRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.Create(Twilio.Rest.Preview.Wireless.CreateRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.CreateAsync(Twilio.Rest.Preview.Wireless.CreateRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.Create(System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="uniqueName"> The unique_name </param>
            <param name="friendlyName"> The friendly_name </param>
            <param name="dataEnabled"> The data_enabled </param>
            <param name="dataLimit"> The data_limit </param>
            <param name="dataMetering"> The data_metering </param>
            <param name="messagingEnabled"> The messaging_enabled </param>
            <param name="voiceEnabled"> The voice_enabled </param>
            <param name="commandsEnabled"> The commands_enabled </param>
            <param name="nationalRoamingEnabled"> The national_roaming_enabled </param>
            <param name="internationalRoaming"> The international_roaming </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.CreateAsync(System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Collections.Generic.List{System.String},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="uniqueName"> The unique_name </param>
            <param name="friendlyName"> The friendly_name </param>
            <param name="dataEnabled"> The data_enabled </param>
            <param name="dataLimit"> The data_limit </param>
            <param name="dataMetering"> The data_metering </param>
            <param name="messagingEnabled"> The messaging_enabled </param>
            <param name="voiceEnabled"> The voice_enabled </param>
            <param name="commandsEnabled"> The commands_enabled </param>
            <param name="nationalRoamingEnabled"> The national_roaming_enabled </param>
            <param name="internationalRoaming"> The international_roaming </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.Update(Twilio.Rest.Preview.Wireless.UpdateRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.UpdateAsync(Twilio.Rest.Preview.Wireless.UpdateRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="uniqueName"> The unique_name </param>
            <param name="friendlyName"> The friendly_name </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="uniqueName"> The unique_name </param>
            <param name="friendlyName"> The friendly_name </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.Delete(Twilio.Rest.Preview.Wireless.DeleteRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.DeleteAsync(Twilio.Rest.Preview.Wireless.DeleteRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.RatePlanResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RatePlanResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RatePlanResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.Sid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.UniqueName">
            <summary>
            The unique_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.FriendlyName">
            <summary>
            The friendly_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.DataEnabled">
            <summary>
            The data_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.DataMetering">
            <summary>
            The data_metering
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.DataLimit">
            <summary>
            The data_limit
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.MessagingEnabled">
            <summary>
            The messaging_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.VoiceEnabled">
            <summary>
            The voice_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.NationalRoamingEnabled">
            <summary>
            The national_roaming_enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.InternationalRoaming">
            <summary>
            The international_roaming
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.RatePlanResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.FetchSimOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchSimOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.FetchSimOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.FetchSimOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchSimOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.FetchSimOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.ReadSimOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             ReadSimOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.ReadSimOptions.Status">
            <summary>
            The status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.ReadSimOptions.Iccid">
            <summary>
            The iccid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.ReadSimOptions.RatePlan">
            <summary>
            The rate_plan
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.ReadSimOptions.EId">
            <summary>
            The e_id
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.ReadSimOptions.SimRegistrationCode">
            <summary>
            The sim_registration_code
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.ReadSimOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.UpdateSimOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateSimOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.UniqueName">
            <summary>
            The unique_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.CallbackMethod">
            <summary>
            The callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.CallbackUrl">
            <summary>
            The callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.FriendlyName">
            <summary>
            The friendly_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.RatePlan">
            <summary>
            The rate_plan
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.Status">
            <summary>
            The status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.CommandsCallbackMethod">
            <summary>
            The commands_callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.CommandsCallbackUrl">
            <summary>
            The commands_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.SmsFallbackMethod">
            <summary>
            The sms_fallback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.SmsFallbackUrl">
            <summary>
            The sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.SmsMethod">
            <summary>
            The sms_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.SmsUrl">
            <summary>
            The sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.VoiceFallbackMethod">
            <summary>
            The voice_fallback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.VoiceFallbackUrl">
            <summary>
            The voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.VoiceMethod">
            <summary>
            The voice_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.UpdateSimOptions.VoiceUrl">
            <summary>
            The voice_url
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.UpdateSimOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateSimOptions
            </summary>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.UpdateSimOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.Fetch(Twilio.Rest.Preview.Wireless.FetchSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.FetchAsync(Twilio.Rest.Preview.Wireless.FetchSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.Read(Twilio.Rest.Preview.Wireless.ReadSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.ReadAsync(Twilio.Rest.Preview.Wireless.ReadSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.Read(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="status"> The status </param>
            <param name="iccid"> The iccid </param>
            <param name="ratePlan"> The rate_plan </param>
            <param name="eId"> The e_id </param>
            <param name="simRegistrationCode"> The sim_registration_code </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.ReadAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="status"> The status </param>
            <param name="iccid"> The iccid </param>
            <param name="ratePlan"> The rate_plan </param>
            <param name="eId"> The e_id </param>
            <param name="simRegistrationCode"> The sim_registration_code </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.NextPage(Twilio.Base.Page{Twilio.Rest.Preview.Wireless.SimResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Preview.Wireless.SimResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.Update(Twilio.Rest.Preview.Wireless.UpdateSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.UpdateAsync(Twilio.Rest.Preview.Wireless.UpdateSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.Update(System.String,System.String,System.String,System.Uri,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="uniqueName"> The unique_name </param>
            <param name="callbackMethod"> The callback_method </param>
            <param name="callbackUrl"> The callback_url </param>
            <param name="friendlyName"> The friendly_name </param>
            <param name="ratePlan"> The rate_plan </param>
            <param name="status"> The status </param>
            <param name="commandsCallbackMethod"> The commands_callback_method </param>
            <param name="commandsCallbackUrl"> The commands_callback_url </param>
            <param name="smsFallbackMethod"> The sms_fallback_method </param>
            <param name="smsFallbackUrl"> The sms_fallback_url </param>
            <param name="smsMethod"> The sms_method </param>
            <param name="smsUrl"> The sms_url </param>
            <param name="voiceFallbackMethod"> The voice_fallback_method </param>
            <param name="voiceFallbackUrl"> The voice_fallback_url </param>
            <param name="voiceMethod"> The voice_method </param>
            <param name="voiceUrl"> The voice_url </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.UpdateAsync(System.String,System.String,System.String,System.Uri,System.String,System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The sid </param>
            <param name="uniqueName"> The unique_name </param>
            <param name="callbackMethod"> The callback_method </param>
            <param name="callbackUrl"> The callback_url </param>
            <param name="friendlyName"> The friendly_name </param>
            <param name="ratePlan"> The rate_plan </param>
            <param name="status"> The status </param>
            <param name="commandsCallbackMethod"> The commands_callback_method </param>
            <param name="commandsCallbackUrl"> The commands_callback_url </param>
            <param name="smsFallbackMethod"> The sms_fallback_method </param>
            <param name="smsFallbackUrl"> The sms_fallback_url </param>
            <param name="smsMethod"> The sms_method </param>
            <param name="smsUrl"> The sms_url </param>
            <param name="voiceFallbackMethod"> The voice_fallback_method </param>
            <param name="voiceFallbackUrl"> The voice_fallback_url </param>
            <param name="voiceMethod"> The voice_method </param>
            <param name="voiceUrl"> The voice_url </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.SimResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SimResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SimResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.Sid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.UniqueName">
            <summary>
            The unique_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.RatePlanSid">
            <summary>
            The rate_plan_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.FriendlyName">
            <summary>
            The friendly_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.Iccid">
            <summary>
            The iccid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.EId">
            <summary>
            The e_id
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.Status">
            <summary>
            The status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.CommandsCallbackUrl">
            <summary>
            The commands_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.CommandsCallbackMethod">
            <summary>
            The commands_callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.SmsFallbackMethod">
            <summary>
            The sms_fallback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.SmsFallbackUrl">
            <summary>
            The sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.SmsMethod">
            <summary>
            The sms_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.SmsUrl">
            <summary>
            The sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.VoiceFallbackMethod">
            <summary>
            The voice_fallback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.VoiceFallbackUrl">
            <summary>
            The voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.VoiceMethod">
            <summary>
            The voice_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.VoiceUrl">
            <summary>
            The voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.SimResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="T:Twilio.Rest.Preview.Wireless.Sim.FetchUsageOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchUsageOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.FetchUsageOptions.PathSimSid">
            <summary>
            The sim_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.FetchUsageOptions.End">
            <summary>
            The end
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.FetchUsageOptions.Start">
            <summary>
            The start
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.Sim.FetchUsageOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchUsageOptions
            </summary>
            <param name="pathSimSid"> The sim_sid </param>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.Sim.FetchUsageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.Sim.UsageResource.Fetch(Twilio.Rest.Preview.Wireless.Sim.FetchUsageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Usage parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Usage </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.Sim.UsageResource.FetchAsync(Twilio.Rest.Preview.Wireless.Sim.FetchUsageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Usage parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Usage </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.Sim.UsageResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSimSid"> The sim_sid </param>
            <param name="end"> The end </param>
            <param name="start"> The start </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Usage </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.Sim.UsageResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSimSid"> The sim_sid </param>
            <param name="end"> The end </param>
            <param name="start"> The start </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Usage </returns>
        </member>
        <member name="M:Twilio.Rest.Preview.Wireless.Sim.UsageResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UsageResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UsageResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.UsageResource.SimSid">
            <summary>
            The sim_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.UsageResource.SimUniqueName">
            <summary>
            The sim_unique_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.UsageResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.UsageResource.Period">
            <summary>
            The period
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.UsageResource.CommandsUsage">
            <summary>
            The commands_usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.UsageResource.CommandsCosts">
            <summary>
            The commands_costs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.UsageResource.DataUsage">
            <summary>
            The data_usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.UsageResource.DataCosts">
            <summary>
            The data_costs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Preview.Wireless.Sim.UsageResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="T:Twilio.Rest.Pricing.V1.Messaging.ReadCountryOptions">
            <summary>
            ReadCountryOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.ReadCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Pricing.V1.Messaging.FetchCountryOptions">
            <summary>
            FetchCountryOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Messaging.FetchCountryOptions.PathIsoCountry">
            <summary>
            The ISO country code
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.FetchCountryOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCountryOptions
            </summary>
            <param name="pathIsoCountry"> The ISO country code </param>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.FetchCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.Read(Twilio.Rest.Pricing.V1.Messaging.ReadCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.ReadAsync(Twilio.Rest.Pricing.V1.Messaging.ReadCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.NextPage(Twilio.Base.Page{Twilio.Rest.Pricing.V1.Messaging.CountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Pricing.V1.Messaging.CountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.Fetch(Twilio.Rest.Pricing.V1.Messaging.FetchCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.FetchAsync(Twilio.Rest.Pricing.V1.Messaging.FetchCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathIsoCountry"> The ISO country code </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathIsoCountry"> The ISO country code </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Messaging.CountryResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CountryResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CountryResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Messaging.CountryResource.Country">
            <summary>
            The name of the country
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Messaging.CountryResource.IsoCountry">
            <summary>
            The ISO country code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Messaging.CountryResource.OutboundSmsPrices">
            <summary>
            The list of OutboundSMSPrice records
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Messaging.CountryResource.InboundSmsPrices">
            <summary>
            The list of InboundPrice records
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Messaging.CountryResource.PriceUnit">
            <summary>
            The currency in which prices are measured, in ISO 4127 format (e.g. usd, eur, jpy)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Messaging.CountryResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Pricing.V1.PhoneNumber.ReadCountryOptions">
            <summary>
            ReadCountryOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.ReadCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Pricing.V1.PhoneNumber.FetchCountryOptions">
            <summary>
            FetchCountryOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.PhoneNumber.FetchCountryOptions.PathIsoCountry">
            <summary>
            The ISO country code
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.FetchCountryOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCountryOptions
            </summary>
            <param name="pathIsoCountry"> The ISO country code </param>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.FetchCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.Read(Twilio.Rest.Pricing.V1.PhoneNumber.ReadCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.ReadAsync(Twilio.Rest.Pricing.V1.PhoneNumber.ReadCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.NextPage(Twilio.Base.Page{Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.Fetch(Twilio.Rest.Pricing.V1.PhoneNumber.FetchCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.FetchAsync(Twilio.Rest.Pricing.V1.PhoneNumber.FetchCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathIsoCountry"> The ISO country code </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathIsoCountry"> The ISO country code </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CountryResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CountryResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.Country">
            <summary>
            The name of the country
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.IsoCountry">
            <summary>
            The ISO country code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.PhoneNumberPrices">
            <summary>
            The list of PhoneNumberPrices records
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.PriceUnit">
            <summary>
            The currency in which prices are measured, in ISO 4127 format (e.g. usd, eur, jpy)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.PhoneNumber.CountryResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Pricing.V1.Voice.ReadCountryOptions">
            <summary>
            ReadCountryOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.ReadCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Pricing.V1.Voice.FetchCountryOptions">
            <summary>
            FetchCountryOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.FetchCountryOptions.PathIsoCountry">
            <summary>
            The ISO country code
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.FetchCountryOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCountryOptions
            </summary>
            <param name="pathIsoCountry"> The ISO country code </param>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.FetchCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.Read(Twilio.Rest.Pricing.V1.Voice.ReadCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.ReadAsync(Twilio.Rest.Pricing.V1.Voice.ReadCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.NextPage(Twilio.Base.Page{Twilio.Rest.Pricing.V1.Voice.CountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Pricing.V1.Voice.CountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.Fetch(Twilio.Rest.Pricing.V1.Voice.FetchCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.FetchAsync(Twilio.Rest.Pricing.V1.Voice.FetchCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathIsoCountry"> The ISO country code </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathIsoCountry"> The ISO country code </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.CountryResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CountryResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CountryResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.CountryResource.Country">
            <summary>
            The name of the country
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.CountryResource.IsoCountry">
            <summary>
            The ISO country code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.CountryResource.OutboundPrefixPrices">
            <summary>
            The list of OutboundPrefixPrice records
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.CountryResource.InboundCallPrices">
            <summary>
            The list of InboundCallPrice records
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.CountryResource.PriceUnit">
            <summary>
            The currency in which prices are measured, in ISO 4127 format (e.g. usd, eur, jpy)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.CountryResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Pricing.V1.Voice.FetchNumberOptions">
            <summary>
            FetchNumberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.FetchNumberOptions.PathNumber">
            <summary>
            The phone number to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.FetchNumberOptions.#ctor(Twilio.Types.PhoneNumber)">
            <summary>
            Construct a new FetchNumberOptions
            </summary>
            <param name="pathNumber"> The phone number to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.FetchNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.NumberResource.Fetch(Twilio.Rest.Pricing.V1.Voice.FetchNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Number parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Number </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.NumberResource.FetchAsync(Twilio.Rest.Pricing.V1.Voice.FetchNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Number parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Number </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.NumberResource.Fetch(Twilio.Types.PhoneNumber,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathNumber"> The phone number to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Number </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.NumberResource.FetchAsync(Twilio.Types.PhoneNumber,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathNumber"> The phone number to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Number </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V1.Voice.NumberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a NumberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> NumberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.NumberResource.Number">
            <summary>
            The phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.NumberResource.Country">
            <summary>
            The name of the country
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.NumberResource.IsoCountry">
            <summary>
            The ISO country code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.NumberResource.OutboundCallPrice">
            <summary>
            The OutboundCallPrice record
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.NumberResource.InboundCallPrice">
            <summary>
            The InboundCallPrice record
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.NumberResource.PriceUnit">
            <summary>
            The currency in which prices are measured, in ISO 4127 format (e.g. usd, eur, jpy)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V1.Voice.NumberResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Pricing.V2.Voice.ReadCountryOptions">
            <summary>
            ReadCountryOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.ReadCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Pricing.V2.Voice.FetchCountryOptions">
            <summary>
            Fetch a specific Country.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.FetchCountryOptions.PathIsoCountry">
            <summary>
            The ISO country code of the pricing information to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.FetchCountryOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCountryOptions
            </summary>
            <param name="pathIsoCountry"> The ISO country code of the pricing information to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.FetchCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.Read(Twilio.Rest.Pricing.V2.Voice.ReadCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.ReadAsync(Twilio.Rest.Pricing.V2.Voice.ReadCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.NextPage(Twilio.Base.Page{Twilio.Rest.Pricing.V2.Voice.CountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Pricing.V2.Voice.CountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.Fetch(Twilio.Rest.Pricing.V2.Voice.FetchCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Country.
            </summary>
            <param name="options"> Fetch Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.FetchAsync(Twilio.Rest.Pricing.V2.Voice.FetchCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Country.
            </summary>
            <param name="options"> Fetch Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Country.
            </summary>
            <param name="pathIsoCountry"> The ISO country code of the pricing information to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Country.
            </summary>
            <param name="pathIsoCountry"> The ISO country code of the pricing information to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.CountryResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CountryResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CountryResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.CountryResource.Country">
            <summary>
            The name of the country
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.CountryResource.IsoCountry">
            <summary>
            The ISO country code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.CountryResource.OutboundPrefixPrices">
            <summary>
            The list of OutboundPrefixPriceWithOrigin records
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.CountryResource.InboundCallPrices">
            <summary>
            The list of InboundCallPrice records
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.CountryResource.PriceUnit">
            <summary>
            The currency in which prices are measured, in ISO 4127 format (e.g. usd, eur, jpy)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.CountryResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Pricing.V2.Voice.FetchNumberOptions">
            <summary>
            Fetch pricing information for a specific destination and, optionally, origination phone number.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.FetchNumberOptions.PathDestinationNumber">
            <summary>
            The destination number for which to fetch pricing information
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.FetchNumberOptions.OriginationNumber">
            <summary>
            The origination number for which to fetch pricing information
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.FetchNumberOptions.#ctor(Twilio.Types.PhoneNumber)">
            <summary>
            Construct a new FetchNumberOptions
            </summary>
            <param name="pathDestinationNumber"> The destination number for which to fetch pricing information </param>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.FetchNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.NumberResource.Fetch(Twilio.Rest.Pricing.V2.Voice.FetchNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch pricing information for a specific destination and, optionally, origination phone number.
            </summary>
            <param name="options"> Fetch Number parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Number </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.NumberResource.FetchAsync(Twilio.Rest.Pricing.V2.Voice.FetchNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch pricing information for a specific destination and, optionally, origination phone number.
            </summary>
            <param name="options"> Fetch Number parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Number </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.NumberResource.Fetch(Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch pricing information for a specific destination and, optionally, origination phone number.
            </summary>
            <param name="pathDestinationNumber"> The destination number for which to fetch pricing information </param>
            <param name="originationNumber"> The origination number for which to fetch pricing information </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Number </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.NumberResource.FetchAsync(Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch pricing information for a specific destination and, optionally, origination phone number.
            </summary>
            <param name="pathDestinationNumber"> The destination number for which to fetch pricing information </param>
            <param name="originationNumber"> The origination number for which to fetch pricing information </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Number </returns>
        </member>
        <member name="M:Twilio.Rest.Pricing.V2.Voice.NumberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a NumberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> NumberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.NumberResource.DestinationNumber">
            <summary>
            The destination phone number, in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.NumberResource.OriginationNumber">
            <summary>
            The origination phone number, in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.NumberResource.Country">
            <summary>
            The name of the country
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.NumberResource.IsoCountry">
            <summary>
            The ISO country code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.NumberResource.OutboundCallPrices">
            <summary>
            The list of OutboundCallPriceWithOrigin records
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.NumberResource.InboundCallPrice">
            <summary>
            The InboundCallPrice record
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.NumberResource.PriceUnit">
            <summary>
            The currency in which prices are measured, in ISO 4127 format (e.g. usd, eur, jpy)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Pricing.V2.Voice.NumberResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.FetchServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.FetchServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.ReadServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Services for Twilio Proxy. A maximum of 100 records will be returned per page.
             </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.CreateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Create a new Service for Twilio Proxy
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.CreateServiceOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.CreateServiceOptions.DefaultTtl">
            <summary>
            Default TTL for a Session, in seconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.CreateServiceOptions.CallbackUrl">
            <summary>
            The URL we should call when the interaction status changes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.CreateServiceOptions.GeoMatchLevel">
            <summary>
            Where a proxy number must be located relative to the participant identifier
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.CreateServiceOptions.NumberSelectionBehavior">
            <summary>
            The preference for Proxy Number selection for the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.CreateServiceOptions.InterceptCallbackUrl">
            <summary>
            The URL we call on each interaction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.CreateServiceOptions.OutOfSessionCallbackUrl">
            <summary>
            The URL we call when an inbound call or SMS action occurs on a closed or non-existent Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.CreateServiceOptions.ChatInstanceSid">
            <summary>
            The SID of the Chat Service Instance
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.CreateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateServiceOptions
            </summary>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.DeleteServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.DeleteServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.UpdateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update a specific Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.UpdateServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.UpdateServiceOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.UpdateServiceOptions.DefaultTtl">
            <summary>
            Default TTL for a Session, in seconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.UpdateServiceOptions.CallbackUrl">
            <summary>
            The URL we should call when the interaction status changes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.UpdateServiceOptions.GeoMatchLevel">
            <summary>
            Where a proxy number must be located relative to the participant identifier
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.UpdateServiceOptions.NumberSelectionBehavior">
            <summary>
            The preference for Proxy Number selection for the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.UpdateServiceOptions.InterceptCallbackUrl">
            <summary>
            The URL we call on each interaction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.UpdateServiceOptions.OutOfSessionCallbackUrl">
            <summary>
            The URL we call when an inbound call or SMS action occurs on a closed or non-existent Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.UpdateServiceOptions.ChatInstanceSid">
            <summary>
            The SID of the Chat Service Instance
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.Fetch(Twilio.Rest.Proxy.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Service.
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.FetchAsync(Twilio.Rest.Proxy.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Service.
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Service.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Service.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.Read(Twilio.Rest.Proxy.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services for Twilio Proxy. A maximum of 100 records will be returned per page.
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.ReadAsync(Twilio.Rest.Proxy.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services for Twilio Proxy. A maximum of 100 records will be returned per page.
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services for Twilio Proxy. A maximum of 100 records will be returned per page.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services for Twilio Proxy. A maximum of 100 records will be returned per page.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.Create(Twilio.Rest.Proxy.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service for Twilio Proxy
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.CreateAsync(Twilio.Rest.Proxy.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service for Twilio Proxy
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.Create(System.String,System.Nullable{System.Int32},System.Uri,Twilio.Rest.Proxy.V1.ServiceResource.GeoMatchLevelEnum,Twilio.Rest.Proxy.V1.ServiceResource.NumberSelectionBehaviorEnum,System.Uri,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service for Twilio Proxy
            </summary>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="defaultTtl"> Default TTL for a Session, in seconds </param>
            <param name="callbackUrl"> The URL we should call when the interaction status changes </param>
            <param name="geoMatchLevel"> Where a proxy number must be located relative to the participant identifier </param>
            <param name="numberSelectionBehavior"> The preference for Proxy Number selection for the Service instance </param>
            <param name="interceptCallbackUrl"> The URL we call on each interaction </param>
            <param name="outOfSessionCallbackUrl"> The URL we call when an inbound call or SMS action occurs on a closed or
                                          non-existent Session </param>
            <param name="chatInstanceSid"> The SID of the Chat Service Instance </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.CreateAsync(System.String,System.Nullable{System.Int32},System.Uri,Twilio.Rest.Proxy.V1.ServiceResource.GeoMatchLevelEnum,Twilio.Rest.Proxy.V1.ServiceResource.NumberSelectionBehaviorEnum,System.Uri,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service for Twilio Proxy
            </summary>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="defaultTtl"> Default TTL for a Session, in seconds </param>
            <param name="callbackUrl"> The URL we should call when the interaction status changes </param>
            <param name="geoMatchLevel"> Where a proxy number must be located relative to the participant identifier </param>
            <param name="numberSelectionBehavior"> The preference for Proxy Number selection for the Service instance </param>
            <param name="interceptCallbackUrl"> The URL we call on each interaction </param>
            <param name="outOfSessionCallbackUrl"> The URL we call when an inbound call or SMS action occurs on a closed or
                                          non-existent Session </param>
            <param name="chatInstanceSid"> The SID of the Chat Service Instance </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.Delete(Twilio.Rest.Proxy.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Service.
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.DeleteAsync(Twilio.Rest.Proxy.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Service.
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Service.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Service.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.Update(Twilio.Rest.Proxy.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service.
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.UpdateAsync(Twilio.Rest.Proxy.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service.
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.Update(System.String,System.String,System.Nullable{System.Int32},System.Uri,Twilio.Rest.Proxy.V1.ServiceResource.GeoMatchLevelEnum,Twilio.Rest.Proxy.V1.ServiceResource.NumberSelectionBehaviorEnum,System.Uri,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="defaultTtl"> Default TTL for a Session, in seconds </param>
            <param name="callbackUrl"> The URL we should call when the interaction status changes </param>
            <param name="geoMatchLevel"> Where a proxy number must be located relative to the participant identifier </param>
            <param name="numberSelectionBehavior"> The preference for Proxy Number selection for the Service instance </param>
            <param name="interceptCallbackUrl"> The URL we call on each interaction </param>
            <param name="outOfSessionCallbackUrl"> The URL we call when an inbound call or SMS action occurs on a closed or
                                          non-existent Session </param>
            <param name="chatInstanceSid"> The SID of the Chat Service Instance </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.UpdateAsync(System.String,System.String,System.Nullable{System.Int32},System.Uri,Twilio.Rest.Proxy.V1.ServiceResource.GeoMatchLevelEnum,Twilio.Rest.Proxy.V1.ServiceResource.NumberSelectionBehaviorEnum,System.Uri,System.Uri,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="defaultTtl"> Default TTL for a Session, in seconds </param>
            <param name="callbackUrl"> The URL we should call when the interaction status changes </param>
            <param name="geoMatchLevel"> Where a proxy number must be located relative to the participant identifier </param>
            <param name="numberSelectionBehavior"> The preference for Proxy Number selection for the Service instance </param>
            <param name="interceptCallbackUrl"> The URL we call on each interaction </param>
            <param name="outOfSessionCallbackUrl"> The URL we call when an inbound call or SMS action occurs on a closed or
                                          non-existent Session </param>
            <param name="chatInstanceSid"> The SID of the Chat Service Instance </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.ChatInstanceSid">
            <summary>
            The SID of the Chat Service Instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.CallbackUrl">
            <summary>
            The URL we call when the interaction status changes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.DefaultTtl">
            <summary>
            Default TTL for a Session, in seconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.NumberSelectionBehavior">
            <summary>
            The preference for Proxy Number selection for the Service instance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.GeoMatchLevel">
            <summary>
            Where a proxy number must be located relative to the participant identifier
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.InterceptCallbackUrl">
            <summary>
            The URL we call on each interaction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.OutOfSessionCallbackUrl">
            <summary>
            The URL we call when an inbound call or SMS action occurs on a closed or non-existent Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.Url">
            <summary>
            The absolute URL of the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.ServiceResource.Links">
            <summary>
            The URLs of resources related to the Service
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.CreatePhoneNumberOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Add a Phone Number to a Service's Proxy Number Pool.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreatePhoneNumberOptions.PathServiceSid">
            <summary>
            The SID of the resource's parent Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreatePhoneNumberOptions.Sid">
            <summary>
            The SID of a Twilio IncomingPhoneNumber resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreatePhoneNumberOptions.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreatePhoneNumberOptions.IsReserved">
            <summary>
            Whether the new phone number should be reserved
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.CreatePhoneNumberOptions.#ctor(System.String)">
            <summary>
            Construct a new CreatePhoneNumberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the resource's parent Service </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.CreatePhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.DeletePhoneNumberOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Phone Number from a Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.DeletePhoneNumberOptions.PathServiceSid">
            <summary>
            The SID of the parent Service resource of the PhoneNumber resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.DeletePhoneNumberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.DeletePhoneNumberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeletePhoneNumberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.DeletePhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.ReadPhoneNumberOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Phone Numbers in the Proxy Number Pool for a Service. A maximum of 100 records will be
             returned per page.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ReadPhoneNumberOptions.PathServiceSid">
            <summary>
            The SID of the parent Service resource of the PhoneNumber resource to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ReadPhoneNumberOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadPhoneNumberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to read </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ReadPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.FetchPhoneNumberOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Phone Number.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.FetchPhoneNumberOptions.PathServiceSid">
            <summary>
            The SID of the parent Service resource of the PhoneNumber resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.FetchPhoneNumberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.FetchPhoneNumberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchPhoneNumberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.FetchPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.UpdatePhoneNumberOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update a specific Proxy Number.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.UpdatePhoneNumberOptions.PathServiceSid">
            <summary>
            The SID of the parent Service resource of the PhoneNumber resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.UpdatePhoneNumberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.UpdatePhoneNumberOptions.IsReserved">
            <summary>
            Whether the new phone number should be reserved
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.UpdatePhoneNumberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdatePhoneNumberOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.UpdatePhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Create(Twilio.Rest.Proxy.V1.Service.CreatePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a Phone Number to a Service's Proxy Number Pool.
            </summary>
            <param name="options"> Create PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.CreateAsync(Twilio.Rest.Proxy.V1.Service.CreatePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a Phone Number to a Service's Proxy Number Pool.
            </summary>
            <param name="options"> Create PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Create(System.String,System.String,Twilio.Types.PhoneNumber,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a Phone Number to a Service's Proxy Number Pool.
            </summary>
            <param name="pathServiceSid"> The SID of the resource's parent Service </param>
            <param name="sid"> The SID of a Twilio IncomingPhoneNumber resource </param>
            <param name="phoneNumber"> The phone number in E.164 format </param>
            <param name="isReserved"> Whether the new phone number should be reserved </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.CreateAsync(System.String,System.String,Twilio.Types.PhoneNumber,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a Phone Number to a Service's Proxy Number Pool.
            </summary>
            <param name="pathServiceSid"> The SID of the resource's parent Service </param>
            <param name="sid"> The SID of a Twilio IncomingPhoneNumber resource </param>
            <param name="phoneNumber"> The phone number in E.164 format </param>
            <param name="isReserved"> Whether the new phone number should be reserved </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Delete(Twilio.Rest.Proxy.V1.Service.DeletePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Phone Number from a Service.
            </summary>
            <param name="options"> Delete PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.DeleteAsync(Twilio.Rest.Proxy.V1.Service.DeletePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Phone Number from a Service.
            </summary>
            <param name="options"> Delete PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Phone Number from a Service.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Phone Number from a Service.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Read(Twilio.Rest.Proxy.V1.Service.ReadPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Numbers in the Proxy Number Pool for a Service. A maximum of 100 records will be
            returned per page.
            </summary>
            <param name="options"> Read PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.ReadAsync(Twilio.Rest.Proxy.V1.Service.ReadPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Numbers in the Proxy Number Pool for a Service. A maximum of 100 records will be
            returned per page.
            </summary>
            <param name="options"> Read PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Numbers in the Proxy Number Pool for a Service. A maximum of 100 records will be
            returned per page.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Numbers in the Proxy Number Pool for a Service. A maximum of 100 records will be
            returned per page.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.NextPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.PhoneNumberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.PhoneNumberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Fetch(Twilio.Rest.Proxy.V1.Service.FetchPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Phone Number.
            </summary>
            <param name="options"> Fetch PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.FetchAsync(Twilio.Rest.Proxy.V1.Service.FetchPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Phone Number.
            </summary>
            <param name="options"> Fetch PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Phone Number.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Phone Number.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Update(Twilio.Rest.Proxy.V1.Service.UpdatePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Proxy Number.
            </summary>
            <param name="options"> Update PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.UpdateAsync(Twilio.Rest.Proxy.V1.Service.UpdatePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Proxy Number.
            </summary>
            <param name="options"> Update PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Update(System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Proxy Number.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="isReserved"> Whether the new phone number should be reserved </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.UpdateAsync(System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Proxy Number.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource of the PhoneNumber resource to update </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="isReserved"> Whether the new phone number should be reserved </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a PhoneNumberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> PhoneNumberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.ServiceSid">
            <summary>
            The SID of the PhoneNumber resource's parent Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.IsoCountry">
            <summary>
            The ISO Country Code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Capabilities">
            <summary>
            The capabilities of the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.Url">
            <summary>
            The absolute URL of the PhoneNumber resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.IsReserved">
            <summary>
            Reserve the phone number for manual assignment to participants only
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.PhoneNumberResource.InUse">
            <summary>
            The number of open session assigned to the number.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.FetchSessionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Session.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.FetchSessionOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.FetchSessionOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.FetchSessionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchSessionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.FetchSessionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.ReadSessionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Sessions for the Service. A maximum of 100 records will be returned per page.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ReadSessionOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ReadSessionOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadSessionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ReadSessionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.CreateSessionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Create a new Session
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreateSessionOptions.PathServiceSid">
            <summary>
            The SID of the parent Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreateSessionOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreateSessionOptions.DateExpiry">
            <summary>
            The ISO 8601 date when the Session should expire
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreateSessionOptions.Ttl">
            <summary>
            When the session will expire
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreateSessionOptions.Mode">
            <summary>
            The Mode of the Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreateSessionOptions.Status">
            <summary>
            Session status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreateSessionOptions.Participants">
            <summary>
            The Participant objects to include in the new session
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.CreateSessionOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateSessionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.CreateSessionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.DeleteSessionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Session.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.DeleteSessionOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.DeleteSessionOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.DeleteSessionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteSessionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.DeleteSessionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.UpdateSessionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update a specific Session.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.UpdateSessionOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.UpdateSessionOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.UpdateSessionOptions.DateExpiry">
            <summary>
            The ISO 8601 date when the Session should expire
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.UpdateSessionOptions.Ttl">
            <summary>
            When the session will expire
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.UpdateSessionOptions.Status">
            <summary>
            The new status of the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.UpdateSessionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateSessionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.UpdateSessionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.Fetch(Twilio.Rest.Proxy.V1.Service.FetchSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Session.
            </summary>
            <param name="options"> Fetch Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.FetchAsync(Twilio.Rest.Proxy.V1.Service.FetchSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Session.
            </summary>
            <param name="options"> Fetch Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Session.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Session.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.Read(Twilio.Rest.Proxy.V1.Service.ReadSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Sessions for the Service. A maximum of 100 records will be returned per page.
            </summary>
            <param name="options"> Read Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.ReadAsync(Twilio.Rest.Proxy.V1.Service.ReadSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Sessions for the Service. A maximum of 100 records will be returned per page.
            </summary>
            <param name="options"> Read Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Sessions for the Service. A maximum of 100 records will be returned per page.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Sessions for the Service. A maximum of 100 records will be returned per page.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.SessionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.SessionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.Create(Twilio.Rest.Proxy.V1.Service.CreateSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Session
            </summary>
            <param name="options"> Create Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.CreateAsync(Twilio.Rest.Proxy.V1.Service.CreateSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Session
            </summary>
            <param name="options"> Create Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.Create(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},Twilio.Rest.Proxy.V1.Service.SessionResource.ModeEnum,Twilio.Rest.Proxy.V1.Service.SessionResource.StatusEnum,System.Collections.Generic.List{System.Object},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Session
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="dateExpiry"> The ISO 8601 date when the Session should expire </param>
            <param name="ttl"> When the session will expire </param>
            <param name="mode"> The Mode of the Session </param>
            <param name="status"> Session status </param>
            <param name="participants"> The Participant objects to include in the new session </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.CreateAsync(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},Twilio.Rest.Proxy.V1.Service.SessionResource.ModeEnum,Twilio.Rest.Proxy.V1.Service.SessionResource.StatusEnum,System.Collections.Generic.List{System.Object},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Session
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="dateExpiry"> The ISO 8601 date when the Session should expire </param>
            <param name="ttl"> When the session will expire </param>
            <param name="mode"> The Mode of the Session </param>
            <param name="status"> Session status </param>
            <param name="participants"> The Participant objects to include in the new session </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.Delete(Twilio.Rest.Proxy.V1.Service.DeleteSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Session.
            </summary>
            <param name="options"> Delete Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.DeleteAsync(Twilio.Rest.Proxy.V1.Service.DeleteSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Session.
            </summary>
            <param name="options"> Delete Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Session.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Session.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.Update(Twilio.Rest.Proxy.V1.Service.UpdateSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Session.
            </summary>
            <param name="options"> Update Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.UpdateAsync(Twilio.Rest.Proxy.V1.Service.UpdateSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Session.
            </summary>
            <param name="options"> Update Session parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.Update(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},Twilio.Rest.Proxy.V1.Service.SessionResource.StatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Session.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="dateExpiry"> The ISO 8601 date when the Session should expire </param>
            <param name="ttl"> When the session will expire </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.UpdateAsync(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},Twilio.Rest.Proxy.V1.Service.SessionResource.StatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Session.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="dateExpiry"> The ISO 8601 date when the Session should expire </param>
            <param name="ttl"> When the session will expire </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Session </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.SessionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SessionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SessionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.ServiceSid">
            <summary>
            The SID of the resource's parent Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.DateStarted">
            <summary>
            The ISO 8601 date when the Session started
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.DateEnded">
            <summary>
            The ISO 8601 date when the Session ended
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.DateLastInteraction">
            <summary>
            The ISO 8601 date when the Session last had an interaction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.DateExpiry">
            <summary>
            The ISO 8601 date when the Session should expire
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.Status">
            <summary>
            The status of the Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.ClosedReason">
            <summary>
            The reason the Session ended
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.Ttl">
            <summary>
            When the session will expire
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.Mode">
            <summary>
            The Mode of the Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.Url">
            <summary>
            The absolute URL of the Session resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.SessionResource.Links">
            <summary>
            The URLs of resources related to the Session
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.Session.FetchInteractionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of Interactions for a given [Session](https://www.twilio.com/docs/proxy/api/session).
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.FetchInteractionOptions.PathServiceSid">
            <summary>
            The SID of the parent Service of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.FetchInteractionOptions.PathSessionSid">
            <summary>
            he SID of the parent Session of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.FetchInteractionOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.FetchInteractionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchInteractionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to fetch </param>
            <param name="pathSessionSid"> he SID of the parent Session of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.FetchInteractionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.Session.ReadInteractionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Interactions for a Session. A maximum of 100 records will be returned per page.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ReadInteractionOptions.PathServiceSid">
            <summary>
            The SID of the parent Service to read the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ReadInteractionOptions.PathSessionSid">
            <summary>
            The SID of the parent Session to read the resource from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ReadInteractionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadInteractionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to read the resource from </param>
            <param name="pathSessionSid"> The SID of the parent Session to read the resource from </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ReadInteractionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.Session.DeleteInteractionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Interaction.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.DeleteInteractionOptions.PathServiceSid">
            <summary>
            The SID of the parent Service of the resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.DeleteInteractionOptions.PathSessionSid">
            <summary>
            he SID of the parent Session of the resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.DeleteInteractionOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.DeleteInteractionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteInteractionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to delete </param>
            <param name="pathSessionSid"> he SID of the parent Session of the resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.DeleteInteractionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.Fetch(Twilio.Rest.Proxy.V1.Service.Session.FetchInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Interactions for a given [Session](https://www.twilio.com/docs/proxy/api/session).
            </summary>
            <param name="options"> Fetch Interaction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.FetchAsync(Twilio.Rest.Proxy.V1.Service.Session.FetchInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Interactions for a given [Session](https://www.twilio.com/docs/proxy/api/session).
            </summary>
            <param name="options"> Fetch Interaction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Interactions for a given [Session](https://www.twilio.com/docs/proxy/api/session).
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to fetch </param>
            <param name="pathSessionSid"> he SID of the parent Session of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Interactions for a given [Session](https://www.twilio.com/docs/proxy/api/session).
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to fetch </param>
            <param name="pathSessionSid"> he SID of the parent Session of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.Read(Twilio.Rest.Proxy.V1.Service.Session.ReadInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Interactions for a Session. A maximum of 100 records will be returned per page.
            </summary>
            <param name="options"> Read Interaction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.ReadAsync(Twilio.Rest.Proxy.V1.Service.Session.ReadInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Interactions for a Session. A maximum of 100 records will be returned per page.
            </summary>
            <param name="options"> Read Interaction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Interactions for a Session. A maximum of 100 records will be returned per page.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to read the resource from </param>
            <param name="pathSessionSid"> The SID of the parent Session to read the resource from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Interactions for a Session. A maximum of 100 records will be returned per page.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to read the resource from </param>
            <param name="pathSessionSid"> The SID of the parent Session to read the resource from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.Session.InteractionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.Session.InteractionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.Delete(Twilio.Rest.Proxy.V1.Service.Session.DeleteInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Interaction.
            </summary>
            <param name="options"> Delete Interaction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.DeleteAsync(Twilio.Rest.Proxy.V1.Service.Session.DeleteInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Interaction.
            </summary>
            <param name="options"> Delete Interaction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Interaction.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to delete </param>
            <param name="pathSessionSid"> he SID of the parent Session of the resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Interaction.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to delete </param>
            <param name="pathSessionSid"> he SID of the parent Session of the resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Interaction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a InteractionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> InteractionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.SessionSid">
            <summary>
            The SID of the resource's parent Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.ServiceSid">
            <summary>
            The SID of the resource's parent Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.Data">
            <summary>
            A JSON string that includes the message body of message interactions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.Type">
            <summary>
            The Type of the Interaction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.InboundParticipantSid">
            <summary>
            The SID of the inbound Participant resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.InboundResourceSid">
            <summary>
            The SID of the inbound resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.InboundResourceStatus">
            <summary>
            The inbound resource status of the Interaction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.InboundResourceType">
            <summary>
            The inbound resource type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.InboundResourceUrl">
            <summary>
            The URL of the Twilio inbound resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.OutboundParticipantSid">
            <summary>
            The SID of the outbound Participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.OutboundResourceSid">
            <summary>
            The SID of the outbound resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.OutboundResourceStatus">
            <summary>
            The outbound resource status of the Interaction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.OutboundResourceType">
            <summary>
            The outbound resource type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.OutboundResourceUrl">
            <summary>
            The URL of the Twilio outbound resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Interaction was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.InteractionResource.Url">
            <summary>
            The absolute URL of the Interaction resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.Session.FetchParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Participant.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.FetchParticipantOptions.PathServiceSid">
            <summary>
            The SID of the parent Service of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.FetchParticipantOptions.PathSessionSid">
            <summary>
            The SID of the parent Session of the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.FetchParticipantOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.FetchParticipantOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchParticipantOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to fetch </param>
            <param name="pathSessionSid"> The SID of the parent Session of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.FetchParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.Session.ReadParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Participants in a Session.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ReadParticipantOptions.PathServiceSid">
            <summary>
            The SID of the parent Service of the resource to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ReadParticipantOptions.PathSessionSid">
            <summary>
            The SID of the parent Session of the resource to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ReadParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadParticipantOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to read </param>
            <param name="pathSessionSid"> The SID of the parent Session of the resource to read </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ReadParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.Session.CreateParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Add a new Participant to the Session
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.CreateParticipantOptions.PathServiceSid">
            <summary>
            The SID of the parent Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.CreateParticipantOptions.PathSessionSid">
            <summary>
            The SID of the parent Session resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.CreateParticipantOptions.Identifier">
            <summary>
            The phone number of the Participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.CreateParticipantOptions.FriendlyName">
            <summary>
            The string that you assigned to describe the participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.CreateParticipantOptions.ProxyIdentifier">
            <summary>
            The proxy phone number to use for the Participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.CreateParticipantOptions.ProxyIdentifierSid">
            <summary>
            The Proxy Identifier Sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.CreateParticipantOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateParticipantOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
            <param name="pathSessionSid"> The SID of the parent Session resource </param>
            <param name="identifier"> The phone number of the Participant </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.CreateParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.Session.DeleteParticipantOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Participant. This is a soft-delete. The participant remains associated with the session and cannot
             be re-added. Participants are only permanently deleted when the
             [Session](https://www.twilio.com/docs/proxy/api/session) is deleted.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.DeleteParticipantOptions.PathServiceSid">
            <summary>
            The SID of the parent Service of the resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.DeleteParticipantOptions.PathSessionSid">
            <summary>
            The SID of the parent Session of the resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.DeleteParticipantOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.DeleteParticipantOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteParticipantOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to delete </param>
            <param name="pathSessionSid"> The SID of the parent Session of the resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.DeleteParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Fetch(Twilio.Rest.Proxy.V1.Service.Session.FetchParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Participant.
            </summary>
            <param name="options"> Fetch Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.FetchAsync(Twilio.Rest.Proxy.V1.Service.Session.FetchParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Participant.
            </summary>
            <param name="options"> Fetch Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Participant.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to fetch </param>
            <param name="pathSessionSid"> The SID of the parent Session of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Participant.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to fetch </param>
            <param name="pathSessionSid"> The SID of the parent Session of the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Read(Twilio.Rest.Proxy.V1.Service.Session.ReadParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Participants in a Session.
            </summary>
            <param name="options"> Read Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.ReadAsync(Twilio.Rest.Proxy.V1.Service.Session.ReadParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Participants in a Session.
            </summary>
            <param name="options"> Read Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Participants in a Session.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to read </param>
            <param name="pathSessionSid"> The SID of the parent Session of the resource to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Participants in a Session.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to read </param>
            <param name="pathSessionSid"> The SID of the parent Session of the resource to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.NextPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Create(Twilio.Rest.Proxy.V1.Service.Session.CreateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a new Participant to the Session
            </summary>
            <param name="options"> Create Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.CreateAsync(Twilio.Rest.Proxy.V1.Service.Session.CreateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a new Participant to the Session
            </summary>
            <param name="options"> Create Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Create(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a new Participant to the Session
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
            <param name="pathSessionSid"> The SID of the parent Session resource </param>
            <param name="identifier"> The phone number of the Participant </param>
            <param name="friendlyName"> The string that you assigned to describe the participant </param>
            <param name="proxyIdentifier"> The proxy phone number to use for the Participant </param>
            <param name="proxyIdentifierSid"> The Proxy Identifier Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a new Participant to the Session
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
            <param name="pathSessionSid"> The SID of the parent Session resource </param>
            <param name="identifier"> The phone number of the Participant </param>
            <param name="friendlyName"> The string that you assigned to describe the participant </param>
            <param name="proxyIdentifier"> The proxy phone number to use for the Participant </param>
            <param name="proxyIdentifierSid"> The Proxy Identifier Sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Delete(Twilio.Rest.Proxy.V1.Service.Session.DeleteParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Participant. This is a soft-delete. The participant remains associated with the session and cannot
            be re-added. Participants are only permanently deleted when the
            [Session](https://www.twilio.com/docs/proxy/api/session) is deleted.
            </summary>
            <param name="options"> Delete Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.DeleteAsync(Twilio.Rest.Proxy.V1.Service.Session.DeleteParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Participant. This is a soft-delete. The participant remains associated with the session and cannot
            be re-added. Participants are only permanently deleted when the
            [Session](https://www.twilio.com/docs/proxy/api/session) is deleted.
            </summary>
            <param name="options"> Delete Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Participant. This is a soft-delete. The participant remains associated with the session and cannot
            be re-added. Participants are only permanently deleted when the
            [Session](https://www.twilio.com/docs/proxy/api/session) is deleted.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to delete </param>
            <param name="pathSessionSid"> The SID of the parent Session of the resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Participant. This is a soft-delete. The participant remains associated with the session and cannot
            be re-added. Participants are only permanently deleted when the
            [Session](https://www.twilio.com/docs/proxy/api/session) is deleted.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service of the resource to delete </param>
            <param name="pathSessionSid"> The SID of the parent Session of the resource to delete </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ParticipantResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ParticipantResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.SessionSid">
            <summary>
            The SID of the resource's parent Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.ServiceSid">
            <summary>
            The SID of the resource's parent Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.FriendlyName">
            <summary>
            The string that you assigned to describe the participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Identifier">
            <summary>
            The phone number of the Participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.ProxyIdentifier">
            <summary>
            The phone number or short code of the participant's partner
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.ProxyIdentifierSid">
            <summary>
            The SID of the Proxy Identifier assigned to the Participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.DateDeleted">
            <summary>
            The ISO 8601 date the Participant was removed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Url">
            <summary>
            The absolute URL of the Participant resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.ParticipantResource.Links">
            <summary>
            The URLs to resources related the participant
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.Session.Participant.CreateMessageInteractionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Create a new message Interaction to send directly from your system to one
             [Participant](https://www.twilio.com/docs/proxy/api/participant).  The `inbound` properties for the Interaction will
             always be empty.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.CreateMessageInteractionOptions.PathServiceSid">
            <summary>
            The SID of the parent Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.CreateMessageInteractionOptions.PathSessionSid">
            <summary>
            The SID of the parent Session resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.CreateMessageInteractionOptions.PathParticipantSid">
            <summary>
            The SID of the Participant resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.CreateMessageInteractionOptions.Body">
            <summary>
            Message body
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.CreateMessageInteractionOptions.MediaUrl">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.CreateMessageInteractionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateMessageInteractionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
            <param name="pathSessionSid"> The SID of the parent Session resource </param>
            <param name="pathParticipantSid"> The SID of the Participant resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.CreateMessageInteractionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.Session.Participant.FetchMessageInteractionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchMessageInteractionOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.FetchMessageInteractionOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.FetchMessageInteractionOptions.PathSessionSid">
            <summary>
            The SID of the parent Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.FetchMessageInteractionOptions.PathParticipantSid">
            <summary>
            The SID of the Participant resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.FetchMessageInteractionOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.FetchMessageInteractionOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new FetchMessageInteractionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSessionSid"> The SID of the parent Session </param>
            <param name="pathParticipantSid"> The SID of the Participant resource </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.FetchMessageInteractionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.Session.Participant.ReadMessageInteractionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadMessageInteractionOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.ReadMessageInteractionOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.ReadMessageInteractionOptions.PathSessionSid">
            <summary>
            The SID of the parent Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.ReadMessageInteractionOptions.PathParticipantSid">
            <summary>
            The SID of the Participant resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.ReadMessageInteractionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new ReadMessageInteractionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
            <param name="pathSessionSid"> The SID of the parent Session </param>
            <param name="pathParticipantSid"> The SID of the Participant resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.ReadMessageInteractionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.Create(Twilio.Rest.Proxy.V1.Service.Session.Participant.CreateMessageInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new message Interaction to send directly from your system to one
            [Participant](https://www.twilio.com/docs/proxy/api/participant).  The `inbound` properties for the Interaction will
            always be empty.
            </summary>
            <param name="options"> Create MessageInteraction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.CreateAsync(Twilio.Rest.Proxy.V1.Service.Session.Participant.CreateMessageInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new message Interaction to send directly from your system to one
            [Participant](https://www.twilio.com/docs/proxy/api/participant).  The `inbound` properties for the Interaction will
            always be empty.
            </summary>
            <param name="options"> Create MessageInteraction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.Create(System.String,System.String,System.String,System.String,System.Collections.Generic.List{System.Uri},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new message Interaction to send directly from your system to one
            [Participant](https://www.twilio.com/docs/proxy/api/participant).  The `inbound` properties for the Interaction will
            always be empty.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
            <param name="pathSessionSid"> The SID of the parent Session resource </param>
            <param name="pathParticipantSid"> The SID of the Participant resource </param>
            <param name="body"> Message body </param>
            <param name="mediaUrl"> Reserved </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.CreateAsync(System.String,System.String,System.String,System.String,System.Collections.Generic.List{System.Uri},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new message Interaction to send directly from your system to one
            [Participant](https://www.twilio.com/docs/proxy/api/participant).  The `inbound` properties for the Interaction will
            always be empty.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
            <param name="pathSessionSid"> The SID of the parent Session resource </param>
            <param name="pathParticipantSid"> The SID of the Participant resource </param>
            <param name="body"> Message body </param>
            <param name="mediaUrl"> Reserved </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.Fetch(Twilio.Rest.Proxy.V1.Service.Session.Participant.FetchMessageInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch MessageInteraction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.FetchAsync(Twilio.Rest.Proxy.V1.Service.Session.Participant.FetchMessageInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch MessageInteraction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.Fetch(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSessionSid"> The SID of the parent Session </param>
            <param name="pathParticipantSid"> The SID of the Participant resource </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.FetchAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the resource from </param>
            <param name="pathSessionSid"> The SID of the parent Session </param>
            <param name="pathParticipantSid"> The SID of the Participant resource </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.Read(Twilio.Rest.Proxy.V1.Service.Session.Participant.ReadMessageInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read MessageInteraction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.ReadAsync(Twilio.Rest.Proxy.V1.Service.Session.Participant.ReadMessageInteractionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read MessageInteraction parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.Read(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
            <param name="pathSessionSid"> The SID of the parent Session </param>
            <param name="pathParticipantSid"> The SID of the Participant resource </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.ReadAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the resource from </param>
            <param name="pathSessionSid"> The SID of the parent Session </param>
            <param name="pathParticipantSid"> The SID of the Participant resource </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessageInteraction </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MessageInteractionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MessageInteractionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.SessionSid">
            <summary>
            The SID of the resource's parent Session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.ServiceSid">
            <summary>
            The SID of the resource's parent Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.Data">
            <summary>
            A JSON string that includes the message body sent to the participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.Type">
            <summary>
            The Type of Message Interaction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.ParticipantSid">
            <summary>
            The SID of the Participant resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.InboundParticipantSid">
            <summary>
            Always empty for Message Interactions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.InboundResourceSid">
            <summary>
            Always empty for Message Interactions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.InboundResourceStatus">
            <summary>
            Always empty for Message Interactions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.InboundResourceType">
            <summary>
            Always empty for Message Interactions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.InboundResourceUrl">
            <summary>
            Always empty for Message Interactions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.OutboundParticipantSid">
            <summary>
            The SID of the outbound Participant resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.OutboundResourceSid">
            <summary>
            The SID of the outbound Message resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.OutboundResourceStatus">
            <summary>
            The outbound resource status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.OutboundResourceType">
            <summary>
            The outbound resource type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.OutboundResourceUrl">
            <summary>
            The URL of the Twilio message resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.Session.Participant.MessageInteractionResource.Url">
            <summary>
            The absolute URL of the MessageInteraction resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.CreateShortCodeOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Add a Short Code to the Proxy Number Pool for the Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreateShortCodeOptions.PathServiceSid">
            <summary>
            The SID of the parent Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.CreateShortCodeOptions.Sid">
            <summary>
            The SID of a Twilio ShortCode resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.CreateShortCodeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateShortCodeOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
            <param name="sid"> The SID of a Twilio ShortCode resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.CreateShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.DeleteShortCodeOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Short Code from a Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.DeleteShortCodeOptions.PathServiceSid">
            <summary>
            The SID of the parent Service to delete the ShortCode resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.DeleteShortCodeOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.DeleteShortCodeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteShortCodeOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to delete the ShortCode resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.DeleteShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.ReadShortCodeOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Short Codes in the Proxy Number Pool for the Service. A maximum of 100 records will be
             returned per page.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ReadShortCodeOptions.PathServiceSid">
            <summary>
            The SID of the parent Service to read the resource from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ReadShortCodeOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadShortCodeOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to read the resource from </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ReadShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.FetchShortCodeOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Short Code.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.FetchShortCodeOptions.PathServiceSid">
            <summary>
            The SID of the parent Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.FetchShortCodeOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.FetchShortCodeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchShortCodeOptions
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.FetchShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Proxy.V1.Service.UpdateShortCodeOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update a specific Short Code.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.UpdateShortCodeOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.UpdateShortCodeOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.UpdateShortCodeOptions.IsReserved">
            <summary>
            Whether the short code should be reserved for manual assignment to participants only
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.UpdateShortCodeOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateShortCodeOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.UpdateShortCodeOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Create(Twilio.Rest.Proxy.V1.Service.CreateShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a Short Code to the Proxy Number Pool for the Service.
            </summary>
            <param name="options"> Create ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.CreateAsync(Twilio.Rest.Proxy.V1.Service.CreateShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a Short Code to the Proxy Number Pool for the Service.
            </summary>
            <param name="options"> Create ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a Short Code to the Proxy Number Pool for the Service.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
            <param name="sid"> The SID of a Twilio ShortCode resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Add a Short Code to the Proxy Number Pool for the Service.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service resource </param>
            <param name="sid"> The SID of a Twilio ShortCode resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Delete(Twilio.Rest.Proxy.V1.Service.DeleteShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Short Code from a Service.
            </summary>
            <param name="options"> Delete ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.DeleteAsync(Twilio.Rest.Proxy.V1.Service.DeleteShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Short Code from a Service.
            </summary>
            <param name="options"> Delete ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Short Code from a Service.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to delete the ShortCode resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Short Code from a Service.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to delete the ShortCode resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Read(Twilio.Rest.Proxy.V1.Service.ReadShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Short Codes in the Proxy Number Pool for the Service. A maximum of 100 records will be
            returned per page.
            </summary>
            <param name="options"> Read ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.ReadAsync(Twilio.Rest.Proxy.V1.Service.ReadShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Short Codes in the Proxy Number Pool for the Service. A maximum of 100 records will be
            returned per page.
            </summary>
            <param name="options"> Read ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Short Codes in the Proxy Number Pool for the Service. A maximum of 100 records will be
            returned per page.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to read the resource from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Short Codes in the Proxy Number Pool for the Service. A maximum of 100 records will be
            returned per page.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to read the resource from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.NextPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.ShortCodeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Proxy.V1.Service.ShortCodeResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Fetch(Twilio.Rest.Proxy.V1.Service.FetchShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Short Code.
            </summary>
            <param name="options"> Fetch ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.FetchAsync(Twilio.Rest.Proxy.V1.Service.FetchShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Short Code.
            </summary>
            <param name="options"> Fetch ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Short Code.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Short Code.
            </summary>
            <param name="pathServiceSid"> The SID of the parent Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Update(Twilio.Rest.Proxy.V1.Service.UpdateShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Short Code.
            </summary>
            <param name="options"> Update ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.UpdateAsync(Twilio.Rest.Proxy.V1.Service.UpdateShortCodeOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Short Code.
            </summary>
            <param name="options"> Update ShortCode parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Update(System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Short Code.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="isReserved"> Whether the short code should be reserved for manual assignment to participants only
                             </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.UpdateAsync(System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Short Code.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="isReserved"> Whether the short code should be reserved for manual assignment to participants only
                             </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ShortCode </returns>
        </member>
        <member name="M:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ShortCodeResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ShortCodeResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.ServiceSid">
            <summary>
            The SID of the resource's parent Service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.ShortCode">
            <summary>
            The short code's number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.IsoCountry">
            <summary>
            The ISO Country Code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Capabilities">
            <summary>
            The capabilities of the short code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.Url">
            <summary>
            The absolute URL of the ShortCode resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Proxy.V1.Service.ShortCodeResource.IsReserved">
            <summary>
            Whether the short code should be reserved for manual assignment to participants only
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.ReadServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Services.
             </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.FetchServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a specific Service resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.FetchServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.DeleteServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a Service resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.DeleteServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.CreateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Service resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.CreateServiceOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.CreateServiceOptions.FriendlyName">
            <summary>
            A string to describe the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.CreateServiceOptions.IncludeCredentials">
            <summary>
            Whether to inject Account credentials into a function invocation context
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.CreateServiceOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateServiceOptions
            </summary>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Service resource </param>
            <param name="friendlyName"> A string to describe the Service resource </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.UpdateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update a specific Service resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.UpdateServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.UpdateServiceOptions.IncludeCredentials">
            <summary>
            Whether to inject Account credentials into a function invocation context
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.UpdateServiceOptions.FriendlyName">
            <summary>
            A string to describe the Service resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.Read(Twilio.Rest.Serverless.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services.
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.ReadAsync(Twilio.Rest.Serverless.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services.
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Services.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.Fetch(Twilio.Rest.Serverless.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Service resource.
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.FetchAsync(Twilio.Rest.Serverless.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Service resource.
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Service resource.
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Service resource.
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.Delete(Twilio.Rest.Serverless.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Service resource.
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.DeleteAsync(Twilio.Rest.Serverless.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Service resource.
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Service resource.
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Service resource.
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.Create(Twilio.Rest.Serverless.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service resource.
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.CreateAsync(Twilio.Rest.Serverless.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service resource.
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.Create(System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service resource.
            </summary>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Service resource </param>
            <param name="friendlyName"> A string to describe the Service resource </param>
            <param name="includeCredentials"> Whether to inject Account credentials into a function invocation context </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.CreateAsync(System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Service resource.
            </summary>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Service resource </param>
            <param name="friendlyName"> A string to describe the Service resource </param>
            <param name="includeCredentials"> Whether to inject Account credentials into a function invocation context </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.Update(Twilio.Rest.Serverless.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service resource.
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.UpdateAsync(Twilio.Rest.Serverless.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service resource.
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.Update(System.String,System.Nullable{System.Boolean},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service resource.
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
            <param name="includeCredentials"> Whether to inject Account credentials into a function invocation context </param>
            <param name="friendlyName"> A string to describe the Service resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.UpdateAsync(System.String,System.Nullable{System.Boolean},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Service resource.
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
            <param name="includeCredentials"> Whether to inject Account credentials into a function invocation context </param>
            <param name="friendlyName"> A string to describe the Service resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.ServiceResource.Sid">
            <summary>
            The unique string that identifies the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.ServiceResource.AccountSid">
            <summary>
            The SID of the Account that created the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.ServiceResource.FriendlyName">
            <summary>
            The string that you assigned to describe the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.ServiceResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.ServiceResource.IncludeCredentials">
            <summary>
            Whether to inject Account credentials into a function invocation context
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.ServiceResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Service resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.ServiceResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the Service resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.ServiceResource.Url">
            <summary>
            The absolute URL of the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.ServiceResource.Links">
            <summary>
            The URLs of the Service's nested resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.ReadAssetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Assets.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.ReadAssetOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the Asset resource from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.ReadAssetOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadAssetOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Asset resource from </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.ReadAssetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.FetchAssetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a specific Asset resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FetchAssetOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the Asset resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FetchAssetOptions.PathSid">
            <summary>
            The SID that identifies the Asset resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FetchAssetOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchAssetOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Asset resource from </param>
            <param name="pathSid"> The SID that identifies the Asset resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FetchAssetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.DeleteAssetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete an Asset resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.DeleteAssetOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the Asset resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.DeleteAssetOptions.PathSid">
            <summary>
            The SID that identifies the Asset resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.DeleteAssetOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteAssetOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Asset resource from </param>
            <param name="pathSid"> The SID that identifies the Asset resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.DeleteAssetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.CreateAssetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Asset resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.CreateAssetOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the Asset resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.CreateAssetOptions.FriendlyName">
            <summary>
            A string to describe the Asset resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.CreateAssetOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateAssetOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Asset resource under </param>
            <param name="friendlyName"> A string to describe the Asset resource </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.CreateAssetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.UpdateAssetOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update a specific Asset resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.UpdateAssetOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the Asset resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.UpdateAssetOptions.PathSid">
            <summary>
            The SID that identifies the Asset resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.UpdateAssetOptions.FriendlyName">
            <summary>
            A string to describe the Asset resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.UpdateAssetOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateAssetOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the Asset resource from </param>
            <param name="pathSid"> The SID that identifies the Asset resource to update </param>
            <param name="friendlyName"> A string to describe the Asset resource </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.UpdateAssetOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.Read(Twilio.Rest.Serverless.V1.Service.ReadAssetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Assets.
            </summary>
            <param name="options"> Read Asset parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.ReadAsync(Twilio.Rest.Serverless.V1.Service.ReadAssetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Assets.
            </summary>
            <param name="options"> Read Asset parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Assets.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Asset resource from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Assets.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Asset resource from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.NextPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.AssetResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.AssetResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.Fetch(Twilio.Rest.Serverless.V1.Service.FetchAssetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Asset resource.
            </summary>
            <param name="options"> Fetch Asset parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.FetchAsync(Twilio.Rest.Serverless.V1.Service.FetchAssetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Asset resource.
            </summary>
            <param name="options"> Fetch Asset parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Asset resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Asset resource from </param>
            <param name="pathSid"> The SID that identifies the Asset resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Asset resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Asset resource from </param>
            <param name="pathSid"> The SID that identifies the Asset resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.Delete(Twilio.Rest.Serverless.V1.Service.DeleteAssetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an Asset resource.
            </summary>
            <param name="options"> Delete Asset parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.DeleteAsync(Twilio.Rest.Serverless.V1.Service.DeleteAssetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an Asset resource.
            </summary>
            <param name="options"> Delete Asset parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an Asset resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Asset resource from </param>
            <param name="pathSid"> The SID that identifies the Asset resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete an Asset resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Asset resource from </param>
            <param name="pathSid"> The SID that identifies the Asset resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.Create(Twilio.Rest.Serverless.V1.Service.CreateAssetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Asset resource.
            </summary>
            <param name="options"> Create Asset parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.CreateAsync(Twilio.Rest.Serverless.V1.Service.CreateAssetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Asset resource.
            </summary>
            <param name="options"> Create Asset parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Asset resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Asset resource under </param>
            <param name="friendlyName"> A string to describe the Asset resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Asset resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Asset resource under </param>
            <param name="friendlyName"> A string to describe the Asset resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.Update(Twilio.Rest.Serverless.V1.Service.UpdateAssetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Asset resource.
            </summary>
            <param name="options"> Update Asset parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.UpdateAsync(Twilio.Rest.Serverless.V1.Service.UpdateAssetOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Asset resource.
            </summary>
            <param name="options"> Update Asset parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Asset resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the Asset resource from </param>
            <param name="pathSid"> The SID that identifies the Asset resource to update </param>
            <param name="friendlyName"> A string to describe the Asset resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Asset resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the Asset resource from </param>
            <param name="pathSid"> The SID that identifies the Asset resource to update </param>
            <param name="friendlyName"> A string to describe the Asset resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Asset </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.AssetResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AssetResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AssetResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.AssetResource.Sid">
            <summary>
            The unique string that identifies the Asset resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.AssetResource.AccountSid">
            <summary>
            The SID of the Account that created the Asset resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.AssetResource.ServiceSid">
            <summary>
            The SID of the Service that the Asset resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.AssetResource.FriendlyName">
            <summary>
            The string that you assigned to describe the Asset resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.AssetResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Asset resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.AssetResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the Asset resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.AssetResource.Url">
            <summary>
            The absolute URL of the Asset resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.AssetResource.Links">
            <summary>
            The links to the nested resources of the asset
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Asset.ReadAssetVersionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all asset versions.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.ReadAssetVersionOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the AssetVersion resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.ReadAssetVersionOptions.PathAssetSid">
            <summary>
            The SID of the Asset resource that is the parent of the AssetVersion resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.ReadAssetVersionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadAssetVersionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the AssetVersion resource from </param>
            <param name="pathAssetSid"> The SID of the Asset resource that is the parent of the AssetVersion resources to read
                               </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.ReadAssetVersionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Asset.FetchAssetVersionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a specific asset version.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.FetchAssetVersionOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the AssetVersion resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.FetchAssetVersionOptions.PathAssetSid">
            <summary>
            The SID of the Asset resource that is the parent of the AssetVersion resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.FetchAssetVersionOptions.PathSid">
            <summary>
            The SID that identifies the AssetVersion resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.FetchAssetVersionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchAssetVersionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the AssetVersion resource from </param>
            <param name="pathAssetSid"> The SID of the Asset resource that is the parent of the AssetVersion resource to fetch
                               </param>
            <param name="pathSid"> The SID that identifies the AssetVersion resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.FetchAssetVersionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.Read(Twilio.Rest.Serverless.V1.Service.Asset.ReadAssetVersionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all asset versions.
            </summary>
            <param name="options"> Read AssetVersion parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssetVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.ReadAsync(Twilio.Rest.Serverless.V1.Service.Asset.ReadAssetVersionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all asset versions.
            </summary>
            <param name="options"> Read AssetVersion parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssetVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all asset versions.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the AssetVersion resource from </param>
            <param name="pathAssetSid"> The SID of the Asset resource that is the parent of the AssetVersion resources to read
                               </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssetVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all asset versions.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the AssetVersion resource from </param>
            <param name="pathAssetSid"> The SID of the Asset resource that is the parent of the AssetVersion resources to read
                               </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssetVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.Fetch(Twilio.Rest.Serverless.V1.Service.Asset.FetchAssetVersionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific asset version.
            </summary>
            <param name="options"> Fetch AssetVersion parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssetVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.FetchAsync(Twilio.Rest.Serverless.V1.Service.Asset.FetchAssetVersionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific asset version.
            </summary>
            <param name="options"> Fetch AssetVersion parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssetVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific asset version.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the AssetVersion resource from </param>
            <param name="pathAssetSid"> The SID of the Asset resource that is the parent of the AssetVersion resource to fetch
                               </param>
            <param name="pathSid"> The SID that identifies the AssetVersion resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of AssetVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific asset version.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the AssetVersion resource from </param>
            <param name="pathAssetSid"> The SID of the Asset resource that is the parent of the AssetVersion resource to fetch
                               </param>
            <param name="pathSid"> The SID that identifies the AssetVersion resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of AssetVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a AssetVersionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> AssetVersionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.Sid">
            <summary>
            The unique string that identifies the AssetVersion resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.AccountSid">
            <summary>
            The SID of the Account that created the AssetVersion resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.ServiceSid">
            <summary>
            The SID of the Service that the AssetVersion resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.AssetSid">
            <summary>
            The SID of the Asset resource that is the parent of the asset version
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.Path">
            <summary>
            The URL-friendly string by which the asset version can be referenced
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.Visibility">
            <summary>
            The access control that determines how the asset version can be accessed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the AssetVersion resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Asset.AssetVersionResource.Url">
            <summary>
            The absolute URL of the AssetVersion resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.ReadBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Builds.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.ReadBuildOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the Build resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.ReadBuildOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadBuildOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Build resources from </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.ReadBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.FetchBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a specific Buildn resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FetchBuildOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the Build resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FetchBuildOptions.PathSid">
            <summary>
            The SID of the Build resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FetchBuildOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchBuildOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Build resource from </param>
            <param name="pathSid"> The SID of the Build resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FetchBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.DeleteBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a Build resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.DeleteBuildOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the Build resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.DeleteBuildOptions.PathSid">
            <summary>
            The SID of the Build resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.DeleteBuildOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteBuildOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Build resource from </param>
            <param name="pathSid"> The SID of the Build resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.DeleteBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.CreateBuildOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Build resource. At least one function version or asset version is required.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.CreateBuildOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the Build resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.CreateBuildOptions.AssetVersions">
            <summary>
            The list of AssetVersion resource SIDs to include in the build
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.CreateBuildOptions.FunctionVersions">
            <summary>
            The list of the Variable resource SIDs to include in the build
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.CreateBuildOptions.Dependencies">
            <summary>
            A list of objects that describe the Dependencies included in the build
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.CreateBuildOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateBuildOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Build resource under </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.CreateBuildOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.Read(Twilio.Rest.Serverless.V1.Service.ReadBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Builds.
            </summary>
            <param name="options"> Read Build parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.ReadAsync(Twilio.Rest.Serverless.V1.Service.ReadBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Builds.
            </summary>
            <param name="options"> Read Build parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Builds.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Build resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Builds.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Build resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.NextPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.BuildResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.BuildResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.Fetch(Twilio.Rest.Serverless.V1.Service.FetchBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Buildn resource.
            </summary>
            <param name="options"> Fetch Build parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.FetchAsync(Twilio.Rest.Serverless.V1.Service.FetchBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Buildn resource.
            </summary>
            <param name="options"> Fetch Build parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Buildn resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Build resource from </param>
            <param name="pathSid"> The SID of the Build resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Buildn resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Build resource from </param>
            <param name="pathSid"> The SID of the Build resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.Delete(Twilio.Rest.Serverless.V1.Service.DeleteBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Build resource.
            </summary>
            <param name="options"> Delete Build parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.DeleteAsync(Twilio.Rest.Serverless.V1.Service.DeleteBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Build resource.
            </summary>
            <param name="options"> Delete Build parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Build resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Build resource from </param>
            <param name="pathSid"> The SID of the Build resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Build resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Build resource from </param>
            <param name="pathSid"> The SID of the Build resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.Create(Twilio.Rest.Serverless.V1.Service.CreateBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Build resource. At least one function version or asset version is required.
            </summary>
            <param name="options"> Create Build parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.CreateAsync(Twilio.Rest.Serverless.V1.Service.CreateBuildOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Build resource. At least one function version or asset version is required.
            </summary>
            <param name="options"> Create Build parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.Create(System.String,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Build resource. At least one function version or asset version is required.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Build resource under </param>
            <param name="assetVersions"> The list of AssetVersion resource SIDs to include in the build </param>
            <param name="functionVersions"> The list of the Variable resource SIDs to include in the build </param>
            <param name="dependencies"> A list of objects that describe the Dependencies included in the build </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.CreateAsync(System.String,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Build resource. At least one function version or asset version is required.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Build resource under </param>
            <param name="assetVersions"> The list of AssetVersion resource SIDs to include in the build </param>
            <param name="functionVersions"> The list of the Variable resource SIDs to include in the build </param>
            <param name="dependencies"> A list of objects that describe the Dependencies included in the build </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Build </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.BuildResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a BuildResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> BuildResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.BuildResource.Sid">
            <summary>
            The unique string that identifies the Build resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.BuildResource.AccountSid">
            <summary>
            The SID of the Account that created the Build resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.BuildResource.ServiceSid">
            <summary>
            The SID of the Service that the Build resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.BuildResource.Status">
            <summary>
            The status of the build
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.BuildResource.AssetVersions">
            <summary>
            The list of AssetVersion resource SIDs that are included in the build
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.BuildResource.FunctionVersions">
            <summary>
            List of the Variable resource SIDs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.BuildResource.Dependencies">
            <summary>
            A list of objects that describe the Dependencies included in the build
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.BuildResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Build resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.BuildResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the Build resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.BuildResource.Url">
            <summary>
            The absolute URL of the Build resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.ReadEnvironmentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all environments.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.ReadEnvironmentOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the Environment resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.ReadEnvironmentOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadEnvironmentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Environment resources from </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.ReadEnvironmentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.FetchEnvironmentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a specific environment.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FetchEnvironmentOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the Environment resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FetchEnvironmentOptions.PathSid">
            <summary>
            The SID of the Environment resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FetchEnvironmentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchEnvironmentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Environment resource from </param>
            <param name="pathSid"> The SID of the Environment resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FetchEnvironmentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.CreateEnvironmentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new environment.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.CreateEnvironmentOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the Environment resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.CreateEnvironmentOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the Environment resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.CreateEnvironmentOptions.DomainSuffix">
            <summary>
            A URL-friendly name that represents the environment
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.CreateEnvironmentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateEnvironmentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Environment resource under </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Environment resource </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.CreateEnvironmentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.DeleteEnvironmentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific environment.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.DeleteEnvironmentOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the Environment resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.DeleteEnvironmentOptions.PathSid">
            <summary>
            The SID that identifies the Environment resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.DeleteEnvironmentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteEnvironmentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Environment resource from </param>
            <param name="pathSid"> The SID that identifies the Environment resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.DeleteEnvironmentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.Read(Twilio.Rest.Serverless.V1.Service.ReadEnvironmentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all environments.
            </summary>
            <param name="options"> Read Environment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.ReadAsync(Twilio.Rest.Serverless.V1.Service.ReadEnvironmentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all environments.
            </summary>
            <param name="options"> Read Environment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all environments.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Environment resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all environments.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Environment resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.NextPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.EnvironmentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.EnvironmentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.Fetch(Twilio.Rest.Serverless.V1.Service.FetchEnvironmentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific environment.
            </summary>
            <param name="options"> Fetch Environment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.FetchAsync(Twilio.Rest.Serverless.V1.Service.FetchEnvironmentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific environment.
            </summary>
            <param name="options"> Fetch Environment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific environment.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Environment resource from </param>
            <param name="pathSid"> The SID of the Environment resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific environment.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Environment resource from </param>
            <param name="pathSid"> The SID of the Environment resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.Create(Twilio.Rest.Serverless.V1.Service.CreateEnvironmentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new environment.
            </summary>
            <param name="options"> Create Environment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.CreateAsync(Twilio.Rest.Serverless.V1.Service.CreateEnvironmentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new environment.
            </summary>
            <param name="options"> Create Environment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new environment.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Environment resource under </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Environment resource </param>
            <param name="domainSuffix"> A URL-friendly name that represents the environment </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new environment.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Environment resource under </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Environment resource </param>
            <param name="domainSuffix"> A URL-friendly name that represents the environment </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.Delete(Twilio.Rest.Serverless.V1.Service.DeleteEnvironmentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific environment.
            </summary>
            <param name="options"> Delete Environment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.DeleteAsync(Twilio.Rest.Serverless.V1.Service.DeleteEnvironmentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific environment.
            </summary>
            <param name="options"> Delete Environment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific environment.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Environment resource from </param>
            <param name="pathSid"> The SID that identifies the Environment resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific environment.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Environment resource from </param>
            <param name="pathSid"> The SID that identifies the Environment resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Environment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a EnvironmentResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> EnvironmentResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.Sid">
            <summary>
            The unique string that identifies the Environment resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.AccountSid">
            <summary>
            The SID of the Account that created the Environment resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.ServiceSid">
            <summary>
            The SID of the Service that the Environment resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.BuildSid">
            <summary>
            The SID of the build deployed in the environment
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the Environment resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.DomainSuffix">
            <summary>
            A URL-friendly name that represents the environment
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.DomainName">
            <summary>
            The base domain name for all Functions and Assets deployed in the environment
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Environment resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the Environment resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.Url">
            <summary>
            The absolute URL of the Environment resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.EnvironmentResource.Links">
            <summary>
            The URLs of the environment's nested resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Environment.ReadDeploymentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all deployments.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.ReadDeploymentOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the Deployment resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.ReadDeploymentOptions.PathEnvironmentSid">
            <summary>
            The SID of the environment used by the Deployment resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.ReadDeploymentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadDeploymentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Deployment resources from </param>
            <param name="pathEnvironmentSid"> The SID of the environment used by the Deployment resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.ReadDeploymentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Environment.FetchDeploymentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a specific deployment.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.FetchDeploymentOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the Deployment resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.FetchDeploymentOptions.PathEnvironmentSid">
            <summary>
            The SID of the environment used by the Deployment to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.FetchDeploymentOptions.PathSid">
            <summary>
            The SID that identifies the Deployment resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.FetchDeploymentOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchDeploymentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Deployment resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment used by the Deployment to fetch </param>
            <param name="pathSid"> The SID that identifies the Deployment resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.FetchDeploymentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Environment.CreateDeploymentOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new deployment.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.CreateDeploymentOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the Deployment resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.CreateDeploymentOptions.PathEnvironmentSid">
            <summary>
            The SID of the environment for the deployment
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.CreateDeploymentOptions.BuildSid">
            <summary>
            The SID of the build for the deployment
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.CreateDeploymentOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateDeploymentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Deployment resource under </param>
            <param name="pathEnvironmentSid"> The SID of the environment for the deployment </param>
            <param name="buildSid"> The SID of the build for the deployment </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.CreateDeploymentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.Read(Twilio.Rest.Serverless.V1.Service.Environment.ReadDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all deployments.
            </summary>
            <param name="options"> Read Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.ReadAsync(Twilio.Rest.Serverless.V1.Service.Environment.ReadDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all deployments.
            </summary>
            <param name="options"> Read Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all deployments.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Deployment resources from </param>
            <param name="pathEnvironmentSid"> The SID of the environment used by the Deployment resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all deployments.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Deployment resources from </param>
            <param name="pathEnvironmentSid"> The SID of the environment used by the Deployment resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.NextPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.Fetch(Twilio.Rest.Serverless.V1.Service.Environment.FetchDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific deployment.
            </summary>
            <param name="options"> Fetch Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.FetchAsync(Twilio.Rest.Serverless.V1.Service.Environment.FetchDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific deployment.
            </summary>
            <param name="options"> Fetch Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific deployment.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Deployment resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment used by the Deployment to fetch </param>
            <param name="pathSid"> The SID that identifies the Deployment resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific deployment.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Deployment resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment used by the Deployment to fetch </param>
            <param name="pathSid"> The SID that identifies the Deployment resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.Create(Twilio.Rest.Serverless.V1.Service.Environment.CreateDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new deployment.
            </summary>
            <param name="options"> Create Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.CreateAsync(Twilio.Rest.Serverless.V1.Service.Environment.CreateDeploymentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new deployment.
            </summary>
            <param name="options"> Create Deployment parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new deployment.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Deployment resource under </param>
            <param name="pathEnvironmentSid"> The SID of the environment for the deployment </param>
            <param name="buildSid"> The SID of the build for the deployment </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new deployment.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Deployment resource under </param>
            <param name="pathEnvironmentSid"> The SID of the environment for the deployment </param>
            <param name="buildSid"> The SID of the build for the deployment </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Deployment </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DeploymentResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DeploymentResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.Sid">
            <summary>
            The unique string that identifies the Deployment resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.AccountSid">
            <summary>
            The SID of the Account that created the Deployment resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.ServiceSid">
            <summary>
            The SID of the Service that the Deployment resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.EnvironmentSid">
            <summary>
            The SID of the environment for the deployment
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.BuildSid">
            <summary>
            The SID of the build for the deployment
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Deployment resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the Deployment resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.DeploymentResource.Url">
            <summary>
            The absolute URL of the Deployment resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Environment.ReadLogOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all logs.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.ReadLogOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the Log resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.ReadLogOptions.PathEnvironmentSid">
            <summary>
            The SID of the environment with the Log resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.ReadLogOptions.FunctionSid">
            <summary>
            The SID of the function whose invocation produced the Log resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.ReadLogOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadLogOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Log resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Log resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.ReadLogOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Environment.FetchLogOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a specific log.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.FetchLogOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the Log resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.FetchLogOptions.PathEnvironmentSid">
            <summary>
            The SID of the environment with the Log resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.FetchLogOptions.PathSid">
            <summary>
            The SID that identifies the Log resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.FetchLogOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchLogOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Log resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Log resource to fetch </param>
            <param name="pathSid"> The SID that identifies the Log resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.FetchLogOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.Read(Twilio.Rest.Serverless.V1.Service.Environment.ReadLogOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all logs.
            </summary>
            <param name="options"> Read Log parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Log </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.ReadAsync(Twilio.Rest.Serverless.V1.Service.Environment.ReadLogOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all logs.
            </summary>
            <param name="options"> Read Log parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Log </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.Read(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all logs.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Log resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Log resources to read </param>
            <param name="functionSid"> The SID of the function whose invocation produced the Log resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Log </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.ReadAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all logs.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Log resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Log resources to read </param>
            <param name="functionSid"> The SID of the function whose invocation produced the Log resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Log </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.NextPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.Environment.LogResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.Environment.LogResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.Fetch(Twilio.Rest.Serverless.V1.Service.Environment.FetchLogOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific log.
            </summary>
            <param name="options"> Fetch Log parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Log </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.FetchAsync(Twilio.Rest.Serverless.V1.Service.Environment.FetchLogOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific log.
            </summary>
            <param name="options"> Fetch Log parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Log </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific log.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Log resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Log resource to fetch </param>
            <param name="pathSid"> The SID that identifies the Log resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Log </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific log.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Log resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Log resource to fetch </param>
            <param name="pathSid"> The SID that identifies the Log resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Log </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a LogResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> LogResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.Sid">
            <summary>
            The unique string that identifies the Log resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.AccountSid">
            <summary>
            The SID of the Account that created the Log resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.ServiceSid">
            <summary>
            The SID of the Service that the Log resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.EnvironmentSid">
            <summary>
            The SID of the environment in which the log occurred
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.DeploymentSid">
            <summary>
            The SID of the deployment that corresponds to the log
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.FunctionSid">
            <summary>
            The SID of the function whose invocation produced the log
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.RequestSid">
            <summary>
            The SID of the request associated with the log
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.Level">
            <summary>
            The log level
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.Message">
            <summary>
            The log message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Log resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.LogResource.Url">
            <summary>
            The absolute URL of the Log resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Environment.ReadVariableOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Variables.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.ReadVariableOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the Variable resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.ReadVariableOptions.PathEnvironmentSid">
            <summary>
            The SID of the environment with the Variable resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.ReadVariableOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadVariableOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Variable resources from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variable resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.ReadVariableOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Environment.FetchVariableOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a specific variable.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.FetchVariableOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the Variable resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.FetchVariableOptions.PathEnvironmentSid">
            <summary>
            The SID of the environment with the Variable resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.FetchVariableOptions.PathSid">
            <summary>
            The SID of the Variable resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.FetchVariableOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchVariableOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Variable resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variable resource to fetch </param>
            <param name="pathSid"> The SID of the Variable resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.FetchVariableOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Environment.CreateVariableOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new variable.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.CreateVariableOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the Variable resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.CreateVariableOptions.PathEnvironmentSid">
            <summary>
            The SID of the environment in which the variable exists
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.CreateVariableOptions.Key">
            <summary>
            A string by which the Variable resource can be referenced
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.CreateVariableOptions.Value">
            <summary>
            A string that contains the actual value of the variable
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.CreateVariableOptions.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Construct a new CreateVariableOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Variable resource under </param>
            <param name="pathEnvironmentSid"> The SID of the environment in which the variable exists </param>
            <param name="key"> A string by which the Variable resource can be referenced </param>
            <param name="value"> A string that contains the actual value of the variable </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.CreateVariableOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Environment.UpdateVariableOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update a specific variable.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.UpdateVariableOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the Variable resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.UpdateVariableOptions.PathEnvironmentSid">
            <summary>
            The SID of the environment with the Variable resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.UpdateVariableOptions.PathSid">
            <summary>
            The SID of the Variable resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.UpdateVariableOptions.Key">
            <summary>
            A string by which the Variable resource can be referenced
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.UpdateVariableOptions.Value">
            <summary>
            A string that contains the actual value of the variable
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.UpdateVariableOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateVariableOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the Variable resource under </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variable resource to update </param>
            <param name="pathSid"> The SID of the Variable resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.UpdateVariableOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Environment.DeleteVariableOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a specific variable.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.DeleteVariableOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the Variable resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.DeleteVariableOptions.PathEnvironmentSid">
            <summary>
            The SID of the environment with the Variables to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.DeleteVariableOptions.PathSid">
            <summary>
            The SID of the Variable resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeleteVariableOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteVariableOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Variable resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variables to delete </param>
            <param name="pathSid"> The SID of the Variable resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.DeleteVariableOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Read(Twilio.Rest.Serverless.V1.Service.Environment.ReadVariableOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Variables.
            </summary>
            <param name="options"> Read Variable parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.ReadAsync(Twilio.Rest.Serverless.V1.Service.Environment.ReadVariableOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Variables.
            </summary>
            <param name="options"> Read Variable parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Variables.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Variable resources from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variable resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Variables.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Variable resources from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variable resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.NextPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.Environment.VariableResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.Environment.VariableResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Fetch(Twilio.Rest.Serverless.V1.Service.Environment.FetchVariableOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific variable.
            </summary>
            <param name="options"> Fetch Variable parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.FetchAsync(Twilio.Rest.Serverless.V1.Service.Environment.FetchVariableOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific variable.
            </summary>
            <param name="options"> Fetch Variable parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific variable.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Variable resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variable resource to fetch </param>
            <param name="pathSid"> The SID of the Variable resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific variable.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Variable resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variable resource to fetch </param>
            <param name="pathSid"> The SID of the Variable resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Create(Twilio.Rest.Serverless.V1.Service.Environment.CreateVariableOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new variable.
            </summary>
            <param name="options"> Create Variable parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.CreateAsync(Twilio.Rest.Serverless.V1.Service.Environment.CreateVariableOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new variable.
            </summary>
            <param name="options"> Create Variable parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new variable.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Variable resource under </param>
            <param name="pathEnvironmentSid"> The SID of the environment in which the variable exists </param>
            <param name="key"> A string by which the Variable resource can be referenced </param>
            <param name="value"> A string that contains the actual value of the variable </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new variable.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Variable resource under </param>
            <param name="pathEnvironmentSid"> The SID of the environment in which the variable exists </param>
            <param name="key"> A string by which the Variable resource can be referenced </param>
            <param name="value"> A string that contains the actual value of the variable </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Update(Twilio.Rest.Serverless.V1.Service.Environment.UpdateVariableOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific variable.
            </summary>
            <param name="options"> Update Variable parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.UpdateAsync(Twilio.Rest.Serverless.V1.Service.Environment.UpdateVariableOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific variable.
            </summary>
            <param name="options"> Update Variable parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Update(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific variable.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the Variable resource under </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variable resource to update </param>
            <param name="pathSid"> The SID of the Variable resource to update </param>
            <param name="key"> A string by which the Variable resource can be referenced </param>
            <param name="value"> A string that contains the actual value of the variable </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific variable.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the Variable resource under </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variable resource to update </param>
            <param name="pathSid"> The SID of the Variable resource to update </param>
            <param name="key"> A string by which the Variable resource can be referenced </param>
            <param name="value"> A string that contains the actual value of the variable </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Delete(Twilio.Rest.Serverless.V1.Service.Environment.DeleteVariableOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific variable.
            </summary>
            <param name="options"> Delete Variable parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.DeleteAsync(Twilio.Rest.Serverless.V1.Service.Environment.DeleteVariableOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific variable.
            </summary>
            <param name="options"> Delete Variable parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific variable.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Variable resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variables to delete </param>
            <param name="pathSid"> The SID of the Variable resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific variable.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Variable resource from </param>
            <param name="pathEnvironmentSid"> The SID of the environment with the Variables to delete </param>
            <param name="pathSid"> The SID of the Variable resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Variable </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a VariableResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> VariableResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Sid">
            <summary>
            The unique string that identifies the Variable resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.AccountSid">
            <summary>
            The SID of the Account that created the Variable resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.ServiceSid">
            <summary>
            The SID of the Service that the Variable resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.EnvironmentSid">
            <summary>
            The SID of the environment in which the variable exists
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Key">
            <summary>
            A string by which the Variable resource can be referenced
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Value">
            <summary>
            A string that contains the actual value of the variable
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Variable resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the Variable resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Environment.VariableResource.Url">
            <summary>
            The absolute URL of the Variable resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.ReadFunctionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all Functions.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.ReadFunctionOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the Function resources from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.ReadFunctionOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadFunctionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Function resources from </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.ReadFunctionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.FetchFunctionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a specific Function resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FetchFunctionOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the Function resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FetchFunctionOptions.PathSid">
            <summary>
            The SID of the Function resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FetchFunctionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchFunctionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Function resource from </param>
            <param name="pathSid"> The SID of the Function resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FetchFunctionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.DeleteFunctionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a Function resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.DeleteFunctionOptions.PathServiceSid">
            <summary>
            The SID of the Service to delete the Function resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.DeleteFunctionOptions.PathSid">
            <summary>
            The SID of the Function resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.DeleteFunctionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteFunctionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Function resource from </param>
            <param name="pathSid"> The SID of the Function resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.DeleteFunctionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.CreateFunctionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a new Function resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.CreateFunctionOptions.PathServiceSid">
            <summary>
            The SID of the Service to create the Function resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.CreateFunctionOptions.FriendlyName">
            <summary>
            A string to describe the Function resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.CreateFunctionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateFunctionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Function resource under </param>
            <param name="friendlyName"> A string to describe the Function resource </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.CreateFunctionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.UpdateFunctionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update a specific Function resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.UpdateFunctionOptions.PathServiceSid">
            <summary>
            The SID of the Service to update the Function resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.UpdateFunctionOptions.PathSid">
            <summary>
            The SID of the Function resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.UpdateFunctionOptions.FriendlyName">
            <summary>
            A string to describe the Function resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.UpdateFunctionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateFunctionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the Function resource from </param>
            <param name="pathSid"> The SID of the Function resource to update </param>
            <param name="friendlyName"> A string to describe the Function resource </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.UpdateFunctionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.Read(Twilio.Rest.Serverless.V1.Service.ReadFunctionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Functions.
            </summary>
            <param name="options"> Read Function parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.ReadAsync(Twilio.Rest.Serverless.V1.Service.ReadFunctionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Functions.
            </summary>
            <param name="options"> Read Function parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Functions.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Function resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Functions.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the Function resources from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.FunctionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.FunctionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.Fetch(Twilio.Rest.Serverless.V1.Service.FetchFunctionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Function resource.
            </summary>
            <param name="options"> Fetch Function parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.FetchAsync(Twilio.Rest.Serverless.V1.Service.FetchFunctionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Function resource.
            </summary>
            <param name="options"> Fetch Function parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Function resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Function resource from </param>
            <param name="pathSid"> The SID of the Function resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Function resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the Function resource from </param>
            <param name="pathSid"> The SID of the Function resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.Delete(Twilio.Rest.Serverless.V1.Service.DeleteFunctionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Function resource.
            </summary>
            <param name="options"> Delete Function parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.DeleteAsync(Twilio.Rest.Serverless.V1.Service.DeleteFunctionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Function resource.
            </summary>
            <param name="options"> Delete Function parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Function resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Function resource from </param>
            <param name="pathSid"> The SID of the Function resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Function resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to delete the Function resource from </param>
            <param name="pathSid"> The SID of the Function resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.Create(Twilio.Rest.Serverless.V1.Service.CreateFunctionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Function resource.
            </summary>
            <param name="options"> Create Function parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.CreateAsync(Twilio.Rest.Serverless.V1.Service.CreateFunctionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Function resource.
            </summary>
            <param name="options"> Create Function parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Function resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Function resource under </param>
            <param name="friendlyName"> A string to describe the Function resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Function resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to create the Function resource under </param>
            <param name="friendlyName"> A string to describe the Function resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.Update(Twilio.Rest.Serverless.V1.Service.UpdateFunctionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Function resource.
            </summary>
            <param name="options"> Update Function parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.UpdateAsync(Twilio.Rest.Serverless.V1.Service.UpdateFunctionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Function resource.
            </summary>
            <param name="options"> Update Function parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Function resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the Function resource from </param>
            <param name="pathSid"> The SID of the Function resource to update </param>
            <param name="friendlyName"> A string to describe the Function resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Function resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to update the Function resource from </param>
            <param name="pathSid"> The SID of the Function resource to update </param>
            <param name="friendlyName"> A string to describe the Function resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Function </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.FunctionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FunctionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FunctionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FunctionResource.Sid">
            <summary>
            The unique string that identifies the Function resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FunctionResource.AccountSid">
            <summary>
            The SID of the Account that created the Function resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FunctionResource.ServiceSid">
            <summary>
            The SID of the Service that the Function resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FunctionResource.FriendlyName">
            <summary>
            The string that you assigned to describe the Function resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FunctionResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Function resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FunctionResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the Function resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FunctionResource.Url">
            <summary>
            The absolute URL of the Function resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.FunctionResource.Links">
            <summary>
            The URLs of nested resources of the function
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Function.ReadFunctionVersionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a list of all FunctionVersion resources.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.ReadFunctionVersionOptions.PathServiceSid">
            <summary>
            The SID of the Service to read the FunctionVersion resources from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.ReadFunctionVersionOptions.PathFunctionSid">
            <summary>
            The SID of the function that is the parent of the FunctionVersion resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.ReadFunctionVersionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadFunctionVersionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the FunctionVersion resources from </param>
            <param name="pathFunctionSid"> The SID of the function that is the parent of the FunctionVersion resources to read
                                  </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.ReadFunctionVersionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Serverless.V1.Service.Function.FetchFunctionVersionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve a specific FunctionVersion resource.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.FetchFunctionVersionOptions.PathServiceSid">
            <summary>
            The SID of the Service to fetch the FunctionVersion resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.FetchFunctionVersionOptions.PathFunctionSid">
            <summary>
            The SID of the function that is the parent of the FunctionVersion resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.FetchFunctionVersionOptions.PathSid">
            <summary>
            The SID that identifies the FunctionVersion resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FetchFunctionVersionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchFunctionVersionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the FunctionVersion resource from </param>
            <param name="pathFunctionSid"> The SID of the function that is the parent of the FunctionVersion resource to fetch
                                  </param>
            <param name="pathSid"> The SID that identifies the FunctionVersion resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FetchFunctionVersionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.Read(Twilio.Rest.Serverless.V1.Service.Function.ReadFunctionVersionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all FunctionVersion resources.
            </summary>
            <param name="options"> Read FunctionVersion parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FunctionVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.ReadAsync(Twilio.Rest.Serverless.V1.Service.Function.ReadFunctionVersionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all FunctionVersion resources.
            </summary>
            <param name="options"> Read FunctionVersion parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FunctionVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all FunctionVersion resources.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the FunctionVersion resources from </param>
            <param name="pathFunctionSid"> The SID of the function that is the parent of the FunctionVersion resources to read
                                  </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FunctionVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all FunctionVersion resources.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to read the FunctionVersion resources from </param>
            <param name="pathFunctionSid"> The SID of the function that is the parent of the FunctionVersion resources to read
                                  </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FunctionVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.Fetch(Twilio.Rest.Serverless.V1.Service.Function.FetchFunctionVersionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific FunctionVersion resource.
            </summary>
            <param name="options"> Fetch FunctionVersion parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FunctionVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.FetchAsync(Twilio.Rest.Serverless.V1.Service.Function.FetchFunctionVersionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific FunctionVersion resource.
            </summary>
            <param name="options"> Fetch FunctionVersion parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FunctionVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific FunctionVersion resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the FunctionVersion resource from </param>
            <param name="pathFunctionSid"> The SID of the function that is the parent of the FunctionVersion resource to fetch
                                  </param>
            <param name="pathSid"> The SID that identifies the FunctionVersion resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of FunctionVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific FunctionVersion resource.
            </summary>
            <param name="pathServiceSid"> The SID of the Service to fetch the FunctionVersion resource from </param>
            <param name="pathFunctionSid"> The SID of the function that is the parent of the FunctionVersion resource to fetch
                                  </param>
            <param name="pathSid"> The SID that identifies the FunctionVersion resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of FunctionVersion </returns>
        </member>
        <member name="M:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FunctionVersionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FunctionVersionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.Sid">
            <summary>
            The unique string that identifies the FunctionVersion resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.AccountSid">
            <summary>
            The SID of the Account that created the FunctionVersion resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.ServiceSid">
            <summary>
            The SID of the Service that the FunctionVersion resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.FunctionSid">
            <summary>
            The SID of the function that is the parent of the function version
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.Path">
            <summary>
            The URL-friendly string by which the function version can be referenced
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.Visibility">
            <summary>
            The access control that determines how the function version can be accessed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the FunctionVersion resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Serverless.V1.Service.Function.FunctionVersionResource.Url">
            <summary>
            The absolute URL of the FunctionVersion resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.ReadFlowOptions">
            <summary>
            Retrieve a list of all Flows.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.ReadFlowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.FetchFlowOptions">
            <summary>
            Retrieve a specific Flow.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.FetchFlowOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FetchFlowOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchFlowOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FetchFlowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.DeleteFlowOptions">
            <summary>
            Delete a specific Flow.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.DeleteFlowOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.DeleteFlowOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteFlowOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.DeleteFlowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.Read(Twilio.Rest.Studio.V1.ReadFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Flows.
            </summary>
            <param name="options"> Read Flow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.ReadAsync(Twilio.Rest.Studio.V1.ReadFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Flows.
            </summary>
            <param name="options"> Read Flow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Flows.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Flows.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.NextPage(Twilio.Base.Page{Twilio.Rest.Studio.V1.FlowResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Studio.V1.FlowResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.Fetch(Twilio.Rest.Studio.V1.FetchFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Flow.
            </summary>
            <param name="options"> Fetch Flow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.FetchAsync(Twilio.Rest.Studio.V1.FetchFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Flow.
            </summary>
            <param name="options"> Fetch Flow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Flow.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a specific Flow.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.Delete(Twilio.Rest.Studio.V1.DeleteFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Flow.
            </summary>
            <param name="options"> Delete Flow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.DeleteAsync(Twilio.Rest.Studio.V1.DeleteFlowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Flow.
            </summary>
            <param name="options"> Delete Flow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Flow.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Flow.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Flow </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.FlowResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a FlowResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> FlowResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.FlowResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.FlowResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.FlowResource.FriendlyName">
            <summary>
            The string that you assigned to describe the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.FlowResource.Status">
            <summary>
            The status of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.FlowResource.Version">
            <summary>
            The latest version number of the Flow's definition
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.FlowResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.FlowResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.FlowResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.FlowResource.Links">
            <summary>
            Nested resource URLs
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.ReadEngagementOptions">
            <summary>
            Retrieve a list of all Engagements for the Flow.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ReadEngagementOptions.PathFlowSid">
            <summary>
            The SID of the Flow to read Engagements from
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ReadEngagementOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadEngagementOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow to read Engagements from </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ReadEngagementOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.FetchEngagementOptions">
            <summary>
            Retrieve an Engagement
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.FetchEngagementOptions.PathFlowSid">
            <summary>
            Flow SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.FetchEngagementOptions.PathSid">
            <summary>
            The SID of the Engagement resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.FetchEngagementOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchEngagementOptions
            </summary>
            <param name="pathFlowSid"> Flow SID </param>
            <param name="pathSid"> The SID of the Engagement resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.FetchEngagementOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.CreateEngagementOptions">
            <summary>
            Triggers a new Engagement for the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.CreateEngagementOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.CreateEngagementOptions.To">
            <summary>
            The Contact phone number to start a Studio Flow Engagement
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.CreateEngagementOptions.From">
            <summary>
            The Twilio phone number to send messages or initiate calls from during the Flow Engagement
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.CreateEngagementOptions.Parameters">
            <summary>
            A JSON string we will add to your flow's context and that you can access as variables inside your flow
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.CreateEngagementOptions.#ctor(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber)">
            <summary>
            Construct a new CreateEngagementOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="to"> The Contact phone number to start a Studio Flow Engagement </param>
            <param name="from"> The Twilio phone number to send messages or initiate calls from during the Flow Engagement
                       </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.CreateEngagementOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.DeleteEngagementOptions">
            <summary>
            Delete this Engagement and all Steps relating to it.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.DeleteEngagementOptions.PathFlowSid">
            <summary>
            The SID of the Flow to delete Engagements from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.DeleteEngagementOptions.PathSid">
            <summary>
            The SID of the Engagement resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.DeleteEngagementOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteEngagementOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow to delete Engagements from </param>
            <param name="pathSid"> The SID of the Engagement resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.DeleteEngagementOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.Read(Twilio.Rest.Studio.V1.Flow.ReadEngagementOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Engagements for the Flow.
            </summary>
            <param name="options"> Read Engagement parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.ReadAsync(Twilio.Rest.Studio.V1.Flow.ReadEngagementOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Engagements for the Flow.
            </summary>
            <param name="options"> Read Engagement parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Engagements for the Flow.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow to read Engagements from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Engagements for the Flow.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow to read Engagements from </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.NextPage(Twilio.Base.Page{Twilio.Rest.Studio.V1.Flow.EngagementResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Studio.V1.Flow.EngagementResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.Fetch(Twilio.Rest.Studio.V1.Flow.FetchEngagementOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve an Engagement
            </summary>
            <param name="options"> Fetch Engagement parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.FetchAsync(Twilio.Rest.Studio.V1.Flow.FetchEngagementOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve an Engagement
            </summary>
            <param name="options"> Fetch Engagement parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve an Engagement
            </summary>
            <param name="pathFlowSid"> Flow SID </param>
            <param name="pathSid"> The SID of the Engagement resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve an Engagement
            </summary>
            <param name="pathFlowSid"> Flow SID </param>
            <param name="pathSid"> The SID of the Engagement resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.Create(Twilio.Rest.Studio.V1.Flow.CreateEngagementOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Triggers a new Engagement for the Flow
            </summary>
            <param name="options"> Create Engagement parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.CreateAsync(Twilio.Rest.Studio.V1.Flow.CreateEngagementOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Triggers a new Engagement for the Flow
            </summary>
            <param name="options"> Create Engagement parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.Create(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Triggers a new Engagement for the Flow
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="to"> The Contact phone number to start a Studio Flow Engagement </param>
            <param name="from"> The Twilio phone number to send messages or initiate calls from during the Flow Engagement
                       </param>
            <param name="parameters"> A JSON string we will add to your flow's context and that you can access as variables
                             inside your flow </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.CreateAsync(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Triggers a new Engagement for the Flow
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="to"> The Contact phone number to start a Studio Flow Engagement </param>
            <param name="from"> The Twilio phone number to send messages or initiate calls from during the Flow Engagement
                       </param>
            <param name="parameters"> A JSON string we will add to your flow's context and that you can access as variables
                             inside your flow </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.Delete(Twilio.Rest.Studio.V1.Flow.DeleteEngagementOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete this Engagement and all Steps relating to it.
            </summary>
            <param name="options"> Delete Engagement parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.DeleteAsync(Twilio.Rest.Studio.V1.Flow.DeleteEngagementOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete this Engagement and all Steps relating to it.
            </summary>
            <param name="options"> Delete Engagement parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete this Engagement and all Steps relating to it.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow to delete Engagements from </param>
            <param name="pathSid"> The SID of the Engagement resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete this Engagement and all Steps relating to it.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow to delete Engagements from </param>
            <param name="pathSid"> The SID of the Engagement resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Engagement </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.EngagementResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a EngagementResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> EngagementResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.EngagementResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.EngagementResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.EngagementResource.FlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.EngagementResource.ContactSid">
            <summary>
            The SID of the Contact
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.EngagementResource.ContactChannelAddress">
            <summary>
            The phone number, SIP address or Client identifier that triggered this Engagement
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.EngagementResource.Context">
            <summary>
            The current state of the execution flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.EngagementResource.Status">
            <summary>
            The status of the Engagement
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.EngagementResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Engagement was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.EngagementResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the Engagement was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.EngagementResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.EngagementResource.Links">
            <summary>
            The URLs of the Engagement's nested resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.Engagement.FetchEngagementContextOptions">
            <summary>
            Retrieve the most recent context for an Engagement.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.FetchEngagementContextOptions.PathFlowSid">
            <summary>
            Flow SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.FetchEngagementContextOptions.PathEngagementSid">
            <summary>
            Engagement SID
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.FetchEngagementContextOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchEngagementContextOptions
            </summary>
            <param name="pathFlowSid"> Flow SID </param>
            <param name="pathEngagementSid"> Engagement SID </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.FetchEngagementContextOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.EngagementContextResource.Fetch(Twilio.Rest.Studio.V1.Flow.Engagement.FetchEngagementContextOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the most recent context for an Engagement.
            </summary>
            <param name="options"> Fetch EngagementContext parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of EngagementContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.EngagementContextResource.FetchAsync(Twilio.Rest.Studio.V1.Flow.Engagement.FetchEngagementContextOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the most recent context for an Engagement.
            </summary>
            <param name="options"> Fetch EngagementContext parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of EngagementContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.EngagementContextResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the most recent context for an Engagement.
            </summary>
            <param name="pathFlowSid"> Flow SID </param>
            <param name="pathEngagementSid"> Engagement SID </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of EngagementContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.EngagementContextResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the most recent context for an Engagement.
            </summary>
            <param name="pathFlowSid"> Flow SID </param>
            <param name="pathEngagementSid"> Engagement SID </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of EngagementContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.EngagementContextResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a EngagementContextResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> EngagementContextResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.EngagementContextResource.AccountSid">
            <summary>
            Account SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.EngagementContextResource.Context">
            <summary>
            Flow state
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.EngagementContextResource.EngagementSid">
            <summary>
            Engagement SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.EngagementContextResource.FlowSid">
            <summary>
            Flow SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.EngagementContextResource.Url">
            <summary>
            The URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.Engagement.ReadStepOptions">
            <summary>
            Retrieve a list of all Steps for an Engagement.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.ReadStepOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.ReadStepOptions.PathEngagementSid">
            <summary>
            The SID of the Engagement
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.ReadStepOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadStepOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathEngagementSid"> The SID of the Engagement </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.ReadStepOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.Engagement.FetchStepOptions">
            <summary>
            Retrieve a Step.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.FetchStepOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.FetchStepOptions.PathEngagementSid">
            <summary>
            The SID of the Engagement
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.FetchStepOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.FetchStepOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchStepOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathEngagementSid"> The SID of the Engagement </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.FetchStepOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.Read(Twilio.Rest.Studio.V1.Flow.Engagement.ReadStepOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Steps for an Engagement.
            </summary>
            <param name="options"> Read Step parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Step </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.ReadAsync(Twilio.Rest.Studio.V1.Flow.Engagement.ReadStepOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Steps for an Engagement.
            </summary>
            <param name="options"> Read Step parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Step </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Steps for an Engagement.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathEngagementSid"> The SID of the Engagement </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Step </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Steps for an Engagement.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathEngagementSid"> The SID of the Engagement </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Step </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.NextPage(Twilio.Base.Page{Twilio.Rest.Studio.V1.Flow.Engagement.StepResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Studio.V1.Flow.Engagement.StepResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.Fetch(Twilio.Rest.Studio.V1.Flow.Engagement.FetchStepOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a Step.
            </summary>
            <param name="options"> Fetch Step parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Step </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.FetchAsync(Twilio.Rest.Studio.V1.Flow.Engagement.FetchStepOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a Step.
            </summary>
            <param name="options"> Fetch Step parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Step </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a Step.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathEngagementSid"> The SID of the Engagement </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Step </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a Step.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathEngagementSid"> The SID of the Engagement </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Step </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a StepResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> StepResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.FlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.EngagementSid">
            <summary>
            The SID of the Engagement
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.Name">
            <summary>
            The event that caused the Flow to transition to the Step
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.Context">
            <summary>
            The current state of the flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.TransitionedFrom">
            <summary>
            The Widget that preceded the Widget for the Step
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.TransitionedTo">
            <summary>
            The Widget that will follow the Widget for the Step
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.StepResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.Engagement.Step.FetchStepContextOptions">
            <summary>
            Retrieve the context for an Engagement Step.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.Step.FetchStepContextOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.Step.FetchStepContextOptions.PathEngagementSid">
            <summary>
            The SID of the Engagement
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.Step.FetchStepContextOptions.PathStepSid">
            <summary>
            Step SID
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.Step.FetchStepContextOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchStepContextOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathEngagementSid"> The SID of the Engagement </param>
            <param name="pathStepSid"> Step SID </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.Step.FetchStepContextOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.Step.StepContextResource.Fetch(Twilio.Rest.Studio.V1.Flow.Engagement.Step.FetchStepContextOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the context for an Engagement Step.
            </summary>
            <param name="options"> Fetch StepContext parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StepContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.Step.StepContextResource.FetchAsync(Twilio.Rest.Studio.V1.Flow.Engagement.Step.FetchStepContextOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the context for an Engagement Step.
            </summary>
            <param name="options"> Fetch StepContext parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StepContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.Step.StepContextResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the context for an Engagement Step.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathEngagementSid"> The SID of the Engagement </param>
            <param name="pathStepSid"> Step SID </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StepContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.Step.StepContextResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the context for an Engagement Step.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathEngagementSid"> The SID of the Engagement </param>
            <param name="pathStepSid"> Step SID </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StepContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Engagement.Step.StepContextResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a StepContextResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> StepContextResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.Step.StepContextResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.Step.StepContextResource.Context">
            <summary>
            The current state of the flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.Step.StepContextResource.EngagementSid">
            <summary>
            The SID of the Engagement
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.Step.StepContextResource.FlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.Step.StepContextResource.StepSid">
            <summary>
            Step SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Engagement.Step.StepContextResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.ReadExecutionOptions">
            <summary>
            Retrieve a list of all Executions for the Flow.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ReadExecutionOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ReadExecutionOptions.DateCreatedFrom">
            <summary>
            Only show Executions that started on or after this ISO 8601 date-time
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ReadExecutionOptions.DateCreatedTo">
            <summary>
            Only show Executions that started before this ISO 8601 date-time
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ReadExecutionOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadExecutionOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ReadExecutionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.FetchExecutionOptions">
            <summary>
            Retrieve an Execution
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.FetchExecutionOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.FetchExecutionOptions.PathSid">
            <summary>
            The SID of the Execution resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.FetchExecutionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchExecutionOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathSid"> The SID of the Execution resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.FetchExecutionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.CreateExecutionOptions">
            <summary>
            Triggers a new Execution for the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.CreateExecutionOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.CreateExecutionOptions.To">
            <summary>
            The Contact phone number to start a Studio Flow Execution
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.CreateExecutionOptions.From">
            <summary>
            The Twilio phone number to send messages or initiate calls from during the Flow Execution
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.CreateExecutionOptions.Parameters">
            <summary>
            JSON data that will be added to the Flow's context
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.CreateExecutionOptions.#ctor(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber)">
            <summary>
            Construct a new CreateExecutionOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="to"> The Contact phone number to start a Studio Flow Execution </param>
            <param name="from"> The Twilio phone number to send messages or initiate calls from during the Flow Execution
                       </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.CreateExecutionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.DeleteExecutionOptions">
            <summary>
            Delete the Execution and all Steps relating to it.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.DeleteExecutionOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.DeleteExecutionOptions.PathSid">
            <summary>
            The SID of the Execution resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.DeleteExecutionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteExecutionOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathSid"> The SID of the Execution resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.DeleteExecutionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Read(Twilio.Rest.Studio.V1.Flow.ReadExecutionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Executions for the Flow.
            </summary>
            <param name="options"> Read Execution parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.ReadAsync(Twilio.Rest.Studio.V1.Flow.ReadExecutionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Executions for the Flow.
            </summary>
            <param name="options"> Read Execution parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Read(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Executions for the Flow.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="dateCreatedFrom"> Only show Executions that started on or after this ISO 8601 date-time </param>
            <param name="dateCreatedTo"> Only show Executions that started before this ISO 8601 date-time </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.ReadAsync(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Executions for the Flow.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="dateCreatedFrom"> Only show Executions that started on or after this ISO 8601 date-time </param>
            <param name="dateCreatedTo"> Only show Executions that started before this ISO 8601 date-time </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Studio.V1.Flow.ExecutionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Studio.V1.Flow.ExecutionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Fetch(Twilio.Rest.Studio.V1.Flow.FetchExecutionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve an Execution
            </summary>
            <param name="options"> Fetch Execution parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.FetchAsync(Twilio.Rest.Studio.V1.Flow.FetchExecutionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve an Execution
            </summary>
            <param name="options"> Fetch Execution parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve an Execution
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathSid"> The SID of the Execution resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve an Execution
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathSid"> The SID of the Execution resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Create(Twilio.Rest.Studio.V1.Flow.CreateExecutionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Triggers a new Execution for the Flow
            </summary>
            <param name="options"> Create Execution parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.CreateAsync(Twilio.Rest.Studio.V1.Flow.CreateExecutionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Triggers a new Execution for the Flow
            </summary>
            <param name="options"> Create Execution parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Create(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Triggers a new Execution for the Flow
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="to"> The Contact phone number to start a Studio Flow Execution </param>
            <param name="from"> The Twilio phone number to send messages or initiate calls from during the Flow Execution
                       </param>
            <param name="parameters"> JSON data that will be added to the Flow's context </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.CreateAsync(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Triggers a new Execution for the Flow
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="to"> The Contact phone number to start a Studio Flow Execution </param>
            <param name="from"> The Twilio phone number to send messages or initiate calls from during the Flow Execution
                       </param>
            <param name="parameters"> JSON data that will be added to the Flow's context </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Delete(Twilio.Rest.Studio.V1.Flow.DeleteExecutionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the Execution and all Steps relating to it.
            </summary>
            <param name="options"> Delete Execution parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.DeleteAsync(Twilio.Rest.Studio.V1.Flow.DeleteExecutionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the Execution and all Steps relating to it.
            </summary>
            <param name="options"> Delete Execution parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the Execution and all Steps relating to it.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathSid"> The SID of the Execution resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete the Execution and all Steps relating to it.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathSid"> The SID of the Execution resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Execution </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.ExecutionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ExecutionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ExecutionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ExecutionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ExecutionResource.FlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ExecutionResource.ContactSid">
            <summary>
            The SID of the Contact
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ExecutionResource.ContactChannelAddress">
            <summary>
            The phone number, SIP address or Client identifier that triggered the Execution
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Context">
            <summary>
            The current state of the flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Status">
            <summary>
            The status of the Execution
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ExecutionResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ExecutionResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.ExecutionResource.Links">
            <summary>
            Nested resource URLs
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionContextOptions">
            <summary>
            Retrieve the most recent context for an Execution.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionContextOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionContextOptions.PathExecutionSid">
            <summary>
            The SID of the Execution
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionContextOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchExecutionContextOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionContextOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionContextResource.Fetch(Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionContextOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the most recent context for an Execution.
            </summary>
            <param name="options"> Fetch ExecutionContext parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExecutionContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionContextResource.FetchAsync(Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionContextOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the most recent context for an Execution.
            </summary>
            <param name="options"> Fetch ExecutionContext parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExecutionContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionContextResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the most recent context for an Execution.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExecutionContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionContextResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the most recent context for an Execution.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExecutionContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionContextResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ExecutionContextResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ExecutionContextResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionContextResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionContextResource.Context">
            <summary>
            The current state of the flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionContextResource.FlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionContextResource.ExecutionSid">
            <summary>
            The SID of the Execution
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionContextResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.Execution.ReadExecutionStepOptions">
            <summary>
            Retrieve a list of all Steps for an Execution.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ReadExecutionStepOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ReadExecutionStepOptions.PathExecutionSid">
            <summary>
            The SID of the Execution
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ReadExecutionStepOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadExecutionStepOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ReadExecutionStepOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionStepOptions">
            <summary>
            Retrieve a Step.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionStepOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionStepOptions.PathExecutionSid">
            <summary>
            The SID of the Execution
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionStepOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionStepOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchExecutionStepOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionStepOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.Read(Twilio.Rest.Studio.V1.Flow.Execution.ReadExecutionStepOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Steps for an Execution.
            </summary>
            <param name="options"> Read ExecutionStep parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExecutionStep </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.ReadAsync(Twilio.Rest.Studio.V1.Flow.Execution.ReadExecutionStepOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Steps for an Execution.
            </summary>
            <param name="options"> Read ExecutionStep parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExecutionStep </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Steps for an Execution.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExecutionStep </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Steps for an Execution.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExecutionStep </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.NextPage(Twilio.Base.Page{Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.Fetch(Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionStepOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a Step.
            </summary>
            <param name="options"> Fetch ExecutionStep parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExecutionStep </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.FetchAsync(Twilio.Rest.Studio.V1.Flow.Execution.FetchExecutionStepOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a Step.
            </summary>
            <param name="options"> Fetch ExecutionStep parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExecutionStep </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a Step.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExecutionStep </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a Step.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExecutionStep </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ExecutionStepResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ExecutionStepResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.FlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.ExecutionSid">
            <summary>
            The SID of the Execution
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.Name">
            <summary>
            The event that caused the Flow to transition to the Step
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.Context">
            <summary>
            The current state of the flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.TransitionedFrom">
            <summary>
            The Widget that preceded the Widget for the Step
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.TransitionedTo">
            <summary>
            The Widget that will follow the Widget for the Step
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStepResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.FetchExecutionStepContextOptions">
            <summary>
            Retrieve the context for an Execution Step.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.FetchExecutionStepContextOptions.PathFlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.FetchExecutionStepContextOptions.PathExecutionSid">
            <summary>
            The SID of the Execution
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.FetchExecutionStepContextOptions.PathStepSid">
            <summary>
            Step SID
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.FetchExecutionStepContextOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchExecutionStepContextOptions
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
            <param name="pathStepSid"> Step SID </param>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.FetchExecutionStepContextOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.ExecutionStepContextResource.Fetch(Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.FetchExecutionStepContextOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the context for an Execution Step.
            </summary>
            <param name="options"> Fetch ExecutionStepContext parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExecutionStepContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.ExecutionStepContextResource.FetchAsync(Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.FetchExecutionStepContextOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the context for an Execution Step.
            </summary>
            <param name="options"> Fetch ExecutionStepContext parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExecutionStepContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.ExecutionStepContextResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the context for an Execution Step.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
            <param name="pathStepSid"> Step SID </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of ExecutionStepContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.ExecutionStepContextResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve the context for an Execution Step.
            </summary>
            <param name="pathFlowSid"> The SID of the Flow </param>
            <param name="pathExecutionSid"> The SID of the Execution </param>
            <param name="pathStepSid"> Step SID </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of ExecutionStepContext </returns>
        </member>
        <member name="M:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.ExecutionStepContextResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ExecutionStepContextResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ExecutionStepContextResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.ExecutionStepContextResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.ExecutionStepContextResource.Context">
            <summary>
            The current state of the flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.ExecutionStepContextResource.ExecutionSid">
            <summary>
            The SID of the Execution
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.ExecutionStepContextResource.FlowSid">
            <summary>
            The SID of the Flow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.ExecutionStepContextResource.StepSid">
            <summary>
            Step SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Studio.V1.Flow.Execution.ExecutionStep.ExecutionStepContextResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.FetchServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.FetchServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.DeleteServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.DeleteServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.CreateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.CreateServiceOptions.FriendlyName">
            <summary>
            A string that you assign to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.CreateServiceOptions.WebhookUrl">
            <summary>
            The URL we should call when Sync objects are manipulated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.CreateServiceOptions.ReachabilityWebhooksEnabled">
            <summary>
            Whether the service instance should call webhook_url when client endpoints connect to Sync
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.CreateServiceOptions.AclEnabled">
            <summary>
            Whether token identities in the Service must be granted access to Sync objects by using the Permissions resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.CreateServiceOptions.ReachabilityDebouncingEnabled">
            <summary>
            Whether every endpoint_disconnected event occurs after a configurable delay
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.CreateServiceOptions.ReachabilityDebouncingWindow">
            <summary>
            The reachability event delay in milliseconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.CreateServiceOptions.WebhooksFromRestEnabled">
            <summary>
            Whether the Service instance should call webhook_url when the REST API is used to update Sync objects
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.ReadServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadServiceOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.UpdateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateServiceOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.UpdateServiceOptions.PathSid">
            <summary>
            The SID of the Service resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.UpdateServiceOptions.WebhookUrl">
            <summary>
            The URL we should call when Sync objects are manipulated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.UpdateServiceOptions.FriendlyName">
            <summary>
            A string that you assign to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.UpdateServiceOptions.ReachabilityWebhooksEnabled">
            <summary>
            Whether the service instance should call webhook_url when client endpoints connect to Sync
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.UpdateServiceOptions.AclEnabled">
            <summary>
            Whether token identities in the Service must be granted access to Sync objects by using the Permissions resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.UpdateServiceOptions.ReachabilityDebouncingEnabled">
            <summary>
            Whether every endpoint_disconnected event occurs after a configurable delay
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.UpdateServiceOptions.ReachabilityDebouncingWindow">
            <summary>
            The reachability event delay in milliseconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.UpdateServiceOptions.WebhooksFromRestEnabled">
            <summary>
            Whether the Service instance should call webhook_url when the REST API is used to update Sync objects
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.Fetch(Twilio.Rest.Sync.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.FetchAsync(Twilio.Rest.Sync.V1.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the Service resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.Delete(Twilio.Rest.Sync.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.DeleteAsync(Twilio.Rest.Sync.V1.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the Service resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.Create(Twilio.Rest.Sync.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.CreateAsync(Twilio.Rest.Sync.V1.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.Create(System.String,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string that you assign to describe the resource </param>
            <param name="webhookUrl"> The URL we should call when Sync objects are manipulated </param>
            <param name="reachabilityWebhooksEnabled"> Whether the service instance should call webhook_url when client
                                              endpoints connect to Sync </param>
            <param name="aclEnabled"> Whether token identities in the Service must be granted access to Sync objects by using
                             the Permissions resource </param>
            <param name="reachabilityDebouncingEnabled"> Whether every endpoint_disconnected event occurs after a configurable
                                                delay </param>
            <param name="reachabilityDebouncingWindow"> The reachability event delay in milliseconds </param>
            <param name="webhooksFromRestEnabled"> Whether the Service instance should call webhook_url when the REST API is
                                          used to update Sync objects </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.CreateAsync(System.String,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string that you assign to describe the resource </param>
            <param name="webhookUrl"> The URL we should call when Sync objects are manipulated </param>
            <param name="reachabilityWebhooksEnabled"> Whether the service instance should call webhook_url when client
                                              endpoints connect to Sync </param>
            <param name="aclEnabled"> Whether token identities in the Service must be granted access to Sync objects by using
                             the Permissions resource </param>
            <param name="reachabilityDebouncingEnabled"> Whether every endpoint_disconnected event occurs after a configurable
                                                delay </param>
            <param name="reachabilityDebouncingWindow"> The reachability event delay in milliseconds </param>
            <param name="webhooksFromRestEnabled"> Whether the Service instance should call webhook_url when the REST API is
                                          used to update Sync objects </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.Read(Twilio.Rest.Sync.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.ReadAsync(Twilio.Rest.Sync.V1.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.Update(Twilio.Rest.Sync.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.UpdateAsync(Twilio.Rest.Sync.V1.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.Update(System.String,System.Uri,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
            <param name="webhookUrl"> The URL we should call when Sync objects are manipulated </param>
            <param name="friendlyName"> A string that you assign to describe the resource </param>
            <param name="reachabilityWebhooksEnabled"> Whether the service instance should call webhook_url when client
                                              endpoints connect to Sync </param>
            <param name="aclEnabled"> Whether token identities in the Service must be granted access to Sync objects by using
                             the Permissions resource </param>
            <param name="reachabilityDebouncingEnabled"> Whether every endpoint_disconnected event occurs after a configurable
                                                delay </param>
            <param name="reachabilityDebouncingWindow"> The reachability event delay in milliseconds </param>
            <param name="webhooksFromRestEnabled"> Whether the Service instance should call webhook_url when the REST API is
                                          used to update Sync objects </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.UpdateAsync(System.String,System.Uri,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the Service resource to update </param>
            <param name="webhookUrl"> The URL we should call when Sync objects are manipulated </param>
            <param name="friendlyName"> A string that you assign to describe the resource </param>
            <param name="reachabilityWebhooksEnabled"> Whether the service instance should call webhook_url when client
                                              endpoints connect to Sync </param>
            <param name="aclEnabled"> Whether token identities in the Service must be granted access to Sync objects by using
                             the Permissions resource </param>
            <param name="reachabilityDebouncingEnabled"> Whether every endpoint_disconnected event occurs after a configurable
                                                delay </param>
            <param name="reachabilityDebouncingWindow"> The reachability event delay in milliseconds </param>
            <param name="webhooksFromRestEnabled"> Whether the Service instance should call webhook_url when the REST API is
                                          used to update Sync objects </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.Url">
            <summary>
            The absolute URL of the Service resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.WebhookUrl">
            <summary>
            The URL we call when Sync objects are manipulated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.WebhooksFromRestEnabled">
            <summary>
            Whether the Service instance should call webhook_url when the REST API is used to update Sync objects
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.ReachabilityWebhooksEnabled">
            <summary>
            Whether the service instance calls webhook_url when client endpoints connect to Sync
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.AclEnabled">
            <summary>
            Whether token identities in the Service must be granted access to Sync objects by using the Permissions resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.ReachabilityDebouncingEnabled">
            <summary>
            Whether every endpoint_disconnected event occurs after a configurable delay
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.ReachabilityDebouncingWindow">
            <summary>
            The reachability event delay in milliseconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.ServiceResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.FetchDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchDocumentOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.FetchDocumentOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Document resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.FetchDocumentOptions.PathSid">
            <summary>
            The SID of the Document resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.FetchDocumentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchDocumentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resource to fetch </param>
            <param name="pathSid"> The SID of the Document resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.FetchDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.DeleteDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteDocumentOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DeleteDocumentOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Document resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DeleteDocumentOptions.PathSid">
            <summary>
            The SID of the Document resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DeleteDocumentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteDocumentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resource to delete </param>
            <param name="pathSid"> The SID of the Document resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DeleteDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.CreateDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateDocumentOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateDocumentOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service to associate the Document resource to create with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateDocumentOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the Sync Document
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateDocumentOptions.Data">
            <summary>
            A JSON string that represents an arbitrary, schema-less object that the Sync Document stores
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateDocumentOptions.Ttl">
            <summary>
            How long, in seconds, before the Sync Document expires and is deleted
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.CreateDocumentOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateDocumentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to associate the Document resource to create with </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.CreateDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.ReadDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadDocumentOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.ReadDocumentOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Document resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.ReadDocumentOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadDocumentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.ReadDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.UpdateDocumentOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateDocumentOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateDocumentOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Document resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateDocumentOptions.PathSid">
            <summary>
            The SID of the Document resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateDocumentOptions.Data">
            <summary>
            A JSON string that represents an arbitrary, schema-less object that the Sync Document stores
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateDocumentOptions.Ttl">
            <summary>
            How long, in seconds, before the Document resource expires and is deleted
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.UpdateDocumentOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateDocumentOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resource to update </param>
            <param name="pathSid"> The SID of the Document resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.UpdateDocumentOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.Fetch(Twilio.Rest.Sync.V1.Service.FetchDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.FetchAsync(Twilio.Rest.Sync.V1.Service.FetchDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resource to fetch </param>
            <param name="pathSid"> The SID of the Document resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resource to fetch </param>
            <param name="pathSid"> The SID of the Document resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.Delete(Twilio.Rest.Sync.V1.Service.DeleteDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.DeleteAsync(Twilio.Rest.Sync.V1.Service.DeleteDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resource to delete </param>
            <param name="pathSid"> The SID of the Document resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resource to delete </param>
            <param name="pathSid"> The SID of the Document resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.Create(Twilio.Rest.Sync.V1.Service.CreateDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.CreateAsync(Twilio.Rest.Sync.V1.Service.CreateDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.Create(System.String,System.String,System.Object,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to associate the Document resource to create with </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Sync Document </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the Sync Document stores
                       </param>
            <param name="ttl"> How long, in seconds, before the Sync Document expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.CreateAsync(System.String,System.String,System.Object,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to associate the Document resource to create with </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the Sync Document </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the Sync Document stores
                       </param>
            <param name="ttl"> How long, in seconds, before the Sync Document expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.Read(Twilio.Rest.Sync.V1.Service.ReadDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.ReadAsync(Twilio.Rest.Sync.V1.Service.ReadDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.NextPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.DocumentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.DocumentResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.Update(Twilio.Rest.Sync.V1.Service.UpdateDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.UpdateAsync(Twilio.Rest.Sync.V1.Service.UpdateDocumentOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Document parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.Update(System.String,System.String,System.Object,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resource to update </param>
            <param name="pathSid"> The SID of the Document resource to update </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the Sync Document stores
                       </param>
            <param name="ttl"> How long, in seconds, before the Document resource expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.UpdateAsync(System.String,System.String,System.Object,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document resource to update </param>
            <param name="pathSid"> The SID of the Document resource to update </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the Sync Document stores
                       </param>
            <param name="ttl"> How long, in seconds, before the Document resource expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Document </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DocumentResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DocumentResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DocumentResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.ServiceSid">
            <summary>
            The SID of the Sync Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.Url">
            <summary>
            The absolute URL of the Document resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.Links">
            <summary>
            The URLs of resources related to the Sync Document
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.Revision">
            <summary>
            The current revision of the Sync Document, represented by a string identifier
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.Data">
            <summary>
            An arbitrary, schema-less object that the Sync Document stores
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.DateExpires">
            <summary>
            The ISO 8601 date and time in GMT when the Sync Document expires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DocumentResource.CreatedBy">
            <summary>
            The identity of the Sync Document's creator
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.Document.FetchDocumentPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Sync Document Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.FetchDocumentPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Document Permission resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.FetchDocumentPermissionOptions.PathDocumentSid">
            <summary>
            The SID of the Sync Document with the Document Permission resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.FetchDocumentPermissionOptions.PathIdentity">
            <summary>
            The application-defined string that uniquely identifies the User's Document Permission resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.FetchDocumentPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchDocumentPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resource to fetch </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resource to fetch </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Document Permission
                               resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.FetchDocumentPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.Document.DeleteDocumentPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Sync Document Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.DeleteDocumentPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Document Permission resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.DeleteDocumentPermissionOptions.PathDocumentSid">
            <summary>
            The SID of the Sync Document with the Document Permission resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.DeleteDocumentPermissionOptions.PathIdentity">
            <summary>
            The application-defined string that uniquely identifies the User's Document Permission resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DeleteDocumentPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteDocumentPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resource to delete </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resource to delete </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Document Permission
                               resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DeleteDocumentPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.Document.ReadDocumentPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Permissions applying to a Sync Document.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.ReadDocumentPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Document Permission resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.ReadDocumentPermissionOptions.PathDocumentSid">
            <summary>
            The SID of the Sync Document with the Document Permission resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.ReadDocumentPermissionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadDocumentPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resources to read </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.ReadDocumentPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.Document.UpdateDocumentPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update an identity's access to a specific Sync Document.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.UpdateDocumentPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Document Permission resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.UpdateDocumentPermissionOptions.PathDocumentSid">
            <summary>
            The SID of the Sync Document with the Document Permission resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.UpdateDocumentPermissionOptions.PathIdentity">
            <summary>
            The application-defined string that uniquely identifies the User's Document Permission resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.UpdateDocumentPermissionOptions.Read">
            <summary>
            Read access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.UpdateDocumentPermissionOptions.Write">
            <summary>
            Write access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.UpdateDocumentPermissionOptions.Manage">
            <summary>
            Manage access
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.UpdateDocumentPermissionOptions.#ctor(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
            <summary>
            Construct a new UpdateDocumentPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resource to update </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resource to update </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Document Permission
                               resource to update </param>
            <param name="read"> Read access </param>
            <param name="write"> Write access </param>
            <param name="manage"> Manage access </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.UpdateDocumentPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Fetch(Twilio.Rest.Sync.V1.Service.Document.FetchDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Document Permission.
            </summary>
            <param name="options"> Fetch DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.FetchAsync(Twilio.Rest.Sync.V1.Service.Document.FetchDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Document Permission.
            </summary>
            <param name="options"> Fetch DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Document Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resource to fetch </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resource to fetch </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Document Permission
                               resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Document Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resource to fetch </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resource to fetch </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Document Permission
                               resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Delete(Twilio.Rest.Sync.V1.Service.Document.DeleteDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Document Permission.
            </summary>
            <param name="options"> Delete DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.DeleteAsync(Twilio.Rest.Sync.V1.Service.Document.DeleteDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Document Permission.
            </summary>
            <param name="options"> Delete DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Document Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resource to delete </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resource to delete </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Document Permission
                               resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Document Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resource to delete </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resource to delete </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Document Permission
                               resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Read(Twilio.Rest.Sync.V1.Service.Document.ReadDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Document.
            </summary>
            <param name="options"> Read DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.ReadAsync(Twilio.Rest.Sync.V1.Service.Document.ReadDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Document.
            </summary>
            <param name="options"> Read DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Document.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resources to read </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Document.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resources to read </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Update(Twilio.Rest.Sync.V1.Service.Document.UpdateDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Document.
            </summary>
            <param name="options"> Update DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.UpdateAsync(Twilio.Rest.Sync.V1.Service.Document.UpdateDocumentPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Document.
            </summary>
            <param name="options"> Update DocumentPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Update(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Document.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resource to update </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resource to update </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Document Permission
                               resource to update </param>
            <param name="read"> Read access </param>
            <param name="write"> Write access </param>
            <param name="manage"> Manage access </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Document.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Document Permission resource to update </param>
            <param name="pathDocumentSid"> The SID of the Sync Document with the Document Permission resource to update </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Document Permission
                               resource to update </param>
            <param name="read"> Read access </param>
            <param name="write"> Write access </param>
            <param name="manage"> Manage access </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DocumentPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DocumentPermissionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DocumentPermissionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.ServiceSid">
            <summary>
            The SID of the Sync Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.DocumentSid">
            <summary>
            The Sync Document SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Identity">
            <summary>
            The identity of the user to whom the Sync Document Permission applies
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource._Read">
            <summary>
            Read access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Write">
            <summary>
            Write access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Manage">
            <summary>
            Manage access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.Document.DocumentPermissionResource.Url">
            <summary>
            The absolute URL of the Sync Document Permission resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.FetchSyncListOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchSyncListOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.FetchSyncListOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync List resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.FetchSyncListOptions.PathSid">
            <summary>
            The SID of the Sync List resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.FetchSyncListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchSyncListOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resource to fetch </param>
            <param name="pathSid"> The SID of the Sync List resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.FetchSyncListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.DeleteSyncListOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteSyncListOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DeleteSyncListOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync List resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DeleteSyncListOptions.PathSid">
            <summary>
            The SID of the Sync List resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DeleteSyncListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteSyncListOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resource to delete </param>
            <param name="pathSid"> The SID of the Sync List resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DeleteSyncListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.CreateSyncListOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateSyncListOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateSyncListOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service  to create the new Sync List in
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateSyncListOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateSyncListOptions.Ttl">
            <summary>
            Alias for collection_ttl
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateSyncListOptions.CollectionTtl">
            <summary>
            How long, in seconds, before the Sync List expires and is deleted
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.CreateSyncListOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateSyncListOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service  to create the new Sync List in </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.CreateSyncListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.UpdateSyncListOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateSyncListOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateSyncListOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync List resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateSyncListOptions.PathSid">
            <summary>
            The SID of the Sync List resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateSyncListOptions.Ttl">
            <summary>
            An alias for collection_ttl
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateSyncListOptions.CollectionTtl">
            <summary>
            How long, in seconds, before the Sync List expires and is deleted
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.UpdateSyncListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateSyncListOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resource to update </param>
            <param name="pathSid"> The SID of the Sync List resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.UpdateSyncListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.ReadSyncListOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadSyncListOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.ReadSyncListOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync List resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.ReadSyncListOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadSyncListOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.ReadSyncListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.Fetch(Twilio.Rest.Sync.V1.Service.FetchSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.FetchAsync(Twilio.Rest.Sync.V1.Service.FetchSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resource to fetch </param>
            <param name="pathSid"> The SID of the Sync List resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resource to fetch </param>
            <param name="pathSid"> The SID of the Sync List resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.Delete(Twilio.Rest.Sync.V1.Service.DeleteSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.DeleteAsync(Twilio.Rest.Sync.V1.Service.DeleteSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resource to delete </param>
            <param name="pathSid"> The SID of the Sync List resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resource to delete </param>
            <param name="pathSid"> The SID of the Sync List resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.Create(Twilio.Rest.Sync.V1.Service.CreateSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.CreateAsync(Twilio.Rest.Sync.V1.Service.CreateSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.Create(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service  to create the new Sync List in </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="ttl"> Alias for collection_ttl </param>
            <param name="collectionTtl"> How long, in seconds, before the Sync List expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.CreateAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service  to create the new Sync List in </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="ttl"> Alias for collection_ttl </param>
            <param name="collectionTtl"> How long, in seconds, before the Sync List expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.Update(Twilio.Rest.Sync.V1.Service.UpdateSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.UpdateAsync(Twilio.Rest.Sync.V1.Service.UpdateSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.Update(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resource to update </param>
            <param name="pathSid"> The SID of the Sync List resource to update </param>
            <param name="ttl"> An alias for collection_ttl </param>
            <param name="collectionTtl"> How long, in seconds, before the Sync List expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.UpdateAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resource to update </param>
            <param name="pathSid"> The SID of the Sync List resource to update </param>
            <param name="ttl"> An alias for collection_ttl </param>
            <param name="collectionTtl"> How long, in seconds, before the Sync List expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.Read(Twilio.Rest.Sync.V1.Service.ReadSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.ReadAsync(Twilio.Rest.Sync.V1.Service.ReadSyncListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncList </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.NextPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncListResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncListResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncListResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncListResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncListResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncListResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncListResource.ServiceSid">
            <summary>
            The SID of the Sync Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncListResource.Url">
            <summary>
            The absolute URL of the Sync List resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncListResource.Links">
            <summary>
            The URLs of the Sync List's nested resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncListResource.Revision">
            <summary>
            The current revision of the Sync List, represented as a string
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncListResource.DateExpires">
            <summary>
            The ISO 8601 date and time in GMT when the Sync List expires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncListResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncListResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncListResource.CreatedBy">
            <summary>
            The identity of the Sync List's creator
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListItemOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchSyncListItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListItemOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync List Item resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListItemOptions.PathListSid">
            <summary>
            The SID of the Sync List with the Sync List Item resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListItemOptions.PathIndex">
            <summary>
            The index of the Sync List Item resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListItemOptions.#ctor(System.String,System.String,System.Nullable{System.Int32})">
            <summary>
            Construct a new FetchSyncListItemOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Item resource to fetch </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Item resource to fetch </param>
            <param name="pathIndex"> The index of the Sync List Item resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListItemOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteSyncListItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListItemOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync List Item resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListItemOptions.PathListSid">
            <summary>
            The SID of the Sync List with the Sync List Item resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListItemOptions.PathIndex">
            <summary>
            The index of the Sync List Item resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListItemOptions.#ctor(System.String,System.String,System.Nullable{System.Int32})">
            <summary>
            Construct a new DeleteSyncListItemOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Item resource to delete </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Item resource to delete </param>
            <param name="pathIndex"> The index of the Sync List Item resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncList.CreateSyncListItemOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateSyncListItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.CreateSyncListItemOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service to create the List Item in
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.CreateSyncListItemOptions.PathListSid">
            <summary>
            The SID of the Sync List to add the new List Item to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.CreateSyncListItemOptions.Data">
            <summary>
            A JSON string that represents an arbitrary, schema-less object that the List Item stores
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.CreateSyncListItemOptions.Ttl">
            <summary>
            An alias for item_ttl
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.CreateSyncListItemOptions.ItemTtl">
            <summary>
            How long, in seconds, before the List Item expires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.CreateSyncListItemOptions.CollectionTtl">
            <summary>
            How long, in seconds, before the List Item's parent Sync List expires
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.CreateSyncListItemOptions.#ctor(System.String,System.String,System.Object)">
            <summary>
            Construct a new CreateSyncListItemOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the List Item in </param>
            <param name="pathListSid"> The SID of the Sync List to add the new List Item to </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the List Item stores
                       </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.CreateSyncListItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListItemOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadSyncListItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListItemOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the List Item resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListItemOptions.PathListSid">
            <summary>
            The SID of the Sync List with the List Items to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListItemOptions.Order">
            <summary>
            The order to return the List Items
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListItemOptions.From">
            <summary>
            The index of the first Sync List Item resource to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListItemOptions.Bounds">
            <summary>
            Whether to include the List Item referenced by the from parameter
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListItemOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadSyncListItemOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the List Item resources to read </param>
            <param name="pathListSid"> The SID of the Sync List with the List Items to read </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateSyncListItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync List Item resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions.PathListSid">
            <summary>
            The SID of the Sync List with the Sync List Item resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions.PathIndex">
            <summary>
            The index of the Sync List Item resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions.Data">
            <summary>
            A JSON string that represents an arbitrary, schema-less object that the List Item stores
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions.Ttl">
            <summary>
            An alias for item_ttl
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions.ItemTtl">
            <summary>
            How long, in seconds, before the List Item expires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions.CollectionTtl">
            <summary>
            How long, in seconds, before the List Item's parent Sync List expires
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions.#ctor(System.String,System.String,System.Nullable{System.Int32})">
            <summary>
            Construct a new UpdateSyncListItemOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Item resource to update </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Item resource to update </param>
            <param name="pathIndex"> The index of the Sync List Item resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Fetch(Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.FetchAsync(Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Fetch(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Item resource to fetch </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Item resource to fetch </param>
            <param name="pathIndex"> The index of the Sync List Item resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.FetchAsync(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Item resource to fetch </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Item resource to fetch </param>
            <param name="pathIndex"> The index of the Sync List Item resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Delete(Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.DeleteAsync(Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Delete(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Item resource to delete </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Item resource to delete </param>
            <param name="pathIndex"> The index of the Sync List Item resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.DeleteAsync(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Item resource to delete </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Item resource to delete </param>
            <param name="pathIndex"> The index of the Sync List Item resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Create(Twilio.Rest.Sync.V1.Service.SyncList.CreateSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.CreateAsync(Twilio.Rest.Sync.V1.Service.SyncList.CreateSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Create(System.String,System.String,System.Object,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the List Item in </param>
            <param name="pathListSid"> The SID of the Sync List to add the new List Item to </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the List Item stores
                       </param>
            <param name="ttl"> An alias for item_ttl </param>
            <param name="itemTtl"> How long, in seconds, before the List Item expires </param>
            <param name="collectionTtl"> How long, in seconds, before the List Item's parent Sync List expires </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.CreateAsync(System.String,System.String,System.Object,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the List Item in </param>
            <param name="pathListSid"> The SID of the Sync List to add the new List Item to </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the List Item stores
                       </param>
            <param name="ttl"> An alias for item_ttl </param>
            <param name="itemTtl"> How long, in seconds, before the List Item expires </param>
            <param name="collectionTtl"> How long, in seconds, before the List Item's parent Sync List expires </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Read(Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.ReadAsync(Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Read(System.String,System.String,Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.QueryResultOrderEnum,System.String,Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.QueryFromBoundTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the List Item resources to read </param>
            <param name="pathListSid"> The SID of the Sync List with the List Items to read </param>
            <param name="order"> The order to return the List Items </param>
            <param name="from"> The index of the first Sync List Item resource to read </param>
            <param name="bounds"> Whether to include the List Item referenced by the from parameter </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.ReadAsync(System.String,System.String,Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.QueryResultOrderEnum,System.String,Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.QueryFromBoundTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the List Item resources to read </param>
            <param name="pathListSid"> The SID of the Sync List with the List Items to read </param>
            <param name="order"> The order to return the List Items </param>
            <param name="from"> The index of the first Sync List Item resource to read </param>
            <param name="bounds"> Whether to include the List Item referenced by the from parameter </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.NextPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Update(Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.UpdateAsync(Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncListItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Update(System.String,System.String,System.Nullable{System.Int32},System.Object,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Item resource to update </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Item resource to update </param>
            <param name="pathIndex"> The index of the Sync List Item resource to update </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the List Item stores
                       </param>
            <param name="ttl"> An alias for item_ttl </param>
            <param name="itemTtl"> How long, in seconds, before the List Item expires </param>
            <param name="collectionTtl"> How long, in seconds, before the List Item's parent Sync List expires </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.UpdateAsync(System.String,System.String,System.Nullable{System.Int32},System.Object,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Item resource to update </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Item resource to update </param>
            <param name="pathIndex"> The index of the Sync List Item resource to update </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the List Item stores
                       </param>
            <param name="ttl"> An alias for item_ttl </param>
            <param name="itemTtl"> How long, in seconds, before the List Item expires </param>
            <param name="collectionTtl"> How long, in seconds, before the List Item's parent Sync List expires </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncListItemResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncListItemResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Index">
            <summary>
            The automatically generated index of the List Item
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.ServiceSid">
            <summary>
            The SID of the Sync Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.ListSid">
            <summary>
            The SID of the Sync List that contains the List Item
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Url">
            <summary>
            The absolute URL of the List Item resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Revision">
            <summary>
            The current revision of the item, represented as a string
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.Data">
            <summary>
            An arbitrary, schema-less object that the List Item stores
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.DateExpires">
            <summary>
            The ISO 8601 date and time in GMT when the List Item expires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListItemResource.CreatedBy">
            <summary>
            The identity of the List Item's creator
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Sync List Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync List Permission resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListPermissionOptions.PathListSid">
            <summary>
            The SID of the Sync List with the Sync List Permission resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListPermissionOptions.PathIdentity">
            <summary>
            The application-defined string that uniquely identifies the User's Sync List Permission resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchSyncListPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resource to fetch </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resource to fetch </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync List Permission
                               resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Sync List Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync List Permission resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListPermissionOptions.PathListSid">
            <summary>
            The SID of the Sync List with the Sync List Permission resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListPermissionOptions.PathIdentity">
            <summary>
            The application-defined string that uniquely identifies the User's Sync List Permission resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteSyncListPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resource to delete </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resource to delete </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync List Permission
                               resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Permissions applying to a Sync List.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync List Permission resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListPermissionOptions.PathListSid">
            <summary>
            The SID of the Sync List with the Sync List Permission resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListPermissionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadSyncListPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resources to read </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update an identity's access to a specific Sync List.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync List Permission resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListPermissionOptions.PathListSid">
            <summary>
            The SID of the Sync List with the Sync List Permission resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListPermissionOptions.PathIdentity">
            <summary>
            The application-defined string that uniquely identifies the User's Sync List Permission resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListPermissionOptions.Read">
            <summary>
            Read access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListPermissionOptions.Write">
            <summary>
            Write access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListPermissionOptions.Manage">
            <summary>
            Manage access
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListPermissionOptions.#ctor(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
            <summary>
            Construct a new UpdateSyncListPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resource to update </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resource to update </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync List Permission
                               resource to update </param>
            <param name="read"> Read access </param>
            <param name="write"> Write access </param>
            <param name="manage"> Manage access </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Fetch(Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync List Permission.
            </summary>
            <param name="options"> Fetch SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.FetchAsync(Twilio.Rest.Sync.V1.Service.SyncList.FetchSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync List Permission.
            </summary>
            <param name="options"> Fetch SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync List Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resource to fetch </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resource to fetch </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync List Permission
                               resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync List Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resource to fetch </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resource to fetch </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync List Permission
                               resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Delete(Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync List Permission.
            </summary>
            <param name="options"> Delete SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.DeleteAsync(Twilio.Rest.Sync.V1.Service.SyncList.DeleteSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync List Permission.
            </summary>
            <param name="options"> Delete SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync List Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resource to delete </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resource to delete </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync List Permission
                               resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync List Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resource to delete </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resource to delete </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync List Permission
                               resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Read(Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync List.
            </summary>
            <param name="options"> Read SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.ReadAsync(Twilio.Rest.Sync.V1.Service.SyncList.ReadSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync List.
            </summary>
            <param name="options"> Read SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync List.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resources to read </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync List.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resources to read </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Update(Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync List.
            </summary>
            <param name="options"> Update SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.UpdateAsync(Twilio.Rest.Sync.V1.Service.SyncList.UpdateSyncListPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync List.
            </summary>
            <param name="options"> Update SyncListPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Update(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync List.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resource to update </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resource to update </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync List Permission
                               resource to update </param>
            <param name="read"> Read access </param>
            <param name="write"> Write access </param>
            <param name="manage"> Manage access </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync List.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync List Permission resource to update </param>
            <param name="pathListSid"> The SID of the Sync List with the Sync List Permission resource to update </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync List Permission
                               resource to update </param>
            <param name="read"> Read access </param>
            <param name="write"> Write access </param>
            <param name="manage"> Manage access </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncListPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncListPermissionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncListPermissionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.ServiceSid">
            <summary>
            The SID of the Sync Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.ListSid">
            <summary>
            The SID of the Sync List to which the Permission applies
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Identity">
            <summary>
            The identity of the user to whom the Sync List Permission applies
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource._Read">
            <summary>
            Read access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Write">
            <summary>
            Write access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Manage">
            <summary>
            Manage access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncList.SyncListPermissionResource.Url">
            <summary>
            The absolute URL of the Sync List Permission resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.FetchSyncMapOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchSyncMapOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.FetchSyncMapOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Map resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.FetchSyncMapOptions.PathSid">
            <summary>
            The SID of the Sync Map resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.FetchSyncMapOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchSyncMapOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resource to fetch </param>
            <param name="pathSid"> The SID of the Sync Map resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.FetchSyncMapOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.DeleteSyncMapOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteSyncMapOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DeleteSyncMapOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Map resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DeleteSyncMapOptions.PathSid">
            <summary>
            The SID of the Sync Map resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DeleteSyncMapOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteSyncMapOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resource to delete </param>
            <param name="pathSid"> The SID of the Sync Map resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DeleteSyncMapOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.CreateSyncMapOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateSyncMapOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateSyncMapOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service to create the Sync Map in
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateSyncMapOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateSyncMapOptions.Ttl">
            <summary>
            An alias for collection_ttl
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateSyncMapOptions.CollectionTtl">
            <summary>
            How long, in seconds, before the Sync Map expires and is deleted
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.CreateSyncMapOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateSyncMapOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the Sync Map in </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.CreateSyncMapOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.UpdateSyncMapOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateSyncMapOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateSyncMapOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Map resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateSyncMapOptions.PathSid">
            <summary>
            The SID of the Sync Map resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateSyncMapOptions.Ttl">
            <summary>
            An alias for collection_ttl
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateSyncMapOptions.CollectionTtl">
            <summary>
            How long, in seconds, before the Sync Map expires and is deleted
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.UpdateSyncMapOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateSyncMapOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resource to update </param>
            <param name="pathSid"> The SID of the Sync Map resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.UpdateSyncMapOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.ReadSyncMapOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadSyncMapOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.ReadSyncMapOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Map resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.ReadSyncMapOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadSyncMapOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.ReadSyncMapOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.Fetch(Twilio.Rest.Sync.V1.Service.FetchSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.FetchAsync(Twilio.Rest.Sync.V1.Service.FetchSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resource to fetch </param>
            <param name="pathSid"> The SID of the Sync Map resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resource to fetch </param>
            <param name="pathSid"> The SID of the Sync Map resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.Delete(Twilio.Rest.Sync.V1.Service.DeleteSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.DeleteAsync(Twilio.Rest.Sync.V1.Service.DeleteSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resource to delete </param>
            <param name="pathSid"> The SID of the Sync Map resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resource to delete </param>
            <param name="pathSid"> The SID of the Sync Map resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.Create(Twilio.Rest.Sync.V1.Service.CreateSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.CreateAsync(Twilio.Rest.Sync.V1.Service.CreateSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.Create(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the Sync Map in </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="ttl"> An alias for collection_ttl </param>
            <param name="collectionTtl"> How long, in seconds, before the Sync Map expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.CreateAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the Sync Map in </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="ttl"> An alias for collection_ttl </param>
            <param name="collectionTtl"> How long, in seconds, before the Sync Map expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.Update(Twilio.Rest.Sync.V1.Service.UpdateSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.UpdateAsync(Twilio.Rest.Sync.V1.Service.UpdateSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.Update(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resource to update </param>
            <param name="pathSid"> The SID of the Sync Map resource to update </param>
            <param name="ttl"> An alias for collection_ttl </param>
            <param name="collectionTtl"> How long, in seconds, before the Sync Map expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.UpdateAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resource to update </param>
            <param name="pathSid"> The SID of the Sync Map resource to update </param>
            <param name="ttl"> An alias for collection_ttl </param>
            <param name="collectionTtl"> How long, in seconds, before the Sync Map expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.Read(Twilio.Rest.Sync.V1.Service.ReadSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.ReadAsync(Twilio.Rest.Sync.V1.Service.ReadSyncMapOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncMap parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMap </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.NextPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncMapResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncMapResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMapResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncMapResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncMapResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMapResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMapResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMapResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMapResource.ServiceSid">
            <summary>
            The SID of the Sync Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMapResource.Url">
            <summary>
            The absolute URL of the Sync Map resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMapResource.Links">
            <summary>
            The URLs of the Sync Map's nested resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMapResource.Revision">
            <summary>
            The current revision of the Sync Map, represented as a string
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMapResource.DateExpires">
            <summary>
            The ISO 8601 date and time in GMT when the Sync Map expires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMapResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMapResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMapResource.CreatedBy">
            <summary>
            The identity of the Sync Map's creator
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapItemOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             FetchSyncMapItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapItemOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Map Item resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapItemOptions.PathMapSid">
            <summary>
            The SID of the Sync Map with the Sync Map Item resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapItemOptions.PathKey">
            <summary>
            The key value of the Sync Map Item resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapItemOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchSyncMapItemOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Item resource to fetch </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to fetch </param>
            <param name="pathKey"> The key value of the Sync Map Item resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapItemOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             DeleteSyncMapItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapItemOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Map Item resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapItemOptions.PathMapSid">
            <summary>
            The SID of the Sync Map with the Sync Map Item resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapItemOptions.PathKey">
            <summary>
            The key value of the Sync Map Item resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapItemOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteSyncMapItemOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Item resource to delete </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to delete </param>
            <param name="pathKey"> The key value of the Sync Map Item resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             CreateSyncMapItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service to create the Map Item in
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions.PathMapSid">
            <summary>
            The SID of the Sync Map to add the new Map Item to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions.Key">
            <summary>
            The unique, user-defined key for the Map Item
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions.Data">
            <summary>
            A JSON string that represents an arbitrary, schema-less object that the Map Item stores
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions.Ttl">
            <summary>
            An alias for item_ttl
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions.ItemTtl">
            <summary>
            How long, in seconds, before the Map Item expires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions.CollectionTtl">
            <summary>
            How long, in seconds, before the Map Item's parent Sync Map expires and is deleted
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions.#ctor(System.String,System.String,System.String,System.Object)">
            <summary>
            Construct a new CreateSyncMapItemOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the Map Item in </param>
            <param name="pathMapSid"> The SID of the Sync Map to add the new Map Item to </param>
            <param name="key"> The unique, user-defined key for the Map Item </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the Map Item stores </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapItemOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             ReadSyncMapItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapItemOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Map Item resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapItemOptions.PathMapSid">
            <summary>
            The SID of the Sync Map with the Sync Map Item resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapItemOptions.Order">
            <summary>
            How to order the Map Items returned by their key value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapItemOptions.From">
            <summary>
            The index of the first Sync Map Item resource to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapItemOptions.Bounds">
            <summary>
            Whether to include the Map Item referenced by the from parameter
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapItemOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadSyncMapItemOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Map Item resources to read </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             UpdateSyncMapItemOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Map Item resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions.PathMapSid">
            <summary>
            The SID of the Sync Map with the Sync Map Item resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions.PathKey">
            <summary>
            The key value of the Sync Map Item resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions.Data">
            <summary>
            A JSON string that represents an arbitrary, schema-less object that the Map Item stores
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions.Ttl">
            <summary>
            An alias for item_ttl
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions.ItemTtl">
            <summary>
            How long, in seconds, before the Map Item expires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions.CollectionTtl">
            <summary>
            How long, in seconds, before the Map Item's parent Sync Map expires and is deleted
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateSyncMapItemOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Item resource to update </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to update </param>
            <param name="pathKey"> The key value of the Sync Map Item resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Fetch(Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.FetchAsync(Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Item resource to fetch </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to fetch </param>
            <param name="pathKey"> The key value of the Sync Map Item resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Item resource to fetch </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to fetch </param>
            <param name="pathKey"> The key value of the Sync Map Item resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Delete(Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.DeleteAsync(Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Item resource to delete </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to delete </param>
            <param name="pathKey"> The key value of the Sync Map Item resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Item resource to delete </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to delete </param>
            <param name="pathKey"> The key value of the Sync Map Item resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Create(Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.CreateAsync(Twilio.Rest.Sync.V1.Service.SyncMap.CreateSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Create(System.String,System.String,System.String,System.Object,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the Map Item in </param>
            <param name="pathMapSid"> The SID of the Sync Map to add the new Map Item to </param>
            <param name="key"> The unique, user-defined key for the Map Item </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the Map Item stores </param>
            <param name="ttl"> An alias for item_ttl </param>
            <param name="itemTtl"> How long, in seconds, before the Map Item expires </param>
            <param name="collectionTtl"> How long, in seconds, before the Map Item's parent Sync Map expires and is deleted
                                </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.CreateAsync(System.String,System.String,System.String,System.Object,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the Map Item in </param>
            <param name="pathMapSid"> The SID of the Sync Map to add the new Map Item to </param>
            <param name="key"> The unique, user-defined key for the Map Item </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the Map Item stores </param>
            <param name="ttl"> An alias for item_ttl </param>
            <param name="itemTtl"> How long, in seconds, before the Map Item expires </param>
            <param name="collectionTtl"> How long, in seconds, before the Map Item's parent Sync Map expires and is deleted
                                </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Read(Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.ReadAsync(Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Read(System.String,System.String,Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.QueryResultOrderEnum,System.String,Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.QueryFromBoundTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Map Item resources to read </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to fetch </param>
            <param name="order"> How to order the Map Items returned by their key value </param>
            <param name="from"> The index of the first Sync Map Item resource to read </param>
            <param name="bounds"> Whether to include the Map Item referenced by the from parameter </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.ReadAsync(System.String,System.String,Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.QueryResultOrderEnum,System.String,Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.QueryFromBoundTypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Map Item resources to read </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to fetch </param>
            <param name="order"> How to order the Map Items returned by their key value </param>
            <param name="from"> The index of the first Sync Map Item resource to read </param>
            <param name="bounds"> Whether to include the Map Item referenced by the from parameter </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.NextPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Update(Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.UpdateAsync(Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapItemOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update SyncMapItem parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Update(System.String,System.String,System.String,System.Object,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Item resource to update </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to update </param>
            <param name="pathKey"> The key value of the Sync Map Item resource to update </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the Map Item stores </param>
            <param name="ttl"> An alias for item_ttl </param>
            <param name="itemTtl"> How long, in seconds, before the Map Item expires </param>
            <param name="collectionTtl"> How long, in seconds, before the Map Item's parent Sync Map expires and is deleted
                                </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.UpdateAsync(System.String,System.String,System.String,System.Object,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Item resource to update </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Item resource to update </param>
            <param name="pathKey"> The key value of the Sync Map Item resource to update </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that the Map Item stores </param>
            <param name="ttl"> An alias for item_ttl </param>
            <param name="itemTtl"> How long, in seconds, before the Map Item expires </param>
            <param name="collectionTtl"> How long, in seconds, before the Map Item's parent Sync Map expires and is deleted
                                </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapItem </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncMapItemResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncMapItemResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Key">
            <summary>
            The unique, user-defined key for the Map Item
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.ServiceSid">
            <summary>
            The SID of the Sync Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.MapSid">
            <summary>
            The SID of the Sync Map that contains the Map Item
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Url">
            <summary>
            The absolute URL of the Map Item resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Revision">
            <summary>
            The current revision of the Map Item, represented as a string
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.Data">
            <summary>
            An arbitrary, schema-less object that the Map Item stores
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.DateExpires">
            <summary>
            The ISO 8601 date and time in GMT when the Map Item expires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapItemResource.CreatedBy">
            <summary>
            The identity of the Map Item's creator
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Sync Map Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Map Permission resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapPermissionOptions.PathMapSid">
            <summary>
            The SID of the Sync Map with the Sync Map Permission resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapPermissionOptions.PathIdentity">
            <summary>
            The application-defined string that uniquely identifies the User's Sync Map Permission resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchSyncMapPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resource to fetch </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Permission resource to fetch </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync Map Permission
                               resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Sync Map Permission.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Map Permission resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapPermissionOptions.PathMapSid">
            <summary>
            The SID of the Sync Map with the Sync Map Permission resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapPermissionOptions.PathIdentity">
            <summary>
            The application-defined string that uniquely identifies the User's Sync Map Permission resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapPermissionOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteSyncMapPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resource to delete </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Permission resource to delete </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync Map Permission
                               resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Permissions applying to a Sync Map.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Map Permission resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapPermissionOptions.PathMapSid">
            <summary>
            The SID of the Sync Map with the Permission resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapPermissionOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadSyncMapPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resources to read </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Permission resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapPermissionOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update an identity's access to a specific Sync Map.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapPermissionOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Map Permission resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapPermissionOptions.PathMapSid">
            <summary>
            The SID of the Sync Map with the Sync Map Permission resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapPermissionOptions.PathIdentity">
            <summary>
            The application-defined string that uniquely identifies the User's Sync Map Permission resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapPermissionOptions.Read">
            <summary>
            Read access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapPermissionOptions.Write">
            <summary>
            Write access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapPermissionOptions.Manage">
            <summary>
            Manage access
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapPermissionOptions.#ctor(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
            <summary>
            Construct a new UpdateSyncMapPermissionOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resource to update </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Permission resource to update </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync Map Permission
                               resource to update </param>
            <param name="read"> Read access </param>
            <param name="write"> Write access </param>
            <param name="manage"> Manage access </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapPermissionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Fetch(Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Map Permission.
            </summary>
            <param name="options"> Fetch SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.FetchAsync(Twilio.Rest.Sync.V1.Service.SyncMap.FetchSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Map Permission.
            </summary>
            <param name="options"> Fetch SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Map Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resource to fetch </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Permission resource to fetch </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync Map Permission
                               resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Sync Map Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resource to fetch </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Permission resource to fetch </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync Map Permission
                               resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Delete(Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Map Permission.
            </summary>
            <param name="options"> Delete SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.DeleteAsync(Twilio.Rest.Sync.V1.Service.SyncMap.DeleteSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Map Permission.
            </summary>
            <param name="options"> Delete SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Map Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resource to delete </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Permission resource to delete </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync Map Permission
                               resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Sync Map Permission.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resource to delete </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Permission resource to delete </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync Map Permission
                               resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Read(Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Map.
            </summary>
            <param name="options"> Read SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.ReadAsync(Twilio.Rest.Sync.V1.Service.SyncMap.ReadSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Map.
            </summary>
            <param name="options"> Read SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Map.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resources to read </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Permission resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Permissions applying to a Sync Map.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resources to read </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Permission resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Update(Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Map.
            </summary>
            <param name="options"> Update SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.UpdateAsync(Twilio.Rest.Sync.V1.Service.SyncMap.UpdateSyncMapPermissionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Map.
            </summary>
            <param name="options"> Update SyncMapPermission parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Update(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Map.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resource to update </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Permission resource to update </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync Map Permission
                               resource to update </param>
            <param name="read"> Read access </param>
            <param name="write"> Write access </param>
            <param name="manage"> Manage access </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update an identity's access to a specific Sync Map.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Map Permission resource to update </param>
            <param name="pathMapSid"> The SID of the Sync Map with the Sync Map Permission resource to update </param>
            <param name="pathIdentity"> The application-defined string that uniquely identifies the User's Sync Map Permission
                               resource to update </param>
            <param name="read"> Read access </param>
            <param name="write"> Write access </param>
            <param name="manage"> Manage access </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncMapPermission </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncMapPermissionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncMapPermissionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.ServiceSid">
            <summary>
            The SID of the Sync Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.MapSid">
            <summary>
            Sync Map SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Identity">
            <summary>
            The identity of the user to whom the Sync Document Permission applies
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource._Read">
            <summary>
            Read access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Write">
            <summary>
            Write access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Manage">
            <summary>
            Manage access
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncMap.SyncMapPermissionResource.Url">
            <summary>
            The absolute URL of the Sync Map Permission resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.FetchSyncStreamOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Stream.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.FetchSyncStreamOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Stream resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.FetchSyncStreamOptions.PathSid">
            <summary>
            The SID of the Stream resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.FetchSyncStreamOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchSyncStreamOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Stream resource to fetch </param>
            <param name="pathSid"> The SID of the Stream resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.FetchSyncStreamOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.DeleteSyncStreamOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Stream.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DeleteSyncStreamOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Stream resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.DeleteSyncStreamOptions.PathSid">
            <summary>
            The SID of the Stream resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DeleteSyncStreamOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteSyncStreamOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Stream resource to delete </param>
            <param name="pathSid"> The SID of the Stream resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.DeleteSyncStreamOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.CreateSyncStreamOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Create a new Stream.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateSyncStreamOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service to create the new Stream in
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateSyncStreamOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.CreateSyncStreamOptions.Ttl">
            <summary>
            How long, in seconds, before the Stream expires and is deleted
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.CreateSyncStreamOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateSyncStreamOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the new Stream in </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.CreateSyncStreamOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.UpdateSyncStreamOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update a specific Stream.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateSyncStreamOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Sync Stream resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateSyncStreamOptions.PathSid">
            <summary>
            The SID of the Stream resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.UpdateSyncStreamOptions.Ttl">
            <summary>
            How long, in seconds, before the Stream expires and is deleted
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.UpdateSyncStreamOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateSyncStreamOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Stream resource to update </param>
            <param name="pathSid"> The SID of the Stream resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.UpdateSyncStreamOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.ReadSyncStreamOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Streams in a Service Instance.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.ReadSyncStreamOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service with the Stream resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.ReadSyncStreamOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadSyncStreamOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Stream resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.ReadSyncStreamOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Fetch(Twilio.Rest.Sync.V1.Service.FetchSyncStreamOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Stream.
            </summary>
            <param name="options"> Fetch SyncStream parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.FetchAsync(Twilio.Rest.Sync.V1.Service.FetchSyncStreamOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Stream.
            </summary>
            <param name="options"> Fetch SyncStream parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Stream.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Stream resource to fetch </param>
            <param name="pathSid"> The SID of the Stream resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Stream.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Stream resource to fetch </param>
            <param name="pathSid"> The SID of the Stream resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Delete(Twilio.Rest.Sync.V1.Service.DeleteSyncStreamOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Stream.
            </summary>
            <param name="options"> Delete SyncStream parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.DeleteAsync(Twilio.Rest.Sync.V1.Service.DeleteSyncStreamOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Stream.
            </summary>
            <param name="options"> Delete SyncStream parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Stream.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Stream resource to delete </param>
            <param name="pathSid"> The SID of the Stream resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Stream.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Stream resource to delete </param>
            <param name="pathSid"> The SID of the Stream resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Create(Twilio.Rest.Sync.V1.Service.CreateSyncStreamOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Stream.
            </summary>
            <param name="options"> Create SyncStream parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.CreateAsync(Twilio.Rest.Sync.V1.Service.CreateSyncStreamOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Stream.
            </summary>
            <param name="options"> Create SyncStream parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Create(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Stream.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the new Stream in </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="ttl"> How long, in seconds, before the Stream expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.CreateAsync(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Stream.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the new Stream in </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="ttl"> How long, in seconds, before the Stream expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Update(Twilio.Rest.Sync.V1.Service.UpdateSyncStreamOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Stream.
            </summary>
            <param name="options"> Update SyncStream parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.UpdateAsync(Twilio.Rest.Sync.V1.Service.UpdateSyncStreamOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Stream.
            </summary>
            <param name="options"> Update SyncStream parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Update(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Stream.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Stream resource to update </param>
            <param name="pathSid"> The SID of the Stream resource to update </param>
            <param name="ttl"> How long, in seconds, before the Stream expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.UpdateAsync(System.String,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Stream.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Sync Stream resource to update </param>
            <param name="pathSid"> The SID of the Stream resource to update </param>
            <param name="ttl"> How long, in seconds, before the Stream expires and is deleted </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Read(Twilio.Rest.Sync.V1.Service.ReadSyncStreamOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Streams in a Service Instance.
            </summary>
            <param name="options"> Read SyncStream parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.ReadAsync(Twilio.Rest.Sync.V1.Service.ReadSyncStreamOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Streams in a Service Instance.
            </summary>
            <param name="options"> Read SyncStream parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Streams in a Service Instance.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Stream resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Streams in a Service Instance.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service with the Stream resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SyncStream </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.NextPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncStreamResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Sync.V1.Service.SyncStreamResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStreamResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SyncStreamResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SyncStreamResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStreamResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStreamResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStreamResource.ServiceSid">
            <summary>
            The SID of the Sync Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Url">
            <summary>
            The absolute URL of the Message Stream resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStreamResource.Links">
            <summary>
            The URLs of the Stream's nested resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStreamResource.DateExpires">
            <summary>
            The ISO 8601 date and time in GMT when the Message Stream expires
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStreamResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStreamResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStreamResource.CreatedBy">
            <summary>
            The Identity of the Stream's creator
            </summary>
        </member>
        <member name="T:Twilio.Rest.Sync.V1.Service.SyncStream.CreateStreamMessageOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Create a new Stream Message.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStream.CreateStreamMessageOptions.PathServiceSid">
            <summary>
            The SID of the Sync Service to create the new Stream Message in
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStream.CreateStreamMessageOptions.PathStreamSid">
            <summary>
            The SID of the Sync Stream to create the new Stream Message resource for
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStream.CreateStreamMessageOptions.Data">
            <summary>
            A JSON string that represents an arbitrary, schema-less object that makes up the Stream Message body
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStream.CreateStreamMessageOptions.#ctor(System.String,System.String,System.Object)">
            <summary>
            Construct a new CreateStreamMessageOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the new Stream Message in </param>
            <param name="pathStreamSid"> The SID of the Sync Stream to create the new Stream Message resource for </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that makes up the Stream Message
                       body </param>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStream.CreateStreamMessageOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStream.StreamMessageResource.Create(Twilio.Rest.Sync.V1.Service.SyncStream.CreateStreamMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Stream Message.
            </summary>
            <param name="options"> Create StreamMessage parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StreamMessage </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStream.StreamMessageResource.CreateAsync(Twilio.Rest.Sync.V1.Service.SyncStream.CreateStreamMessageOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Stream Message.
            </summary>
            <param name="options"> Create StreamMessage parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StreamMessage </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStream.StreamMessageResource.Create(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Stream Message.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the new Stream Message in </param>
            <param name="pathStreamSid"> The SID of the Sync Stream to create the new Stream Message resource for </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that makes up the Stream Message
                       body </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of StreamMessage </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStream.StreamMessageResource.CreateAsync(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Stream Message.
            </summary>
            <param name="pathServiceSid"> The SID of the Sync Service to create the new Stream Message in </param>
            <param name="pathStreamSid"> The SID of the Sync Stream to create the new Stream Message resource for </param>
            <param name="data"> A JSON string that represents an arbitrary, schema-less object that makes up the Stream Message
                       body </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of StreamMessage </returns>
        </member>
        <member name="M:Twilio.Rest.Sync.V1.Service.SyncStream.StreamMessageResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a StreamMessageResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> StreamMessageResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStream.StreamMessageResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Sync.V1.Service.SyncStream.StreamMessageResource.Data">
            <summary>
            Stream Message body
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.FetchWorkspaceOptions">
            <summary>
            FetchWorkspaceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.FetchWorkspaceOptions.PathSid">
            <summary>
            The SID of the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.FetchWorkspaceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchWorkspaceOptions
            </summary>
            <param name="pathSid"> The SID of the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.FetchWorkspaceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions">
            <summary>
            UpdateWorkspaceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions.PathSid">
            <summary>
            The SID of the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions.DefaultActivitySid">
            <summary>
            The SID of the Activity that will be used when new Workers are created in the Workspace
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions.EventCallbackUrl">
            <summary>
            The URL we should call when an event occurs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions.EventsFilter">
            <summary>
            The list of Workspace events for which to call event_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions.FriendlyName">
            <summary>
            A string to describe the Workspace resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions.MultiTaskEnabled">
            <summary>
            Whether multi-tasking is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions.TimeoutActivitySid">
            <summary>
            The SID of the Activity that will be assigned to a Worker when a Task reservation times out without a response
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions.PrioritizeQueueOrder">
            <summary>
            The type of TaskQueue to prioritize when Workers are receiving Tasks from both types of TaskQueues
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateWorkspaceOptions
            </summary>
            <param name="pathSid"> The SID of the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.ReadWorkspaceOptions">
            <summary>
            ReadWorkspaceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.ReadWorkspaceOptions.FriendlyName">
            <summary>
            The friendly_name of the Workspace resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.ReadWorkspaceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.CreateWorkspaceOptions">
            <summary>
            CreateWorkspaceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.CreateWorkspaceOptions.FriendlyName">
            <summary>
            A string to describe the Workspace resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.CreateWorkspaceOptions.EventCallbackUrl">
            <summary>
            The URL we should call when an event occurs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.CreateWorkspaceOptions.EventsFilter">
            <summary>
            The list of Workspace events for which to call event_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.CreateWorkspaceOptions.MultiTaskEnabled">
            <summary>
            Whether multi-tasking is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.CreateWorkspaceOptions.Template">
            <summary>
            An available template name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.CreateWorkspaceOptions.PrioritizeQueueOrder">
            <summary>
            The type of TaskQueue to prioritize when Workers are receiving Tasks from both types of TaskQueues
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.CreateWorkspaceOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateWorkspaceOptions
            </summary>
            <param name="friendlyName"> A string to describe the Workspace resource </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.CreateWorkspaceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.DeleteWorkspaceOptions">
            <summary>
            DeleteWorkspaceOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.DeleteWorkspaceOptions.PathSid">
            <summary>
            The SID of the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.DeleteWorkspaceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteWorkspaceOptions
            </summary>
            <param name="pathSid"> The SID of the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.DeleteWorkspaceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Fetch(Twilio.Rest.Taskrouter.V1.FetchWorkspaceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Workspace parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.FetchAsync(Twilio.Rest.Taskrouter.V1.FetchWorkspaceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Workspace parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Update(Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Workspace parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.UpdateAsync(Twilio.Rest.Taskrouter.V1.UpdateWorkspaceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Workspace parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Update(System.String,System.String,System.Uri,System.String,System.String,System.Nullable{System.Boolean},System.String,Twilio.Rest.Taskrouter.V1.WorkspaceResource.QueueOrderEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the resource to update </param>
            <param name="defaultActivitySid"> The SID of the Activity that will be used when new Workers are created in the
                                     Workspace </param>
            <param name="eventCallbackUrl"> The URL we should call when an event occurs </param>
            <param name="eventsFilter"> The list of Workspace events for which to call event_callback_url </param>
            <param name="friendlyName"> A string to describe the Workspace resource </param>
            <param name="multiTaskEnabled"> Whether multi-tasking is enabled </param>
            <param name="timeoutActivitySid"> The SID of the Activity that will be assigned to a Worker when a Task reservation
                                     times out without a response </param>
            <param name="prioritizeQueueOrder"> The type of TaskQueue to prioritize when Workers are receiving Tasks from both
                                       types of TaskQueues </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.UpdateAsync(System.String,System.String,System.Uri,System.String,System.String,System.Nullable{System.Boolean},System.String,Twilio.Rest.Taskrouter.V1.WorkspaceResource.QueueOrderEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID of the resource to update </param>
            <param name="defaultActivitySid"> The SID of the Activity that will be used when new Workers are created in the
                                     Workspace </param>
            <param name="eventCallbackUrl"> The URL we should call when an event occurs </param>
            <param name="eventsFilter"> The list of Workspace events for which to call event_callback_url </param>
            <param name="friendlyName"> A string to describe the Workspace resource </param>
            <param name="multiTaskEnabled"> Whether multi-tasking is enabled </param>
            <param name="timeoutActivitySid"> The SID of the Activity that will be assigned to a Worker when a Task reservation
                                     times out without a response </param>
            <param name="prioritizeQueueOrder"> The type of TaskQueue to prioritize when Workers are receiving Tasks from both
                                       types of TaskQueues </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Read(Twilio.Rest.Taskrouter.V1.ReadWorkspaceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Workspace parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.ReadAsync(Twilio.Rest.Taskrouter.V1.ReadWorkspaceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Workspace parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="friendlyName"> The friendly_name of the Workspace resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="friendlyName"> The friendly_name of the Workspace resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.WorkspaceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.WorkspaceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Create(Twilio.Rest.Taskrouter.V1.CreateWorkspaceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Workspace parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.CreateAsync(Twilio.Rest.Taskrouter.V1.CreateWorkspaceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Workspace parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Create(System.String,System.Uri,System.String,System.Nullable{System.Boolean},System.String,Twilio.Rest.Taskrouter.V1.WorkspaceResource.QueueOrderEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the Workspace resource </param>
            <param name="eventCallbackUrl"> The URL we should call when an event occurs </param>
            <param name="eventsFilter"> The list of Workspace events for which to call event_callback_url </param>
            <param name="multiTaskEnabled"> Whether multi-tasking is enabled </param>
            <param name="template"> An available template name </param>
            <param name="prioritizeQueueOrder"> The type of TaskQueue to prioritize when Workers are receiving Tasks from both
                                       types of TaskQueues </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.CreateAsync(System.String,System.Uri,System.String,System.Nullable{System.Boolean},System.String,Twilio.Rest.Taskrouter.V1.WorkspaceResource.QueueOrderEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the Workspace resource </param>
            <param name="eventCallbackUrl"> The URL we should call when an event occurs </param>
            <param name="eventsFilter"> The list of Workspace events for which to call event_callback_url </param>
            <param name="multiTaskEnabled"> Whether multi-tasking is enabled </param>
            <param name="template"> An available template name </param>
            <param name="prioritizeQueueOrder"> The type of TaskQueue to prioritize when Workers are receiving Tasks from both
                                       types of TaskQueues </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Delete(Twilio.Rest.Taskrouter.V1.DeleteWorkspaceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Workspace parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.DeleteAsync(Twilio.Rest.Taskrouter.V1.DeleteWorkspaceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Workspace parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workspace </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.WorkspaceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkspaceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkspaceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.DefaultActivityName">
            <summary>
            The name of the default activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.DefaultActivitySid">
            <summary>
            The SID of the Activity that will be used when new Workers are created in the Workspace
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.EventCallbackUrl">
            <summary>
            The URL we call when an event occurs
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.EventsFilter">
            <summary>
            The list of Workspace events for which to call event_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.FriendlyName">
            <summary>
            The string that you assigned to describe the Workspace resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.MultiTaskEnabled">
            <summary>
            Whether multi-tasking is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.TimeoutActivityName">
            <summary>
            The name of the timeout activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.TimeoutActivitySid">
            <summary>
            The SID of the Activity that will be assigned to a Worker when a Task reservation times out without a response
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.PrioritizeQueueOrder">
            <summary>
            The type of TaskQueue to prioritize when Workers are receiving Tasks from both types of TaskQueues
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Url">
            <summary>
            The absolute URL of the Workspace resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.WorkspaceResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.FetchActivityOptions">
            <summary>
            FetchActivityOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchActivityOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Activity resources to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchActivityOptions.PathSid">
            <summary>
            The SID of the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchActivityOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchActivityOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchActivityOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.UpdateActivityOptions">
            <summary>
            UpdateActivityOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateActivityOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Activity resources to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateActivityOptions.PathSid">
            <summary>
            The SID of the Activity resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateActivityOptions.FriendlyName">
            <summary>
            A string to describe the Activity resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateActivityOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateActivityOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to update </param>
            <param name="pathSid"> The SID of the Activity resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateActivityOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.DeleteActivityOptions">
            <summary>
            DeleteActivityOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteActivityOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Activity resources to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteActivityOptions.PathSid">
            <summary>
            The SID of the Activity resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteActivityOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteActivityOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to delete </param>
            <param name="pathSid"> The SID of the Activity resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteActivityOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.ReadActivityOptions">
            <summary>
            ReadActivityOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadActivityOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Activity resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadActivityOptions.FriendlyName">
            <summary>
            The friendly_name of the Activity resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadActivityOptions.Available">
            <summary>
            Whether to return activities that are available or unavailable
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadActivityOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadActivityOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadActivityOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.CreateActivityOptions">
            <summary>
            CreateActivityOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateActivityOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace that the new Activity belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateActivityOptions.FriendlyName">
            <summary>
            A string to describe the Activity resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateActivityOptions.Available">
            <summary>
            Whether the Worker should be eligible to receive a Task when it occupies the Activity
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateActivityOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateActivityOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Activity belongs to </param>
            <param name="friendlyName"> A string to describe the Activity resource </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateActivityOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.FetchActivityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Activity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.FetchActivityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Activity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Update(Twilio.Rest.Taskrouter.V1.Workspace.UpdateActivityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Activity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.UpdateAsync(Twilio.Rest.Taskrouter.V1.Workspace.UpdateActivityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Activity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to update </param>
            <param name="pathSid"> The SID of the Activity resource to update </param>
            <param name="friendlyName"> A string to describe the Activity resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to update </param>
            <param name="pathSid"> The SID of the Activity resource to update </param>
            <param name="friendlyName"> A string to describe the Activity resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Delete(Twilio.Rest.Taskrouter.V1.Workspace.DeleteActivityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Activity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.DeleteAsync(Twilio.Rest.Taskrouter.V1.Workspace.DeleteActivityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Activity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to delete </param>
            <param name="pathSid"> The SID of the Activity resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to delete </param>
            <param name="pathSid"> The SID of the Activity resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Read(Twilio.Rest.Taskrouter.V1.Workspace.ReadActivityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Activity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.ReadAsync(Twilio.Rest.Taskrouter.V1.Workspace.ReadActivityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Activity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Read(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to read </param>
            <param name="friendlyName"> The friendly_name of the Activity resources to read </param>
            <param name="available"> Whether to return activities that are available or unavailable </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.ReadAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Activity resources to read </param>
            <param name="friendlyName"> The friendly_name of the Activity resources to read </param>
            <param name="available"> Whether to return activities that are available or unavailable </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Create(Twilio.Rest.Taskrouter.V1.Workspace.CreateActivityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Activity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.CreateAsync(Twilio.Rest.Taskrouter.V1.Workspace.CreateActivityOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Activity parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Create(System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Activity belongs to </param>
            <param name="friendlyName"> A string to describe the Activity resource </param>
            <param name="available"> Whether the Worker should be eligible to receive a Task when it occupies the Activity
                            </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.CreateAsync(System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Activity belongs to </param>
            <param name="friendlyName"> A string to describe the Activity resource </param>
            <param name="available"> Whether the Worker should be eligible to receive a Task when it occupies the Activity
                            </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Activity </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ActivityResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ActivityResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Available">
            <summary>
            Whether the Worker should be eligible to receive a Task when it occupies the Activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.FriendlyName">
            <summary>
            The string that you assigned to describe the Activity resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the Activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ActivityResource.Url">
            <summary>
            The absolute URL of the Activity resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.FetchEventOptions">
            <summary>
            FetchEventOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchEventOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Event to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchEventOptions.PathSid">
            <summary>
            The SID of the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchEventOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchEventOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Event to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchEventOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions">
            <summary>
            ReadEventOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Events to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.EventType">
            <summary>
            The type of Events to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.Minutes">
            <summary>
            The period of events to read in minutes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.ReservationSid">
            <summary>
            The SID of the Reservation with the Events to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.StartDate">
            <summary>
            Only include Events from on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.TaskQueueSid">
            <summary>
            The SID of the TaskQueue with the Events to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.TaskSid">
            <summary>
            The SID of the Task with the Events to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.WorkerSid">
            <summary>
            The SID of the Worker with the Events to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.WorkflowSid">
            <summary>
            The SID of the Worker with the Events to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.TaskChannel">
            <summary>
            The TaskChannel with the Events to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadEventOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Events to read </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.FetchEventOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Event parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.FetchEventOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Event parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Event to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Event to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.Read(Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Event parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.ReadAsync(Twilio.Rest.Taskrouter.V1.Workspace.ReadEventOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Event parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.Read(System.String,System.Nullable{System.DateTime},System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.DateTime},System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Events to read </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="eventType"> The type of Events to read </param>
            <param name="minutes"> The period of events to read in minutes </param>
            <param name="reservationSid"> The SID of the Reservation with the Events to read </param>
            <param name="startDate"> Only include Events from on or after this date </param>
            <param name="taskQueueSid"> The SID of the TaskQueue with the Events to read </param>
            <param name="taskSid"> The SID of the Task with the Events to read </param>
            <param name="workerSid"> The SID of the Worker with the Events to read </param>
            <param name="workflowSid"> The SID of the Worker with the Events to read </param>
            <param name="taskChannel"> The TaskChannel with the Events to read </param>
            <param name="sid"> The unique string that identifies the resource </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.ReadAsync(System.String,System.Nullable{System.DateTime},System.String,System.Nullable{System.Int32},System.String,System.Nullable{System.DateTime},System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Events to read </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="eventType"> The type of Events to read </param>
            <param name="minutes"> The period of events to read in minutes </param>
            <param name="reservationSid"> The SID of the Reservation with the Events to read </param>
            <param name="startDate"> Only include Events from on or after this date </param>
            <param name="taskQueueSid"> The SID of the TaskQueue with the Events to read </param>
            <param name="taskSid"> The SID of the Task with the Events to read </param>
            <param name="workerSid"> The SID of the Worker with the Events to read </param>
            <param name="workflowSid"> The SID of the Worker with the Events to read </param>
            <param name="taskChannel"> The TaskChannel with the Events to read </param>
            <param name="sid"> The unique string that identifies the resource </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Event </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.EventResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.EventResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a EventResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> EventResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.ActorSid">
            <summary>
            The SID of the resource that triggered the event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.ActorType">
            <summary>
            The type of resource that triggered the event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.ActorUrl">
            <summary>
            The absolute URL of the resource that triggered the event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.Description">
            <summary>
            A description of the event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.EventData">
            <summary>
            Data about the event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.EventDate">
            <summary>
            The time the event was sent
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.EventDateMs">
            <summary>
            The time the event was sent in milliseconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.EventType">
            <summary>
            The identifier for the event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.ResourceSid">
            <summary>
            The SID of the object the event is most relevant to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.ResourceType">
            <summary>
            The type of object the event is most relevant to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.ResourceUrl">
            <summary>
            The URL of the resource the event is most relevant to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.Source">
            <summary>
            Where the Event originated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.SourceIpAddress">
            <summary>
            The IP from which the Event originated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.Url">
            <summary>
            The absolute URL of the Event resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.EventResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the Event
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskChannelOptions">
            <summary>
            FetchTaskChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskChannelOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskChannel to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskChannelOptions.PathSid">
            <summary>
            The SID of the TaskChannel resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskChannelOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to fetch </param>
            <param name="pathSid"> The SID of the TaskChannel resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskChannelOptions">
            <summary>
            ReadTaskChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskChannelOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskChannel to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskChannelOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadTaskChannelOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to read </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskChannelOptions">
            <summary>
            UpdateTaskChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskChannelOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskChannel to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskChannelOptions.PathSid">
            <summary>
            The SID of the TaskChannel resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskChannelOptions.FriendlyName">
            <summary>
            A string to describe the TaskChannel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskChannelOptions.ChannelOptimizedRouting">
            <summary>
            Whether the TaskChannel should prioritize Workers that have been idle
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateTaskChannelOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to update </param>
            <param name="pathSid"> The SID of the TaskChannel resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskChannelOptions">
            <summary>
            DeleteTaskChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskChannelOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskChannel to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskChannelOptions.PathSid">
            <summary>
            The SID of the TaskChannel resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteTaskChannelOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to delete </param>
            <param name="pathSid"> The SID of the TaskChannel resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskChannelOptions">
            <summary>
            CreateTaskChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskChannelOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace that the new TaskChannel belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskChannelOptions.FriendlyName">
            <summary>
            A string to describe the TaskChannel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskChannelOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the TaskChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskChannelOptions.ChannelOptimizedRouting">
            <summary>
            Whether the TaskChannel should prioritize Workers that have been idle
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskChannelOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateTaskChannelOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new TaskChannel belongs to </param>
            <param name="friendlyName"> A string to describe the TaskChannel resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the TaskChannel </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to fetch </param>
            <param name="pathSid"> The SID of the TaskChannel resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to fetch </param>
            <param name="pathSid"> The SID of the TaskChannel resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Read(Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read TaskChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.ReadAsync(Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read TaskChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Update(Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update TaskChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.UpdateAsync(Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update TaskChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Update(System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to update </param>
            <param name="pathSid"> The SID of the TaskChannel resource to update </param>
            <param name="friendlyName"> A string to describe the TaskChannel resource </param>
            <param name="channelOptimizedRouting"> Whether the TaskChannel should prioritize Workers that have been idle
                                          </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to update </param>
            <param name="pathSid"> The SID of the TaskChannel resource to update </param>
            <param name="friendlyName"> A string to describe the TaskChannel resource </param>
            <param name="channelOptimizedRouting"> Whether the TaskChannel should prioritize Workers that have been idle
                                          </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Delete(Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete TaskChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.DeleteAsync(Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete TaskChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to delete </param>
            <param name="pathSid"> The SID of the TaskChannel resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskChannel to delete </param>
            <param name="pathSid"> The SID of the TaskChannel resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Create(Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create TaskChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.CreateAsync(Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create TaskChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Create(System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new TaskChannel belongs to </param>
            <param name="friendlyName"> A string to describe the TaskChannel resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the TaskChannel </param>
            <param name="channelOptimizedRouting"> Whether the TaskChannel should prioritize Workers that have been idle
                                          </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.CreateAsync(System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new TaskChannel belongs to </param>
            <param name="friendlyName"> A string to describe the TaskChannel resource </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the TaskChannel </param>
            <param name="channelOptimizedRouting"> Whether the TaskChannel should prioritize Workers that have been idle
                                          </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the TaskChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the TaskChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.ChannelOptimizedRouting">
            <summary>
            Whether the TaskChannel will prioritize Workers that have been idle
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Url">
            <summary>
            The absolute URL of the TaskChannel resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskChannelResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskOptions">
            <summary>
            FetchTaskOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Task to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskOptions.PathSid">
            <summary>
            The SID of the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Task to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions">
            <summary>
            UpdateTaskOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Task to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions.PathSid">
            <summary>
            The SID of the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions.Attributes">
            <summary>
            The JSON string that describes the custom attributes of the task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions.AssignmentStatus">
            <summary>
            The new status of the task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions.Reason">
            <summary>
            The reason that the Task was canceled or complete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions.Priority">
            <summary>
            The Task's new priority value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions.TaskChannel">
            <summary>
            When MultiTasking is enabled, specify the TaskChannel with the task to update
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateTaskOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Task to update </param>
            <param name="pathSid"> The SID of the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskOptions">
            <summary>
            DeleteTaskOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Task to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskOptions.PathSid">
            <summary>
            The SID of the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteTaskOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Task to delete </param>
            <param name="pathSid"> The SID of the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions">
            <summary>
            ReadTaskOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Tasks to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.Priority">
            <summary>
            The priority value of the Tasks to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.AssignmentStatus">
            <summary>
            Returns the list of all Tasks in the Workspace with the specified assignment_status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.WorkflowSid">
            <summary>
            The SID of the Workflow with the Tasks to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.WorkflowName">
            <summary>
            The friendly name of the Workflow with the Tasks to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.TaskQueueSid">
            <summary>
            The SID of the TaskQueue with the Tasks to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.TaskQueueName">
            <summary>
            The friendly_name of the TaskQueue with the Tasks to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.EvaluateTaskAttributes">
            <summary>
            The task attributes of the Tasks to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.Ordering">
            <summary>
            Controls the order of the Tasks returned
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.HasAddons">
            <summary>
            Whether to read Tasks with addons
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadTaskOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Tasks to read </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskOptions">
            <summary>
            CreateTaskOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace that the new Task belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskOptions.Timeout">
            <summary>
            The amount of time in seconds the task is allowed to live
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskOptions.Priority">
            <summary>
            The priority to assign the new task and override the default
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskOptions.TaskChannel">
            <summary>
            When MultiTasking is enabled specify the TaskChannel by passing either its unique_name or SID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskOptions.WorkflowSid">
            <summary>
            The SID of the Workflow that you would like to handle routing for the new Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskOptions.Attributes">
            <summary>
            A URL-encoded JSON string describing the attributes of the task
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateTaskOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Task belongs to </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskQueueOptions">
            <summary>
            FetchTaskQueueOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskQueueOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskQueue to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskQueueOptions.PathSid">
            <summary>
            The SID of the resource to
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskQueueOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskQueueOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathSid"> The SID of the resource to  </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskQueueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions">
            <summary>
            UpdateTaskQueueOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskQueue to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions.PathSid">
            <summary>
            The SID of the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions.TargetWorkers">
            <summary>
            A string describing the Worker selection criteria for any Tasks that enter the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions.ReservationActivitySid">
            <summary>
            The SID of the Activity to assign Workers when a task is reserved for them
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions.AssignmentActivitySid">
            <summary>
            The SID of the Activity to assign Workers when a task is assigned for them
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions.MaxReservedWorkers">
            <summary>
            The maximum number of Workers to create reservations for the assignment of a task while in the queue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions.TaskOrder">
            <summary>
            How Tasks will be assigned to Workers
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateTaskQueueOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to update </param>
            <param name="pathSid"> The SID of the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskQueueOptions">
            <summary>
            ReadTaskQueueOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskQueueOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskQueue to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskQueueOptions.FriendlyName">
            <summary>
            The friendly_name of the TaskQueue resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskQueueOptions.EvaluateWorkerAttributes">
            <summary>
            The attributes of the Workers to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskQueueOptions.WorkerSid">
            <summary>
            The SID of the Worker with the TaskQueue resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskQueueOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadTaskQueueOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to read </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskQueueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions">
            <summary>
            CreateTaskQueueOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace that the new TaskQueue belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions.TargetWorkers">
            <summary>
            A string describing the Worker selection criteria for any Tasks that enter the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions.MaxReservedWorkers">
            <summary>
            The maximum number of Workers to reserve
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions.TaskOrder">
            <summary>
            How Tasks will be assigned to Workers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions.ReservationActivitySid">
            <summary>
            The SID of the Activity to assign Workers when a task is reserved for them
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions.AssignmentActivitySid">
            <summary>
            The SID of the Activity to assign Workers once a task is assigned to them
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateTaskQueueOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new TaskQueue belongs to </param>
            <param name="friendlyName"> A string to describe the resource </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskQueueOptions">
            <summary>
            DeleteTaskQueueOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskQueueOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskQueue to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskQueueOptions.PathSid">
            <summary>
            The SID of the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskQueueOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteTaskQueueOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to delete </param>
            <param name="pathSid"> The SID of the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskQueueOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskQueue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskQueue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathSid"> The SID of the resource to  </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathSid"> The SID of the resource to  </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Update(Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update TaskQueue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.UpdateAsync(Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update TaskQueue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Update(System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.TaskOrderEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to update </param>
            <param name="pathSid"> The SID of the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="targetWorkers"> A string describing the Worker selection criteria for any Tasks that enter the
                                TaskQueue </param>
            <param name="reservationActivitySid"> The SID of the Activity to assign Workers when a task is reserved for them
                                         </param>
            <param name="assignmentActivitySid"> The SID of the Activity to assign Workers when a task is assigned for them
                                        </param>
            <param name="maxReservedWorkers"> The maximum number of Workers to create reservations for the assignment of a task
                                     while in the queue </param>
            <param name="taskOrder"> How Tasks will be assigned to Workers </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.TaskOrderEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to update </param>
            <param name="pathSid"> The SID of the resource to update </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="targetWorkers"> A string describing the Worker selection criteria for any Tasks that enter the
                                TaskQueue </param>
            <param name="reservationActivitySid"> The SID of the Activity to assign Workers when a task is reserved for them
                                         </param>
            <param name="assignmentActivitySid"> The SID of the Activity to assign Workers when a task is assigned for them
                                        </param>
            <param name="maxReservedWorkers"> The maximum number of Workers to create reservations for the assignment of a task
                                     while in the queue </param>
            <param name="taskOrder"> How Tasks will be assigned to Workers </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Read(Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read TaskQueue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.ReadAsync(Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read TaskQueue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Read(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to read </param>
            <param name="friendlyName"> The friendly_name of the TaskQueue resources to read </param>
            <param name="evaluateWorkerAttributes"> The attributes of the Workers to read </param>
            <param name="workerSid"> The SID of the Worker with the TaskQueue resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.ReadAsync(System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to read </param>
            <param name="friendlyName"> The friendly_name of the TaskQueue resources to read </param>
            <param name="evaluateWorkerAttributes"> The attributes of the Workers to read </param>
            <param name="workerSid"> The SID of the Worker with the TaskQueue resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Create(Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create TaskQueue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.CreateAsync(Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create TaskQueue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Create(System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.TaskOrderEnum,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new TaskQueue belongs to </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="targetWorkers"> A string describing the Worker selection criteria for any Tasks that enter the
                                TaskQueue </param>
            <param name="maxReservedWorkers"> The maximum number of Workers to reserve </param>
            <param name="taskOrder"> How Tasks will be assigned to Workers </param>
            <param name="reservationActivitySid"> The SID of the Activity to assign Workers when a task is reserved for them
                                         </param>
            <param name="assignmentActivitySid"> The SID of the Activity to assign Workers once a task is assigned to them
                                        </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.CreateAsync(System.String,System.String,System.String,System.Nullable{System.Int32},Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.TaskOrderEnum,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new TaskQueue belongs to </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="targetWorkers"> A string describing the Worker selection criteria for any Tasks that enter the
                                TaskQueue </param>
            <param name="maxReservedWorkers"> The maximum number of Workers to reserve </param>
            <param name="taskOrder"> How Tasks will be assigned to Workers </param>
            <param name="reservationActivitySid"> The SID of the Activity to assign Workers when a task is reserved for them
                                         </param>
            <param name="assignmentActivitySid"> The SID of the Activity to assign Workers once a task is assigned to them
                                        </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Delete(Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete TaskQueue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.DeleteAsync(Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskQueueOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete TaskQueue parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to delete </param>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to delete </param>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueue </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskQueueResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskQueueResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.AssignmentActivitySid">
            <summary>
            The SID of the Activity to assign Workers when a task is assigned for them
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.AssignmentActivityName">
            <summary>
            The name of the Activity to assign Workers when a task is assigned for them
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.MaxReservedWorkers">
            <summary>
            The maximum number of Workers to reserve
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.ReservationActivitySid">
            <summary>
            The SID of the Activity to assign Workers once a task is reserved for them
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.ReservationActivityName">
            <summary>
            The name of the Activity to assign Workers once a task is reserved for them
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.TargetWorkers">
            <summary>
            A string describing the Worker selection criteria for any Tasks that enter the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.TaskOrder">
            <summary>
            How Tasks will be assigned to Workers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Url">
            <summary>
            The absolute URL of the TaskQueue resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueueResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions">
            <summary>
            FetchTaskQueueCumulativeStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskQueue to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions.PathTaskQueueSid">
            <summary>
            The SID of the TaskQueue for which to fetch statistics
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions.EndDate">
            <summary>
            Only calculate statistics from on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions.Minutes">
            <summary>
            Only calculate statistics since this many minutes in the past
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions.StartDate">
            <summary>
            Only calculate statistics from on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions.TaskChannel">
            <summary>
            Only calculate cumulative statistics on this TaskChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions.SplitByWaitTime">
            <summary>
            A comma separated list of values that describes the thresholds to calculate statistics on
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskQueueCumulativeStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathTaskQueueSid"> The SID of the TaskQueue for which to fetch statistics </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskQueueCumulativeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueueCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueCumulativeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskQueueCumulativeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueueCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.Fetch(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathTaskQueueSid"> The SID of the TaskQueue for which to fetch statistics </param>
            <param name="endDate"> Only calculate statistics from on or before this date </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate cumulative statistics on this TaskChannel </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueueCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.FetchAsync(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathTaskQueueSid"> The SID of the TaskQueue for which to fetch statistics </param>
            <param name="endDate"> Only calculate statistics from on or before this date </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate cumulative statistics on this TaskChannel </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueueCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskQueueCumulativeStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskQueueCumulativeStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.AvgTaskAcceptanceTime">
            <summary>
            The average time in seconds between Task creation and acceptance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.StartTime">
            <summary>
            The beginning of the interval during which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.EndTime">
            <summary>
            The end of the interval during which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.ReservationsCreated">
            <summary>
            The total number of Reservations created for Tasks in the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.ReservationsAccepted">
            <summary>
            The total number of Reservations accepted for Tasks in the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.ReservationsRejected">
            <summary>
            The total number of Reservations rejected for Tasks in the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.ReservationsTimedOut">
            <summary>
            The total number of Reservations that timed out for Tasks in the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.ReservationsCanceled">
            <summary>
            The total number of Reservations canceled for Tasks in the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.ReservationsRescinded">
            <summary>
            The total number of Reservations rescinded
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.SplitByWaitTime">
            <summary>
            A list of objects that describe the Tasks canceled and reservations accepted above and below the specified thresholds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.TaskQueueSid">
            <summary>
            The SID of the TaskQueue from which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.WaitDurationUntilAccepted">
            <summary>
            The wait duration statistics for Tasks accepted while in the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.WaitDurationUntilCanceled">
            <summary>
            The wait duration statistics for Tasks canceled while in the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.TasksCanceled">
            <summary>
            The total number of Tasks canceled in the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.TasksCompleted">
            <summary>
            The total number of Tasks completed in the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.TasksDeleted">
            <summary>
            The total number of Tasks deleted in the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.TasksEntered">
            <summary>
            The total number of Tasks entered into the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.TasksMoved">
            <summary>
            The total number of Tasks that were moved from one queue to another
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueCumulativeStatisticsResource.Url">
            <summary>
            The absolute URL of the TaskQueue statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueRealTimeStatisticsOptions">
            <summary>
            FetchTaskQueueRealTimeStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueRealTimeStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskQueue to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueRealTimeStatisticsOptions.PathTaskQueueSid">
            <summary>
            The SID of the TaskQueue for which to fetch statistics
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueRealTimeStatisticsOptions.TaskChannel">
            <summary>
            The TaskChannel for which to fetch statistics
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueRealTimeStatisticsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskQueueRealTimeStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathTaskQueueSid"> The SID of the TaskQueue for which to fetch statistics </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueRealTimeStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueRealTimeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskQueueRealTimeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueueRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueRealTimeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskQueueRealTimeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueueRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathTaskQueueSid"> The SID of the TaskQueue for which to fetch statistics </param>
            <param name="taskChannel"> The TaskChannel for which to fetch statistics </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueueRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathTaskQueueSid"> The SID of the TaskQueue for which to fetch statistics </param>
            <param name="taskChannel"> The TaskChannel for which to fetch statistics </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueueRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskQueueRealTimeStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskQueueRealTimeStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.ActivityStatistics">
            <summary>
            The number of current Workers by Activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.LongestTaskWaitingAge">
            <summary>
            The age of the longest waiting Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.LongestTaskWaitingSid">
            <summary>
            The SID of the longest waiting Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.TaskQueueSid">
            <summary>
            The SID of the TaskQueue from which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.TasksByPriority">
            <summary>
            The number of Tasks by priority
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.TasksByStatus">
            <summary>
            The number of Tasks by their current status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.TotalAvailableWorkers">
            <summary>
            The total number of Workers available for Tasks in the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.TotalEligibleWorkers">
            <summary>
            The total number of Workers eligible for Tasks in the TaskQueue, independent of their Activity state
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.TotalTasks">
            <summary>
            The total number of Tasks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueRealTimeStatisticsResource.Url">
            <summary>
            The absolute URL of the TaskQueue statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions">
            <summary>
            ReadTaskQueuesStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskQueues to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions.EndDate">
            <summary>
            Only calculate statistics from on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions.FriendlyName">
            <summary>
            The friendly_name of the TaskQueue statistics to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions.Minutes">
            <summary>
            Only calculate statistics since this many minutes in the past
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions.StartDate">
            <summary>
            Only calculate statistics from on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions.TaskChannel">
            <summary>
            Only calculate statistics on this TaskChannel.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions.SplitByWaitTime">
            <summary>
            A comma separated list of values that describes the thresholds to calculate statistics on
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadTaskQueuesStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueues to read </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.Read(Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read TaskQueuesStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueuesStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.ReadAsync(Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.ReadTaskQueuesStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read TaskQueuesStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueuesStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.Read(System.String,System.Nullable{System.DateTime},System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueues to read </param>
            <param name="endDate"> Only calculate statistics from on or before this date </param>
            <param name="friendlyName"> The friendly_name of the TaskQueue statistics to read </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate statistics on this TaskChannel.  </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueuesStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.ReadAsync(System.String,System.Nullable{System.DateTime},System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueues to read </param>
            <param name="endDate"> Only calculate statistics from on or before this date </param>
            <param name="friendlyName"> The friendly_name of the TaskQueue statistics to read </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate statistics on this TaskChannel.  </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueuesStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskQueuesStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskQueuesStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.Cumulative">
            <summary>
            An object that contains the cumulative statistics for the TaskQueues
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.Realtime">
            <summary>
            An object that contains the real-time statistics for the TaskQueues
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.TaskQueueSid">
            <summary>
            The SID of the TaskQueue from which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueuesStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the TaskQueues
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions">
            <summary>
            FetchTaskQueueStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the TaskQueue to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions.PathTaskQueueSid">
            <summary>
            The SID of the TaskQueue for which to fetch statistics
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions.EndDate">
            <summary>
            Only calculate statistics from on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions.Minutes">
            <summary>
            Only calculate statistics since this many minutes in the past
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions.StartDate">
            <summary>
            Only calculate statistics from on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions.TaskChannel">
            <summary>
            Only calculate real-time and cumulative statistics for the specified TaskChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions.SplitByWaitTime">
            <summary>
            A comma separated list of values that describes the thresholds to calculate statistics on
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTaskQueueStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathTaskQueueSid"> The SID of the TaskQueue for which to fetch statistics </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskQueueStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueueStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.FetchTaskQueueStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch TaskQueueStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueueStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueStatisticsResource.Fetch(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathTaskQueueSid"> The SID of the TaskQueue for which to fetch statistics </param>
            <param name="endDate"> Only calculate statistics from on or before this date </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate real-time and cumulative statistics for the specified TaskChannel </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TaskQueueStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueStatisticsResource.FetchAsync(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the TaskQueue to fetch </param>
            <param name="pathTaskQueueSid"> The SID of the TaskQueue for which to fetch statistics </param>
            <param name="endDate"> Only calculate statistics from on or before this date </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate real-time and cumulative statistics for the specified TaskChannel </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TaskQueueStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskQueueStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskQueueStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueStatisticsResource.Cumulative">
            <summary>
            An object that contains the cumulative statistics for the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueStatisticsResource.Realtime">
            <summary>
            An object that contains the real-time statistics for the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueStatisticsResource.TaskQueueSid">
            <summary>
            The SID of the TaskQueue from which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskQueue.TaskQueueStatisticsResource.Url">
            <summary>
            The absolute URL of the TaskQueue statistics resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.FetchTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Task to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Task to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Update(Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.UpdateAsync(Twilio.Rest.Taskrouter.V1.Workspace.UpdateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Update(System.String,System.String,System.String,Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.StatusEnum,System.String,System.Nullable{System.Int32},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Task to update </param>
            <param name="pathSid"> The SID of the resource to update </param>
            <param name="attributes"> The JSON string that describes the custom attributes of the task </param>
            <param name="assignmentStatus"> The new status of the task </param>
            <param name="reason"> The reason that the Task was canceled or complete </param>
            <param name="priority"> The Task's new priority value </param>
            <param name="taskChannel"> When MultiTasking is enabled, specify the TaskChannel with the task to update </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.UpdateAsync(System.String,System.String,System.String,Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.StatusEnum,System.String,System.Nullable{System.Int32},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Task to update </param>
            <param name="pathSid"> The SID of the resource to update </param>
            <param name="attributes"> The JSON string that describes the custom attributes of the task </param>
            <param name="assignmentStatus"> The new status of the task </param>
            <param name="reason"> The reason that the Task was canceled or complete </param>
            <param name="priority"> The Task's new priority value </param>
            <param name="taskChannel"> When MultiTasking is enabled, specify the TaskChannel with the task to update </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Delete(Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.DeleteAsync(Twilio.Rest.Taskrouter.V1.Workspace.DeleteTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Task to delete </param>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Task to delete </param>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Read(Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.ReadAsync(Twilio.Rest.Taskrouter.V1.Workspace.ReadTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Read(System.String,System.Nullable{System.Int32},System.Collections.Generic.List{System.String},System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Tasks to read </param>
            <param name="priority"> The priority value of the Tasks to read </param>
            <param name="assignmentStatus"> Returns the list of all Tasks in the Workspace with the specified assignment_status
                                   </param>
            <param name="workflowSid"> The SID of the Workflow with the Tasks to read </param>
            <param name="workflowName"> The friendly name of the Workflow with the Tasks to read </param>
            <param name="taskQueueSid"> The SID of the TaskQueue with the Tasks to read </param>
            <param name="taskQueueName"> The friendly_name of the TaskQueue with the Tasks to read </param>
            <param name="evaluateTaskAttributes"> The task attributes of the Tasks to read </param>
            <param name="ordering"> Controls the order of the Tasks returned </param>
            <param name="hasAddons"> Whether to read Tasks with addons </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Collections.Generic.List{System.String},System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Tasks to read </param>
            <param name="priority"> The priority value of the Tasks to read </param>
            <param name="assignmentStatus"> Returns the list of all Tasks in the Workspace with the specified assignment_status
                                   </param>
            <param name="workflowSid"> The SID of the Workflow with the Tasks to read </param>
            <param name="workflowName"> The friendly name of the Workflow with the Tasks to read </param>
            <param name="taskQueueSid"> The SID of the TaskQueue with the Tasks to read </param>
            <param name="taskQueueName"> The friendly_name of the TaskQueue with the Tasks to read </param>
            <param name="evaluateTaskAttributes"> The task attributes of the Tasks to read </param>
            <param name="ordering"> Controls the order of the Tasks returned </param>
            <param name="hasAddons"> Whether to read Tasks with addons </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.TaskResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.TaskResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Create(Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.CreateAsync(Twilio.Rest.Taskrouter.V1.Workspace.CreateTaskOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Task parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Create(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Task belongs to </param>
            <param name="timeout"> The amount of time in seconds the task is allowed to live </param>
            <param name="priority"> The priority to assign the new task and override the default </param>
            <param name="taskChannel"> When MultiTasking is enabled specify the TaskChannel by passing either its unique_name
                              or SID </param>
            <param name="workflowSid"> The SID of the Workflow that you would like to handle routing for the new Task </param>
            <param name="attributes"> A URL-encoded JSON string describing the attributes of the task </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.CreateAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Task belongs to </param>
            <param name="timeout"> The amount of time in seconds the task is allowed to live </param>
            <param name="priority"> The priority to assign the new task and override the default </param>
            <param name="taskChannel"> When MultiTasking is enabled specify the TaskChannel by passing either its unique_name
                              or SID </param>
            <param name="workflowSid"> The SID of the Workflow that you would like to handle routing for the new Task </param>
            <param name="attributes"> A URL-encoded JSON string describing the attributes of the task </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Task </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TaskResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TaskResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Age">
            <summary>
            The number of seconds since the task was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.AssignmentStatus">
            <summary>
            The current status of the Task's assignment
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Attributes">
            <summary>
            The JSON string with custom attributes of the work
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Addons">
            <summary>
            An object that contains the addon data for all installed addons
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Priority">
            <summary>
            Retrieve the list of all Tasks in the Workspace with the specified priority
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Reason">
            <summary>
            The reason the task was canceled or completed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.TaskQueueSid">
            <summary>
            The SID of the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.TaskQueueFriendlyName">
            <summary>
            The friendly name of the TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.TaskChannelSid">
            <summary>
            The SID of the TaskChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.TaskChannelUniqueName">
            <summary>
            The unique name of the TaskChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Timeout">
            <summary>
            The amount of time in seconds that the task is allowed to live
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.WorkflowSid">
            <summary>
            The SID of the Workflow that is controlling the Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.WorkflowFriendlyName">
            <summary>
            The friendly name of the Workflow that is controlling the Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Url">
            <summary>
            The absolute URL of the Task resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.TaskResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReadReservationOptions">
            <summary>
            ReadReservationOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReadReservationOptions.PathWorkspaceSid">
            <summary>
            The workspace_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReadReservationOptions.PathTaskSid">
            <summary>
            The task_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReadReservationOptions.ReservationStatus">
            <summary>
            Returns the list of reservations for a task with a specified ReservationStatus
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReadReservationOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadReservationOptions
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathTaskSid"> The task_sid </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReadReservationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Task.FetchReservationOptions">
            <summary>
            FetchReservationOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.FetchReservationOptions.PathWorkspaceSid">
            <summary>
            The workspace_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.FetchReservationOptions.PathTaskSid">
            <summary>
            The task_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.FetchReservationOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.FetchReservationOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchReservationOptions
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathTaskSid"> The task_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.FetchReservationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions">
            <summary>
            UpdateReservationOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.PathWorkspaceSid">
            <summary>
            The workspace_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.PathTaskSid">
            <summary>
            The task_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.ReservationStatus">
            <summary>
            New reservation status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.WorkerActivitySid">
            <summary>
            New worker activity sid if rejecting a reservation
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.Instruction">
            <summary>
            Assignment instruction for reservation
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.DequeuePostWorkActivitySid">
            <summary>
            New worker activity sid after executing a Dequeue instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.DequeueFrom">
            <summary>
            Caller ID for the call to the worker when executing a Dequeue instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.DequeueRecord">
            <summary>
            Attribute to record both legs of a call when executing a Dequeue instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.DequeueTimeout">
            <summary>
            Timeout for call when executing a Dequeue instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.DequeueTo">
            <summary>
            Contact URI of the worker when executing a Dequeue instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.DequeueStatusCallbackUrl">
            <summary>
            Callback URL for completed call event when executing a Dequeue instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.CallFrom">
            <summary>
            Caller ID for the outbound call when executing a Call instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.CallRecord">
            <summary>
            Attribute to record both legs of a call when executing a Call instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.CallTimeout">
            <summary>
            Timeout for call when executing a Call instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.CallTo">
            <summary>
            Contact URI of the worker when executing a Call instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.CallUrl">
            <summary>
            TwiML URI executed on answering the worker's leg as a result of the Call instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.CallStatusCallbackUrl">
            <summary>
            Callback URL for completed call event when executing a Call instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.CallAccept">
            <summary>
            Flag to determine if reservation should be accepted when executing a Call instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.RedirectCallSid">
            <summary>
            Call sid of the call parked in the queue when executing a Redirect instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.RedirectAccept">
            <summary>
            Flag to determine if reservation should be accepted when executing a Redirect instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.RedirectUrl">
            <summary>
            TwiML URI to redirect the call to when executing the Redirect instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.To">
            <summary>
            Contact URI of the worker when executing a Conference instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.From">
            <summary>
            Caller ID for the call to the worker when executing a Conference instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.StatusCallback">
            <summary>
            The status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.StatusCallbackMethod">
            <summary>
            The status_callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.StatusCallbackEvent">
            <summary>
            The status_callback_event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.Timeout">
            <summary>
            Timeout for call when executing a Conference instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.Record">
            <summary>
            The record
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.Muted">
            <summary>
            The muted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.Beep">
            <summary>
            The beep
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.StartConferenceOnEnter">
            <summary>
            The start_conference_on_enter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.EndConferenceOnExit">
            <summary>
            The end_conference_on_exit
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.WaitUrl">
            <summary>
            The wait_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.WaitMethod">
            <summary>
            The wait_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.EarlyMedia">
            <summary>
            The early_media
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.MaxParticipants">
            <summary>
            The max_participants
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.ConferenceStatusCallback">
            <summary>
            The conference_status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.ConferenceStatusCallbackMethod">
            <summary>
            The conference_status_callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.ConferenceStatusCallbackEvent">
            <summary>
            The conference_status_callback_event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.ConferenceRecord">
            <summary>
            The conference_record
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.ConferenceTrim">
            <summary>
            The conference_trim
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.RecordingChannels">
            <summary>
            The recording_channels
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.RecordingStatusCallback">
            <summary>
            The recording_status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.RecordingStatusCallbackMethod">
            <summary>
            The recording_status_callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.ConferenceRecordingStatusCallback">
            <summary>
            The conference_recording_status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.ConferenceRecordingStatusCallbackMethod">
            <summary>
            The conference_recording_status_callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.Region">
            <summary>
            The region
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.SipAuthUsername">
            <summary>
            The sip_auth_username
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.SipAuthPassword">
            <summary>
            The sip_auth_password
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.DequeueStatusCallbackEvent">
            <summary>
            Call progress events sent via webhooks as a result of a Dequeue instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.PostWorkActivitySid">
            <summary>
            New worker activity sid after executing a Conference instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.SupervisorMode">
            <summary>
            Supervisor mode when executing the Supervise instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.Supervisor">
            <summary>
            Supervisor sid/uri when executing the Supervise instruction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.EndConferenceOnCustomerExit">
            <summary>
            The end_conference_on_customer_exit
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.BeepOnCustomerEntrance">
            <summary>
            The beep_on_customer_entrance
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateReservationOptions
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathTaskSid"> The task_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.Read(Twilio.Rest.Taskrouter.V1.Workspace.Task.ReadReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.ReadAsync(Twilio.Rest.Taskrouter.V1.Workspace.Task.ReadReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.Read(System.String,System.String,Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.StatusEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathTaskSid"> The task_sid </param>
            <param name="reservationStatus"> Returns the list of reservations for a task with a specified ReservationStatus
                                    </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.ReadAsync(System.String,System.String,Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.StatusEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathTaskSid"> The task_sid </param>
            <param name="reservationStatus"> Returns the list of reservations for a task with a specified ReservationStatus
                                    </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.Task.FetchReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.Task.FetchReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathTaskSid"> The task_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathTaskSid"> The task_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.Update(Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.UpdateAsync(Twilio.Rest.Taskrouter.V1.Workspace.Task.UpdateReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.Update(System.String,System.String,System.String,Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.StatusEnum,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.String,System.Uri,System.String,System.String,System.Nullable{System.Int32},System.String,System.Uri,System.Uri,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Uri,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.CallStatusEnum},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.ConferenceEventEnum},System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.String,System.String,System.String,System.Collections.Generic.List{System.String},System.String,Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.SupervisorModeEnum,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathTaskSid"> The task_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="reservationStatus"> New reservation status </param>
            <param name="workerActivitySid"> New worker activity sid if rejecting a reservation </param>
            <param name="instruction"> Assignment instruction for reservation </param>
            <param name="dequeuePostWorkActivitySid"> New worker activity sid after executing a Dequeue instruction </param>
            <param name="dequeueFrom"> Caller ID for the call to the worker when executing a Dequeue instruction </param>
            <param name="dequeueRecord"> Attribute to record both legs of a call when executing a Dequeue instruction </param>
            <param name="dequeueTimeout"> Timeout for call when executing a Dequeue instruction </param>
            <param name="dequeueTo"> Contact URI of the worker when executing a Dequeue instruction </param>
            <param name="dequeueStatusCallbackUrl"> Callback URL for completed call event when executing a Dequeue instruction
                                           </param>
            <param name="callFrom"> Caller ID for the outbound call when executing a Call instruction </param>
            <param name="callRecord"> Attribute to record both legs of a call when executing a Call instruction </param>
            <param name="callTimeout"> Timeout for call when executing a Call instruction </param>
            <param name="callTo"> Contact URI of the worker when executing a Call instruction </param>
            <param name="callUrl"> TwiML URI executed on answering the worker's leg as a result of the Call instruction </param>
            <param name="callStatusCallbackUrl"> Callback URL for completed call event when executing a Call instruction
                                        </param>
            <param name="callAccept"> Flag to determine if reservation should be accepted when executing a Call instruction
                             </param>
            <param name="redirectCallSid"> Call sid of the call parked in the queue when executing a Redirect instruction
                                  </param>
            <param name="redirectAccept"> Flag to determine if reservation should be accepted when executing a Redirect
                                 instruction </param>
            <param name="redirectUrl"> TwiML URI to redirect the call to when executing the Redirect instruction </param>
            <param name="to"> Contact URI of the worker when executing a Conference instruction </param>
            <param name="from"> Caller ID for the call to the worker when executing a Conference instruction </param>
            <param name="statusCallback"> The status_callback </param>
            <param name="statusCallbackMethod"> The status_callback_method </param>
            <param name="statusCallbackEvent"> The status_callback_event </param>
            <param name="timeout"> Timeout for call when executing a Conference instruction </param>
            <param name="record"> The record </param>
            <param name="muted"> The muted </param>
            <param name="beep"> The beep </param>
            <param name="startConferenceOnEnter"> The start_conference_on_enter </param>
            <param name="endConferenceOnExit"> The end_conference_on_exit </param>
            <param name="waitUrl"> The wait_url </param>
            <param name="waitMethod"> The wait_method </param>
            <param name="earlyMedia"> The early_media </param>
            <param name="maxParticipants"> The max_participants </param>
            <param name="conferenceStatusCallback"> The conference_status_callback </param>
            <param name="conferenceStatusCallbackMethod"> The conference_status_callback_method </param>
            <param name="conferenceStatusCallbackEvent"> The conference_status_callback_event </param>
            <param name="conferenceRecord"> The conference_record </param>
            <param name="conferenceTrim"> The conference_trim </param>
            <param name="recordingChannels"> The recording_channels </param>
            <param name="recordingStatusCallback"> The recording_status_callback </param>
            <param name="recordingStatusCallbackMethod"> The recording_status_callback_method </param>
            <param name="conferenceRecordingStatusCallback"> The conference_recording_status_callback </param>
            <param name="conferenceRecordingStatusCallbackMethod"> The conference_recording_status_callback_method </param>
            <param name="region"> The region </param>
            <param name="sipAuthUsername"> The sip_auth_username </param>
            <param name="sipAuthPassword"> The sip_auth_password </param>
            <param name="dequeueStatusCallbackEvent"> Call progress events sent via webhooks as a result of a Dequeue
                                             instruction </param>
            <param name="postWorkActivitySid"> New worker activity sid after executing a Conference instruction </param>
            <param name="supervisorMode"> Supervisor mode when executing the Supervise instruction </param>
            <param name="supervisor"> Supervisor sid/uri when executing the Supervise instruction </param>
            <param name="endConferenceOnCustomerExit"> The end_conference_on_customer_exit </param>
            <param name="beepOnCustomerEntrance"> The beep_on_customer_entrance </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.UpdateAsync(System.String,System.String,System.String,Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.StatusEnum,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.String,System.Uri,System.String,System.String,System.Nullable{System.Int32},System.String,System.Uri,System.Uri,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Uri,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.CallStatusEnum},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.ConferenceEventEnum},System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.String,System.String,System.String,System.Collections.Generic.List{System.String},System.String,Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.SupervisorModeEnum,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathTaskSid"> The task_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="reservationStatus"> New reservation status </param>
            <param name="workerActivitySid"> New worker activity sid if rejecting a reservation </param>
            <param name="instruction"> Assignment instruction for reservation </param>
            <param name="dequeuePostWorkActivitySid"> New worker activity sid after executing a Dequeue instruction </param>
            <param name="dequeueFrom"> Caller ID for the call to the worker when executing a Dequeue instruction </param>
            <param name="dequeueRecord"> Attribute to record both legs of a call when executing a Dequeue instruction </param>
            <param name="dequeueTimeout"> Timeout for call when executing a Dequeue instruction </param>
            <param name="dequeueTo"> Contact URI of the worker when executing a Dequeue instruction </param>
            <param name="dequeueStatusCallbackUrl"> Callback URL for completed call event when executing a Dequeue instruction
                                           </param>
            <param name="callFrom"> Caller ID for the outbound call when executing a Call instruction </param>
            <param name="callRecord"> Attribute to record both legs of a call when executing a Call instruction </param>
            <param name="callTimeout"> Timeout for call when executing a Call instruction </param>
            <param name="callTo"> Contact URI of the worker when executing a Call instruction </param>
            <param name="callUrl"> TwiML URI executed on answering the worker's leg as a result of the Call instruction </param>
            <param name="callStatusCallbackUrl"> Callback URL for completed call event when executing a Call instruction
                                        </param>
            <param name="callAccept"> Flag to determine if reservation should be accepted when executing a Call instruction
                             </param>
            <param name="redirectCallSid"> Call sid of the call parked in the queue when executing a Redirect instruction
                                  </param>
            <param name="redirectAccept"> Flag to determine if reservation should be accepted when executing a Redirect
                                 instruction </param>
            <param name="redirectUrl"> TwiML URI to redirect the call to when executing the Redirect instruction </param>
            <param name="to"> Contact URI of the worker when executing a Conference instruction </param>
            <param name="from"> Caller ID for the call to the worker when executing a Conference instruction </param>
            <param name="statusCallback"> The status_callback </param>
            <param name="statusCallbackMethod"> The status_callback_method </param>
            <param name="statusCallbackEvent"> The status_callback_event </param>
            <param name="timeout"> Timeout for call when executing a Conference instruction </param>
            <param name="record"> The record </param>
            <param name="muted"> The muted </param>
            <param name="beep"> The beep </param>
            <param name="startConferenceOnEnter"> The start_conference_on_enter </param>
            <param name="endConferenceOnExit"> The end_conference_on_exit </param>
            <param name="waitUrl"> The wait_url </param>
            <param name="waitMethod"> The wait_method </param>
            <param name="earlyMedia"> The early_media </param>
            <param name="maxParticipants"> The max_participants </param>
            <param name="conferenceStatusCallback"> The conference_status_callback </param>
            <param name="conferenceStatusCallbackMethod"> The conference_status_callback_method </param>
            <param name="conferenceStatusCallbackEvent"> The conference_status_callback_event </param>
            <param name="conferenceRecord"> The conference_record </param>
            <param name="conferenceTrim"> The conference_trim </param>
            <param name="recordingChannels"> The recording_channels </param>
            <param name="recordingStatusCallback"> The recording_status_callback </param>
            <param name="recordingStatusCallbackMethod"> The recording_status_callback_method </param>
            <param name="conferenceRecordingStatusCallback"> The conference_recording_status_callback </param>
            <param name="conferenceRecordingStatusCallbackMethod"> The conference_recording_status_callback_method </param>
            <param name="region"> The region </param>
            <param name="sipAuthUsername"> The sip_auth_username </param>
            <param name="sipAuthPassword"> The sip_auth_password </param>
            <param name="dequeueStatusCallbackEvent"> Call progress events sent via webhooks as a result of a Dequeue
                                             instruction </param>
            <param name="postWorkActivitySid"> New worker activity sid after executing a Conference instruction </param>
            <param name="supervisorMode"> Supervisor mode when executing the Supervise instruction </param>
            <param name="supervisor"> Supervisor sid/uri when executing the Supervise instruction </param>
            <param name="endConferenceOnCustomerExit"> The end_conference_on_customer_exit </param>
            <param name="beepOnCustomerEntrance"> The beep_on_customer_entrance </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ReservationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ReservationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.AccountSid">
            <summary>
            The ID of the Account that owns this Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.ReservationStatus">
            <summary>
            The current status of the reservation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.Sid">
            <summary>
            The unique ID of this Reservation.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.TaskSid">
            <summary>
            The ID of the reserved Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.WorkerName">
            <summary>
            Human readable description of the Worker that is reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.WorkerSid">
            <summary>
            The ID of the reserved Worker
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.WorkspaceSid">
            <summary>
            The ID of the Workspace that this task is contained within.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Task.ReservationResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions">
            <summary>
            ReadWorkerOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Workers to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions.ActivityName">
            <summary>
            The activity_name of the Worker resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions.ActivitySid">
            <summary>
            The activity_sid of the Worker resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions.Available">
            <summary>
            Whether to return Worker resources that are available or unavailable
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions.FriendlyName">
            <summary>
            The friendly_name of the Worker resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions.TargetWorkersExpression">
            <summary>
            Filter by Workers that would match an expression on a TaskQueue
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions.TaskQueueName">
            <summary>
            The friendly_name of the TaskQueue that the Workers to read are eligible for
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions.TaskQueueSid">
            <summary>
            The SID of the TaskQueue that the Workers to read are eligible for
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadWorkerOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workers to read </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkerOptions">
            <summary>
            CreateWorkerOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkerOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace that the new Worker belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkerOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkerOptions.ActivitySid">
            <summary>
            The SID of a valid Activity that describes the new Worker's initial state
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkerOptions.Attributes">
            <summary>
            A valid JSON string that describes the new Worker
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkerOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateWorkerOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Worker belongs to </param>
            <param name="friendlyName"> A string to describe the resource </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkerOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkerOptions">
            <summary>
            FetchWorkerOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkerOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Worker to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkerOptions.PathSid">
            <summary>
            The SID of the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkerOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchWorkerOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkerOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkerOptions">
            <summary>
            UpdateWorkerOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkerOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Worker to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkerOptions.PathSid">
            <summary>
            The SID of the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkerOptions.ActivitySid">
            <summary>
            The SID of the Activity that describes the Worker's initial state
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkerOptions.Attributes">
            <summary>
            The JSON string that describes the Worker
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkerOptions.FriendlyName">
            <summary>
            A string to describe the Worker
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkerOptions.RejectPendingReservations">
            <summary>
            Whether to reject pending reservations
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkerOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateWorkerOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to update </param>
            <param name="pathSid"> The SID of the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkerOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkerOptions">
            <summary>
            DeleteWorkerOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkerOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Worker to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkerOptions.PathSid">
            <summary>
            The SID of the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkerOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteWorkerOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to delete </param>
            <param name="pathSid"> The SID of the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkerOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Read(Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Worker parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.ReadAsync(Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Worker parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Read(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workers to read </param>
            <param name="activityName"> The activity_name of the Worker resources to read </param>
            <param name="activitySid"> The activity_sid of the Worker resources to read </param>
            <param name="available"> Whether to return Worker resources that are available or unavailable </param>
            <param name="friendlyName"> The friendly_name of the Worker resources to read </param>
            <param name="targetWorkersExpression"> Filter by Workers that would match an expression on a TaskQueue </param>
            <param name="taskQueueName"> The friendly_name of the TaskQueue that the Workers to read are eligible for </param>
            <param name="taskQueueSid"> The SID of the TaskQueue that the Workers to read are eligible for </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.ReadAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workers to read </param>
            <param name="activityName"> The activity_name of the Worker resources to read </param>
            <param name="activitySid"> The activity_sid of the Worker resources to read </param>
            <param name="available"> Whether to return Worker resources that are available or unavailable </param>
            <param name="friendlyName"> The friendly_name of the Worker resources to read </param>
            <param name="targetWorkersExpression"> Filter by Workers that would match an expression on a TaskQueue </param>
            <param name="taskQueueName"> The friendly_name of the TaskQueue that the Workers to read are eligible for </param>
            <param name="taskQueueSid"> The SID of the TaskQueue that the Workers to read are eligible for </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Create(Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Worker parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.CreateAsync(Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Worker parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Create(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Worker belongs to </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="activitySid"> The SID of a valid Activity that describes the new Worker's initial state </param>
            <param name="attributes"> A valid JSON string that describes the new Worker </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.CreateAsync(System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Worker belongs to </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="activitySid"> The SID of a valid Activity that describes the new Worker's initial state </param>
            <param name="attributes"> A valid JSON string that describes the new Worker </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Worker parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Worker parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to fetch </param>
            <param name="pathSid"> The SID of the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Update(Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Worker parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.UpdateAsync(Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Worker parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Update(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to update </param>
            <param name="pathSid"> The SID of the resource to update </param>
            <param name="activitySid"> The SID of the Activity that describes the Worker's initial state </param>
            <param name="attributes"> The JSON string that describes the Worker </param>
            <param name="friendlyName"> A string to describe the Worker </param>
            <param name="rejectPendingReservations"> Whether to reject pending reservations </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.UpdateAsync(System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to update </param>
            <param name="pathSid"> The SID of the resource to update </param>
            <param name="activitySid"> The SID of the Activity that describes the Worker's initial state </param>
            <param name="attributes"> The JSON string that describes the Worker </param>
            <param name="friendlyName"> A string to describe the Worker </param>
            <param name="rejectPendingReservations"> Whether to reject pending reservations </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Delete(Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Worker parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.DeleteAsync(Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkerOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Worker parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to delete </param>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to delete </param>
            <param name="pathSid"> The SID of the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Worker </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkerResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkerResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.ActivityName">
            <summary>
            The friendly_name of the Worker's current Activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.ActivitySid">
            <summary>
            The SID of the Worker's current Activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Attributes">
            <summary>
            The JSON string that describes the Worker
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Available">
            <summary>
            Whether the Worker is available to perform tasks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.DateStatusChanged">
            <summary>
            The date and time in GMT of the last change to the Worker's activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the Worker
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Url">
            <summary>
            The absolute URL of the Worker resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkerResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadReservationOptions">
            <summary>
            ReadReservationOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadReservationOptions.PathWorkspaceSid">
            <summary>
            The workspace_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadReservationOptions.PathWorkerSid">
            <summary>
            The worker_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadReservationOptions.ReservationStatus">
            <summary>
            Filter by a worker's reservation status
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadReservationOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadReservationOptions
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathWorkerSid"> The worker_sid </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadReservationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchReservationOptions">
            <summary>
            FetchReservationOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchReservationOptions.PathWorkspaceSid">
            <summary>
            The workspace_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchReservationOptions.PathWorkerSid">
            <summary>
            The worker_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchReservationOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchReservationOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchReservationOptions
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathWorkerSid"> The worker_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchReservationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions">
            <summary>
            UpdateReservationOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.PathWorkspaceSid">
            <summary>
            The workspace_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.PathWorkerSid">
            <summary>
            The worker_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.PathSid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.ReservationStatus">
            <summary>
            Yes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.WorkerActivitySid">
            <summary>
            No
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.Instruction">
            <summary>
            Yes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.DequeuePostWorkActivitySid">
            <summary>
            No
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.DequeueFrom">
            <summary>
            Yes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.DequeueRecord">
            <summary>
            The dequeue_record
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.DequeueTimeout">
            <summary>
            The dequeue_timeout
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.DequeueTo">
            <summary>
            The dequeue_to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.DequeueStatusCallbackUrl">
            <summary>
            The dequeue_status_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.CallFrom">
            <summary>
            Yes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.CallRecord">
            <summary>
            The call_record
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.CallTimeout">
            <summary>
            The call_timeout
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.CallTo">
            <summary>
            The call_to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.CallUrl">
            <summary>
            Yes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.CallStatusCallbackUrl">
            <summary>
            No
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.CallAccept">
            <summary>
            No
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.RedirectCallSid">
            <summary>
            The redirect_call_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.RedirectAccept">
            <summary>
            The redirect_accept
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.RedirectUrl">
            <summary>
            The redirect_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.To">
            <summary>
            The to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.From">
            <summary>
            The from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.StatusCallback">
            <summary>
            The status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.StatusCallbackMethod">
            <summary>
            The status_callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.StatusCallbackEvent">
            <summary>
            The status_callback_event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.Timeout">
            <summary>
            The timeout
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.Record">
            <summary>
            The record
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.Muted">
            <summary>
            The muted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.Beep">
            <summary>
            The beep
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.StartConferenceOnEnter">
            <summary>
            The start_conference_on_enter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.EndConferenceOnExit">
            <summary>
            The end_conference_on_exit
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.WaitUrl">
            <summary>
            The wait_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.WaitMethod">
            <summary>
            The wait_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.EarlyMedia">
            <summary>
            The early_media
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.MaxParticipants">
            <summary>
            The max_participants
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.ConferenceStatusCallback">
            <summary>
            The conference_status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.ConferenceStatusCallbackMethod">
            <summary>
            The conference_status_callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.ConferenceStatusCallbackEvent">
            <summary>
            The conference_status_callback_event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.ConferenceRecord">
            <summary>
            The conference_record
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.ConferenceTrim">
            <summary>
            The conference_trim
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.RecordingChannels">
            <summary>
            The recording_channels
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.RecordingStatusCallback">
            <summary>
            The recording_status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.RecordingStatusCallbackMethod">
            <summary>
            The recording_status_callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.ConferenceRecordingStatusCallback">
            <summary>
            The conference_recording_status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.ConferenceRecordingStatusCallbackMethod">
            <summary>
            The conference_recording_status_callback_method
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.Region">
            <summary>
            The region
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.SipAuthUsername">
            <summary>
            The sip_auth_username
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.SipAuthPassword">
            <summary>
            The sip_auth_password
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.DequeueStatusCallbackEvent">
            <summary>
            The dequeue_status_callback_event
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.PostWorkActivitySid">
            <summary>
            The post_work_activity_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.EndConferenceOnCustomerExit">
            <summary>
            The end_conference_on_customer_exit
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.BeepOnCustomerEntrance">
            <summary>
            The beep_on_customer_entrance
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateReservationOptions
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathWorkerSid"> The worker_sid </param>
            <param name="pathSid"> The sid </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.Read(Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.ReadAsync(Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.Read(System.String,System.String,Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.StatusEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathWorkerSid"> The worker_sid </param>
            <param name="reservationStatus"> Filter by a worker's reservation status </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.ReadAsync(System.String,System.String,Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.StatusEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathWorkerSid"> The worker_sid </param>
            <param name="reservationStatus"> Filter by a worker's reservation status </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathWorkerSid"> The worker_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathWorkerSid"> The worker_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.Update(Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.UpdateAsync(Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateReservationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Reservation parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.Update(System.String,System.String,System.String,Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.StatusEnum,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.String,System.Uri,System.String,System.String,System.Nullable{System.Int32},System.String,System.Uri,System.Uri,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Uri,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.CallStatusEnum},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.ConferenceEventEnum},System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.String,System.String,System.String,System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathWorkerSid"> The worker_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="reservationStatus"> Yes </param>
            <param name="workerActivitySid"> No </param>
            <param name="instruction"> Yes </param>
            <param name="dequeuePostWorkActivitySid"> No </param>
            <param name="dequeueFrom"> Yes </param>
            <param name="dequeueRecord"> The dequeue_record </param>
            <param name="dequeueTimeout"> The dequeue_timeout </param>
            <param name="dequeueTo"> The dequeue_to </param>
            <param name="dequeueStatusCallbackUrl"> The dequeue_status_callback_url </param>
            <param name="callFrom"> Yes </param>
            <param name="callRecord"> The call_record </param>
            <param name="callTimeout"> The call_timeout </param>
            <param name="callTo"> The call_to </param>
            <param name="callUrl"> Yes </param>
            <param name="callStatusCallbackUrl"> No </param>
            <param name="callAccept"> No </param>
            <param name="redirectCallSid"> The redirect_call_sid </param>
            <param name="redirectAccept"> The redirect_accept </param>
            <param name="redirectUrl"> The redirect_url </param>
            <param name="to"> The to </param>
            <param name="from"> The from </param>
            <param name="statusCallback"> The status_callback </param>
            <param name="statusCallbackMethod"> The status_callback_method </param>
            <param name="statusCallbackEvent"> The status_callback_event </param>
            <param name="timeout"> The timeout </param>
            <param name="record"> The record </param>
            <param name="muted"> The muted </param>
            <param name="beep"> The beep </param>
            <param name="startConferenceOnEnter"> The start_conference_on_enter </param>
            <param name="endConferenceOnExit"> The end_conference_on_exit </param>
            <param name="waitUrl"> The wait_url </param>
            <param name="waitMethod"> The wait_method </param>
            <param name="earlyMedia"> The early_media </param>
            <param name="maxParticipants"> The max_participants </param>
            <param name="conferenceStatusCallback"> The conference_status_callback </param>
            <param name="conferenceStatusCallbackMethod"> The conference_status_callback_method </param>
            <param name="conferenceStatusCallbackEvent"> The conference_status_callback_event </param>
            <param name="conferenceRecord"> The conference_record </param>
            <param name="conferenceTrim"> The conference_trim </param>
            <param name="recordingChannels"> The recording_channels </param>
            <param name="recordingStatusCallback"> The recording_status_callback </param>
            <param name="recordingStatusCallbackMethod"> The recording_status_callback_method </param>
            <param name="conferenceRecordingStatusCallback"> The conference_recording_status_callback </param>
            <param name="conferenceRecordingStatusCallbackMethod"> The conference_recording_status_callback_method </param>
            <param name="region"> The region </param>
            <param name="sipAuthUsername"> The sip_auth_username </param>
            <param name="sipAuthPassword"> The sip_auth_password </param>
            <param name="dequeueStatusCallbackEvent"> The dequeue_status_callback_event </param>
            <param name="postWorkActivitySid"> The post_work_activity_sid </param>
            <param name="endConferenceOnCustomerExit"> The end_conference_on_customer_exit </param>
            <param name="beepOnCustomerEntrance"> The beep_on_customer_entrance </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.UpdateAsync(System.String,System.String,System.String,Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.StatusEnum,System.String,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.String,System.Uri,System.String,System.String,System.Nullable{System.Int32},System.String,System.Uri,System.Uri,System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Uri,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.CallStatusEnum},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.ConferenceEventEnum},System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.String,System.String,System.String,System.Collections.Generic.List{System.String},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The workspace_sid </param>
            <param name="pathWorkerSid"> The worker_sid </param>
            <param name="pathSid"> The sid </param>
            <param name="reservationStatus"> Yes </param>
            <param name="workerActivitySid"> No </param>
            <param name="instruction"> Yes </param>
            <param name="dequeuePostWorkActivitySid"> No </param>
            <param name="dequeueFrom"> Yes </param>
            <param name="dequeueRecord"> The dequeue_record </param>
            <param name="dequeueTimeout"> The dequeue_timeout </param>
            <param name="dequeueTo"> The dequeue_to </param>
            <param name="dequeueStatusCallbackUrl"> The dequeue_status_callback_url </param>
            <param name="callFrom"> Yes </param>
            <param name="callRecord"> The call_record </param>
            <param name="callTimeout"> The call_timeout </param>
            <param name="callTo"> The call_to </param>
            <param name="callUrl"> Yes </param>
            <param name="callStatusCallbackUrl"> No </param>
            <param name="callAccept"> No </param>
            <param name="redirectCallSid"> The redirect_call_sid </param>
            <param name="redirectAccept"> The redirect_accept </param>
            <param name="redirectUrl"> The redirect_url </param>
            <param name="to"> The to </param>
            <param name="from"> The from </param>
            <param name="statusCallback"> The status_callback </param>
            <param name="statusCallbackMethod"> The status_callback_method </param>
            <param name="statusCallbackEvent"> The status_callback_event </param>
            <param name="timeout"> The timeout </param>
            <param name="record"> The record </param>
            <param name="muted"> The muted </param>
            <param name="beep"> The beep </param>
            <param name="startConferenceOnEnter"> The start_conference_on_enter </param>
            <param name="endConferenceOnExit"> The end_conference_on_exit </param>
            <param name="waitUrl"> The wait_url </param>
            <param name="waitMethod"> The wait_method </param>
            <param name="earlyMedia"> The early_media </param>
            <param name="maxParticipants"> The max_participants </param>
            <param name="conferenceStatusCallback"> The conference_status_callback </param>
            <param name="conferenceStatusCallbackMethod"> The conference_status_callback_method </param>
            <param name="conferenceStatusCallbackEvent"> The conference_status_callback_event </param>
            <param name="conferenceRecord"> The conference_record </param>
            <param name="conferenceTrim"> The conference_trim </param>
            <param name="recordingChannels"> The recording_channels </param>
            <param name="recordingStatusCallback"> The recording_status_callback </param>
            <param name="recordingStatusCallbackMethod"> The recording_status_callback_method </param>
            <param name="conferenceRecordingStatusCallback"> The conference_recording_status_callback </param>
            <param name="conferenceRecordingStatusCallbackMethod"> The conference_recording_status_callback_method </param>
            <param name="region"> The region </param>
            <param name="sipAuthUsername"> The sip_auth_username </param>
            <param name="sipAuthPassword"> The sip_auth_password </param>
            <param name="dequeueStatusCallbackEvent"> The dequeue_status_callback_event </param>
            <param name="postWorkActivitySid"> The post_work_activity_sid </param>
            <param name="endConferenceOnCustomerExit"> The end_conference_on_customer_exit </param>
            <param name="beepOnCustomerEntrance"> The beep_on_customer_entrance </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Reservation </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ReservationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ReservationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.AccountSid">
            <summary>
            The account_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.DateCreated">
            <summary>
            The date_created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.DateUpdated">
            <summary>
            The date_updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.ReservationStatus">
            <summary>
            Filter by a worker's reservation status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.Sid">
            <summary>
            The sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.TaskSid">
            <summary>
            The task_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.WorkerName">
            <summary>
            The worker_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.WorkerSid">
            <summary>
            The worker_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.WorkspaceSid">
            <summary>
            The workspace_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.Url">
            <summary>
            The url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReservationResource.Links">
            <summary>
            The links
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadWorkerChannelOptions">
            <summary>
            ReadWorkerChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadWorkerChannelOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the WorkerChannels to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadWorkerChannelOptions.PathWorkerSid">
            <summary>
            The SID of the Worker with the WorkerChannels to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadWorkerChannelOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadWorkerChannelOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannels to read </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannels to read </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadWorkerChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerChannelOptions">
            <summary>
            FetchWorkerChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerChannelOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the WorkerChannel to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerChannelOptions.PathWorkerSid">
            <summary>
            The SID of the Worker with the WorkerChannel to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerChannelOptions.PathSid">
            <summary>
            The SID of the to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerChannelOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchWorkerChannelOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannel to fetch </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannel to fetch </param>
            <param name="pathSid"> The SID of the to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateWorkerChannelOptions">
            <summary>
            UpdateWorkerChannelOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateWorkerChannelOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the WorkerChannel to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateWorkerChannelOptions.PathWorkerSid">
            <summary>
            The SID of the Worker with the WorkerChannel to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateWorkerChannelOptions.PathSid">
            <summary>
            The SID of the WorkerChannel to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateWorkerChannelOptions.Capacity">
            <summary>
            The total number of Tasks that the Worker should handle for the TaskChannel type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateWorkerChannelOptions.Available">
            <summary>
            Whether the WorkerChannel is available
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateWorkerChannelOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateWorkerChannelOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannel to update </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannel to update </param>
            <param name="pathSid"> The SID of the WorkerChannel to update </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateWorkerChannelOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.Read(Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadWorkerChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read WorkerChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.ReadAsync(Twilio.Rest.Taskrouter.V1.Workspace.Worker.ReadWorkerChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read WorkerChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannels to read </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannels to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannels to read </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannels to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkerChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkerChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannel to fetch </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannel to fetch </param>
            <param name="pathSid"> The SID of the to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannel to fetch </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannel to fetch </param>
            <param name="pathSid"> The SID of the to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.Update(Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateWorkerChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update WorkerChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.UpdateAsync(Twilio.Rest.Taskrouter.V1.Workspace.Worker.UpdateWorkerChannelOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update WorkerChannel parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.Update(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannel to update </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannel to update </param>
            <param name="pathSid"> The SID of the WorkerChannel to update </param>
            <param name="capacity"> The total number of Tasks that the Worker should handle for the TaskChannel type </param>
            <param name="available"> Whether the WorkerChannel is available </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannel to update </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannel to update </param>
            <param name="pathSid"> The SID of the WorkerChannel to update </param>
            <param name="capacity"> The total number of Tasks that the Worker should handle for the TaskChannel type </param>
            <param name="available"> Whether the WorkerChannel is available </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkerChannel </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkerChannelResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkerChannelResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.AssignedTasks">
            <summary>
            The total number of Tasks assigned to Worker for the TaskChannel type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.Available">
            <summary>
            Whether the Worker should receive Tasks of the TaskChannel type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.AvailableCapacityPercentage">
            <summary>
            The current available capacity between 0 to 100 for the TaskChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.ConfiguredCapacity">
            <summary>
            The current configured capacity for the WorkerChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.TaskChannelSid">
            <summary>
            The SID of the TaskChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.TaskChannelUniqueName">
            <summary>
            The unique name of the TaskChannel, such as 'voice' or 'sms'
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.WorkerSid">
            <summary>
            The SID of the Worker that contains the WorkerChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the WorkerChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerChannelResource.Url">
            <summary>
            The absolute URL of the WorkerChannel resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersCumulativeStatisticsOptions">
            <summary>
            FetchWorkersCumulativeStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersCumulativeStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersCumulativeStatisticsOptions.EndDate">
            <summary>
            Only calculate statistics from on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersCumulativeStatisticsOptions.Minutes">
            <summary>
            Only calculate statistics since this many minutes in the past
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersCumulativeStatisticsOptions.StartDate">
            <summary>
            Only calculate statistics from on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersCumulativeStatisticsOptions.TaskChannel">
            <summary>
            Only calculate cumulative statistics on this TaskChannel
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersCumulativeStatisticsOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchWorkersCumulativeStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersCumulativeStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersCumulativeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkersCumulativeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkersCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersCumulativeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkersCumulativeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkersCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.Fetch(System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the resource to fetch </param>
            <param name="endDate"> Only calculate statistics from on or before this date </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate cumulative statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkersCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.FetchAsync(System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the resource to fetch </param>
            <param name="endDate"> Only calculate statistics from on or before this date </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate cumulative statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkersCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkersCumulativeStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkersCumulativeStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.StartTime">
            <summary>
            The beginning of the interval during which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.EndTime">
            <summary>
            The end of the interval during which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.ActivityDurations">
            <summary>
            The minimum, average, maximum, and total time that Workers spent in each Activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.ReservationsCreated">
            <summary>
            The total number of Reservations that were created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.ReservationsAccepted">
            <summary>
            The total number of Reservations that were accepted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.ReservationsRejected">
            <summary>
            The total number of Reservations that were rejected
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.ReservationsTimedOut">
            <summary>
            The total number of Reservations that were timed out
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.ReservationsCanceled">
            <summary>
            The total number of Reservations that were canceled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.ReservationsRescinded">
            <summary>
            The total number of Reservations that were rescinded
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the Workers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersCumulativeStatisticsResource.Url">
            <summary>
            The absolute URL of the Workers statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersRealTimeStatisticsOptions">
            <summary>
            FetchWorkersRealTimeStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersRealTimeStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersRealTimeStatisticsOptions.TaskChannel">
            <summary>
            Only calculate real-time statistics on this TaskChannel
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersRealTimeStatisticsOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchWorkersRealTimeStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersRealTimeStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersRealTimeStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersRealTimeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkersRealTimeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkersRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersRealTimeStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersRealTimeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkersRealTimeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkersRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersRealTimeStatisticsResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the resource to fetch </param>
            <param name="taskChannel"> Only calculate real-time statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkersRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersRealTimeStatisticsResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the resource to fetch </param>
            <param name="taskChannel"> Only calculate real-time statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkersRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersRealTimeStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkersRealTimeStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkersRealTimeStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersRealTimeStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersRealTimeStatisticsResource.ActivityStatistics">
            <summary>
            The number of current Workers by Activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersRealTimeStatisticsResource.TotalWorkers">
            <summary>
            The total number of Workers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersRealTimeStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the Workers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersRealTimeStatisticsResource.Url">
            <summary>
            The absolute URL of the Workers statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions">
            <summary>
            FetchWorkersStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Worker to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions.Minutes">
            <summary>
            Only calculate statistics since this many minutes in the past
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions.StartDate">
            <summary>
            Only calculate statistics from on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions.EndDate">
            <summary>
            Only calculate statistics from this date and time and earlier
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions.TaskQueueSid">
            <summary>
            The SID of the TaskQueue for which to fetch Worker statistics
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions.TaskQueueName">
            <summary>
            The friendly_name of the TaskQueue for which to fetch Worker statistics
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions.FriendlyName">
            <summary>
            Only include Workers with `friendly_name` values that match this parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions.TaskChannel">
            <summary>
            Only calculate statistics on this TaskChannel
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchWorkersStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkersStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkersStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkersStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkersStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkersStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersStatisticsResource.Fetch(System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to fetch </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="endDate"> Only calculate statistics from this date and time and earlier </param>
            <param name="taskQueueSid"> The SID of the TaskQueue for which to fetch Worker statistics </param>
            <param name="taskQueueName"> The friendly_name of the TaskQueue for which to fetch Worker statistics </param>
            <param name="friendlyName"> Only include Workers with `friendly_name` values that match this parameter </param>
            <param name="taskChannel"> Only calculate statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkersStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersStatisticsResource.FetchAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Worker to fetch </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="endDate"> Only calculate statistics from this date and time and earlier </param>
            <param name="taskQueueSid"> The SID of the TaskQueue for which to fetch Worker statistics </param>
            <param name="taskQueueName"> The friendly_name of the TaskQueue for which to fetch Worker statistics </param>
            <param name="friendlyName"> Only include Workers with `friendly_name` values that match this parameter </param>
            <param name="taskChannel"> Only calculate statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkersStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkersStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkersStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersStatisticsResource.Realtime">
            <summary>
            An object that contains the real-time statistics for the Worker
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersStatisticsResource.Cumulative">
            <summary>
            An object that contains the cumulative statistics for the Worker
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the Worker
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkersStatisticsResource.Url">
            <summary>
            The absolute URL of the Worker statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerStatisticsOptions">
            <summary>
            FetchWorkerStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the WorkerChannel to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerStatisticsOptions.PathWorkerSid">
            <summary>
            The SID of the Worker with the WorkerChannel to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerStatisticsOptions.Minutes">
            <summary>
            Only calculate statistics since this many minutes in the past
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerStatisticsOptions.StartDate">
            <summary>
            Only calculate statistics from on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerStatisticsOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerStatisticsOptions.TaskChannel">
            <summary>
            Only calculate statistics on this TaskChannel
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerStatisticsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchWorkerStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannel to fetch </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannel to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkerStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkerStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.Worker.FetchWorkerStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkerStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkerStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerStatisticsResource.Fetch(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannel to fetch </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannel to fetch </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="taskChannel"> Only calculate statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkerStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerStatisticsResource.FetchAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the WorkerChannel to fetch </param>
            <param name="pathWorkerSid"> The SID of the Worker with the WorkerChannel to fetch </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="taskChannel"> Only calculate statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkerStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkerStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkerStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerStatisticsResource.Cumulative">
            <summary>
            An object that contains the cumulative statistics for the Worker
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerStatisticsResource.WorkerSid">
            <summary>
            The SID of the Worker that contains the WorkerChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the WorkerChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Worker.WorkerStatisticsResource.Url">
            <summary>
            The absolute URL of the WorkerChannel statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkflowOptions">
            <summary>
            FetchWorkflowOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkflowOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Workflow to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkflowOptions.PathSid">
            <summary>
            The SID of the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkflowOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchWorkflowOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to fetch </param>
            <param name="pathSid"> The SID of the resource </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkflowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions">
            <summary>
            UpdateWorkflowOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Workflow to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions.PathSid">
            <summary>
            The SID of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions.FriendlyName">
            <summary>
             descriptive string that you create to describe the Workflow resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions.AssignmentCallbackUrl">
            <summary>
            The URL from your application that will process task assignment events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions.FallbackAssignmentCallbackUrl">
            <summary>
            The URL that we should call when a call to the `assignment_callback_url` fails
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions.Configuration">
            <summary>
            A JSON string that contains the rules to apply to the Workflow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions.TaskReservationTimeout">
            <summary>
            How long TaskRouter will wait for a confirmation response from your application after it assigns a Task to a Worker
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateWorkflowOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to update </param>
            <param name="pathSid"> The SID of the resource </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkflowOptions">
            <summary>
            DeleteWorkflowOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkflowOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Workflow to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkflowOptions.PathSid">
            <summary>
            The SID of the Workflow resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkflowOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteWorkflowOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to delete </param>
            <param name="pathSid"> The SID of the Workflow resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkflowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkflowOptions">
            <summary>
            ReadWorkflowOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkflowOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Workflow to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkflowOptions.FriendlyName">
            <summary>
            The friendly_name of the Workflow resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkflowOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadWorkflowOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to read </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkflowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkflowOptions">
            <summary>
            CreateWorkflowOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkflowOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace that the new Workflow to create belongs to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkflowOptions.FriendlyName">
            <summary>
             descriptive string that you create to describe the Workflow resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkflowOptions.Configuration">
            <summary>
            A JSON string that contains the rules to apply to the Workflow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkflowOptions.AssignmentCallbackUrl">
            <summary>
            The URL from your application that will process task assignment events
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkflowOptions.FallbackAssignmentCallbackUrl">
            <summary>
            The URL that we should call when a call to the `assignment_callback_url` fails
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkflowOptions.TaskReservationTimeout">
            <summary>
            How long TaskRouter will wait for a confirmation response from your application after it assigns a Task to a Worker
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkflowOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateWorkflowOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Workflow to create belongs to </param>
            <param name="friendlyName">  descriptive string that you create to describe the Workflow resource </param>
            <param name="configuration"> A JSON string that contains the rules to apply to the Workflow </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkflowOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkflowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Workflow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkflowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Workflow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to fetch </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to fetch </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Update(Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Workflow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.UpdateAsync(Twilio.Rest.Taskrouter.V1.Workspace.UpdateWorkflowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Workflow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Update(System.String,System.String,System.String,System.Uri,System.Uri,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to update </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="friendlyName">  descriptive string that you create to describe the Workflow resource </param>
            <param name="assignmentCallbackUrl"> The URL from your application that will process task assignment events </param>
            <param name="fallbackAssignmentCallbackUrl"> The URL that we should call when a call to the
                                                `assignment_callback_url` fails </param>
            <param name="configuration"> A JSON string that contains the rules to apply to the Workflow </param>
            <param name="taskReservationTimeout"> How long TaskRouter will wait for a confirmation response from your
                                         application after it assigns a Task to a Worker </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.UpdateAsync(System.String,System.String,System.String,System.Uri,System.Uri,System.String,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to update </param>
            <param name="pathSid"> The SID of the resource </param>
            <param name="friendlyName">  descriptive string that you create to describe the Workflow resource </param>
            <param name="assignmentCallbackUrl"> The URL from your application that will process task assignment events </param>
            <param name="fallbackAssignmentCallbackUrl"> The URL that we should call when a call to the
                                                `assignment_callback_url` fails </param>
            <param name="configuration"> A JSON string that contains the rules to apply to the Workflow </param>
            <param name="taskReservationTimeout"> How long TaskRouter will wait for a confirmation response from your
                                         application after it assigns a Task to a Worker </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Delete(Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkflowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Workflow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.DeleteAsync(Twilio.Rest.Taskrouter.V1.Workspace.DeleteWorkflowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Workflow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to delete </param>
            <param name="pathSid"> The SID of the Workflow resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to delete </param>
            <param name="pathSid"> The SID of the Workflow resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Read(Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkflowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Workflow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.ReadAsync(Twilio.Rest.Taskrouter.V1.Workspace.ReadWorkflowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Workflow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to read </param>
            <param name="friendlyName"> The friendly_name of the Workflow resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to read </param>
            <param name="friendlyName"> The friendly_name of the Workflow resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.NextPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Create(Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkflowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Workflow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.CreateAsync(Twilio.Rest.Taskrouter.V1.Workspace.CreateWorkflowOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Workflow parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Create(System.String,System.String,System.String,System.Uri,System.Uri,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Workflow to create belongs to </param>
            <param name="friendlyName">  descriptive string that you create to describe the Workflow resource </param>
            <param name="configuration"> A JSON string that contains the rules to apply to the Workflow </param>
            <param name="assignmentCallbackUrl"> The URL from your application that will process task assignment events </param>
            <param name="fallbackAssignmentCallbackUrl"> The URL that we should call when a call to the
                                                `assignment_callback_url` fails </param>
            <param name="taskReservationTimeout"> How long TaskRouter will wait for a confirmation response from your
                                         application after it assigns a Task to a Worker </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.CreateAsync(System.String,System.String,System.String,System.Uri,System.Uri,System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace that the new Workflow to create belongs to </param>
            <param name="friendlyName">  descriptive string that you create to describe the Workflow resource </param>
            <param name="configuration"> A JSON string that contains the rules to apply to the Workflow </param>
            <param name="assignmentCallbackUrl"> The URL from your application that will process task assignment events </param>
            <param name="fallbackAssignmentCallbackUrl"> The URL that we should call when a call to the
                                                `assignment_callback_url` fails </param>
            <param name="taskReservationTimeout"> How long TaskRouter will wait for a confirmation response from your
                                         application after it assigns a Task to a Worker </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Workflow </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkflowResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkflowResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.AssignmentCallbackUrl">
            <summary>
            The URL that we call when a task managed by the Workflow is assigned to a Worker
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Configuration">
            <summary>
            A JSON string that contains the Workflow's configuration
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.DocumentContentType">
            <summary>
            The MIME type of the document
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.FallbackAssignmentCallbackUrl">
            <summary>
            The URL that we call when a call to the `assignment_callback_url` fails
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.FriendlyName">
            <summary>
            The string that you assigned to describe the Workflow resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.TaskReservationTimeout">
            <summary>
            How long TaskRouter will wait for a confirmation response from your application after it assigns a Task to a Worker
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the Workflow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Url">
            <summary>
            The absolute URL of the Workflow resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkflowResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions">
            <summary>
            FetchWorkflowCumulativeStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions.PathWorkflowSid">
            <summary>
            Returns the list of Tasks that are being controlled by the Workflow with the specified Sid value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions.Minutes">
            <summary>
            Only calculate statistics since this many minutes in the past
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions.StartDate">
            <summary>
            Only calculate statistics from on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions.TaskChannel">
            <summary>
            Only calculate cumulative statistics on this TaskChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions.SplitByWaitTime">
            <summary>
            A comma separated list of values that describes the thresholds to calculate statistics on
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchWorkflowCumulativeStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the resource to fetch </param>
            <param name="pathWorkflowSid"> Returns the list of Tasks that are being controlled by the Workflow with the
                                  specified Sid value </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkflowCumulativeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkflowCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowCumulativeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkflowCumulativeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkflowCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.Fetch(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the resource to fetch </param>
            <param name="pathWorkflowSid"> Returns the list of Tasks that are being controlled by the Workflow with the
                                  specified Sid value </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate cumulative statistics on this TaskChannel </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkflowCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.FetchAsync(System.String,System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the resource to fetch </param>
            <param name="pathWorkflowSid"> Returns the list of Tasks that are being controlled by the Workflow with the
                                  specified Sid value </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate cumulative statistics on this TaskChannel </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkflowCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkflowCumulativeStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkflowCumulativeStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.AvgTaskAcceptanceTime">
            <summary>
            The average time in seconds between Task creation and acceptance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.StartTime">
            <summary>
            The beginning of the interval during which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.EndTime">
            <summary>
            The end of the interval during which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.ReservationsCreated">
            <summary>
            The total number of Reservations that were created for Workers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.ReservationsAccepted">
            <summary>
            The total number of Reservations accepted by Workers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.ReservationsRejected">
            <summary>
            The total number of Reservations that were rejected
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.ReservationsTimedOut">
            <summary>
            The total number of Reservations that were timed out
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.ReservationsCanceled">
            <summary>
            The total number of Reservations that were canceled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.ReservationsRescinded">
            <summary>
            The total number of Reservations that were rescinded
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.SplitByWaitTime">
            <summary>
            A list of objects that describe the Tasks canceled and reservations accepted above and below the specified thresholds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.WaitDurationUntilAccepted">
            <summary>
            The wait duration statistics for Tasks that were accepted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.WaitDurationUntilCanceled">
            <summary>
            The wait duration statistics for Tasks that were canceled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.TasksCanceled">
            <summary>
            The total number of Tasks that were canceled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.TasksCompleted">
            <summary>
            The total number of Tasks that were completed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.TasksEntered">
            <summary>
            The total number of Tasks that entered the Workflow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.TasksDeleted">
            <summary>
            The total number of Tasks that were deleted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.TasksMoved">
            <summary>
            The total number of Tasks that were moved from one queue to another
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.TasksTimedOutInWorkflow">
            <summary>
            The total number of Tasks that were timed out of their Workflows
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.WorkflowSid">
            <summary>
            Returns the list of Tasks that are being controlled by the Workflow with the specified Sid value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the Workflow.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowCumulativeStatisticsResource.Url">
            <summary>
            The absolute URL of the Workflow statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowRealTimeStatisticsOptions">
            <summary>
            FetchWorkflowRealTimeStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowRealTimeStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Workflow to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowRealTimeStatisticsOptions.PathWorkflowSid">
            <summary>
            Returns the list of Tasks that are being controlled by the Workflow with the specified SID value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowRealTimeStatisticsOptions.TaskChannel">
            <summary>
            Only calculate real-time statistics on this TaskChannel
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowRealTimeStatisticsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchWorkflowRealTimeStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to fetch </param>
            <param name="pathWorkflowSid"> Returns the list of Tasks that are being controlled by the Workflow with the
                                  specified SID value </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowRealTimeStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowRealTimeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkflowRealTimeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkflowRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowRealTimeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkflowRealTimeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkflowRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to fetch </param>
            <param name="pathWorkflowSid"> Returns the list of Tasks that are being controlled by the Workflow with the
                                  specified SID value </param>
            <param name="taskChannel"> Only calculate real-time statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkflowRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to fetch </param>
            <param name="pathWorkflowSid"> Returns the list of Tasks that are being controlled by the Workflow with the
                                  specified SID value </param>
            <param name="taskChannel"> Only calculate real-time statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkflowRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkflowRealTimeStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkflowRealTimeStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.LongestTaskWaitingAge">
            <summary>
            The age of the longest waiting Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.LongestTaskWaitingSid">
            <summary>
            The SID of the longest waiting Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.TasksByPriority">
            <summary>
            The number of Tasks by priority
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.TasksByStatus">
            <summary>
            The number of Tasks by their current status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.TotalTasks">
            <summary>
            The total number of Tasks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.WorkflowSid">
            <summary>
            Returns the list of Tasks that are being controlled by the Workflow with the specified SID value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the Workflow.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowRealTimeStatisticsResource.Url">
            <summary>
            The absolute URL of the Workflow statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions">
            <summary>
            FetchWorkflowStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace with the Workflow to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions.PathWorkflowSid">
            <summary>
            Returns the list of Tasks that are being controlled by the Workflow with the specified SID value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions.Minutes">
            <summary>
            Only calculate statistics since this many minutes in the past
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions.StartDate">
            <summary>
            Only calculate statistics from on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions.EndDate">
            <summary>
            Only calculate statistics from this date and time and earlier
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions.TaskChannel">
            <summary>
            Only calculate real-time statistics on this TaskChannel.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions.SplitByWaitTime">
            <summary>
            A comma separated list of values that describes the thresholds to calculate statistics on
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchWorkflowStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to fetch </param>
            <param name="pathWorkflowSid"> Returns the list of Tasks that are being controlled by the Workflow with the
                                  specified SID value </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkflowStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkflowStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.Workflow.FetchWorkflowStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkflowStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkflowStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowStatisticsResource.Fetch(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to fetch </param>
            <param name="pathWorkflowSid"> Returns the list of Tasks that are being controlled by the Workflow with the
                                  specified SID value </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="endDate"> Only calculate statistics from this date and time and earlier </param>
            <param name="taskChannel"> Only calculate real-time statistics on this TaskChannel.  </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkflowStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowStatisticsResource.FetchAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace with the Workflow to fetch </param>
            <param name="pathWorkflowSid"> Returns the list of Tasks that are being controlled by the Workflow with the
                                  specified SID value </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="endDate"> Only calculate statistics from this date and time and earlier </param>
            <param name="taskChannel"> Only calculate real-time statistics on this TaskChannel.  </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkflowStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkflowStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkflowStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowStatisticsResource.Cumulative">
            <summary>
            An object that contains the cumulative statistics for the Workflow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowStatisticsResource.Realtime">
            <summary>
            An object that contains the real-time statistics for the Workflow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowStatisticsResource.WorkflowSid">
            <summary>
            Returns the list of Tasks that are being controlled by the Workflow with the specified SID value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace that contains the Workflow
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.Workflow.WorkflowStatisticsResource.Url">
            <summary>
            The absolute URL of the Workflow statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceCumulativeStatisticsOptions">
            <summary>
            FetchWorkspaceCumulativeStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceCumulativeStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceCumulativeStatisticsOptions.EndDate">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceCumulativeStatisticsOptions.Minutes">
            <summary>
            Only calculate statistics since this many minutes in the past
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceCumulativeStatisticsOptions.StartDate">
            <summary>
            Only calculate statistics from on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceCumulativeStatisticsOptions.TaskChannel">
            <summary>
            Only calculate cumulative statistics on this TaskChannel
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceCumulativeStatisticsOptions.SplitByWaitTime">
            <summary>
            A comma separated list of values that describes the thresholds to calculate statistics on
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceCumulativeStatisticsOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchWorkspaceCumulativeStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceCumulativeStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceCumulativeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkspaceCumulativeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkspaceCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceCumulativeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkspaceCumulativeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkspaceCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.Fetch(System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace to fetch </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate cumulative statistics on this TaskChannel </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkspaceCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.FetchAsync(System.String,System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace to fetch </param>
            <param name="endDate"> Only include usage that occurred on or before this date </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="taskChannel"> Only calculate cumulative statistics on this TaskChannel </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkspaceCumulativeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkspaceCumulativeStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkspaceCumulativeStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.AvgTaskAcceptanceTime">
            <summary>
            The average time in seconds between Task creation and acceptance
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.StartTime">
            <summary>
            The beginning of the interval during which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.EndTime">
            <summary>
            The end of the interval during which these statistics were calculated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.ReservationsCreated">
            <summary>
            The total number of Reservations that were created for Workers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.ReservationsAccepted">
            <summary>
            The total number of Reservations accepted by Workers
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.ReservationsRejected">
            <summary>
            The total number of Reservations that were rejected
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.ReservationsTimedOut">
            <summary>
            The total number of Reservations that were timed out
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.ReservationsCanceled">
            <summary>
            The total number of Reservations that were canceled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.ReservationsRescinded">
            <summary>
            The total number of Reservations that were rescinded
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.SplitByWaitTime">
            <summary>
            A list of objects that describe the Tasks canceled and reservations accepted above and below the specified thresholds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.WaitDurationUntilAccepted">
            <summary>
            The wait duration statistics for Tasks that were accepted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.WaitDurationUntilCanceled">
            <summary>
            The wait duration statistics for Tasks that were canceled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.TasksCanceled">
            <summary>
            The total number of Tasks that were canceled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.TasksCompleted">
            <summary>
            The total number of Tasks that were completed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.TasksCreated">
            <summary>
            The total number of Tasks created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.TasksDeleted">
            <summary>
            The total number of Tasks that were deleted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.TasksMoved">
            <summary>
            The total number of Tasks that were moved from one queue to another
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.TasksTimedOutInWorkflow">
            <summary>
            The total number of Tasks that were timed out of their Workflows
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceCumulativeStatisticsResource.Url">
            <summary>
            The absolute URL of the Workspace statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceRealTimeStatisticsOptions">
            <summary>
            FetchWorkspaceRealTimeStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceRealTimeStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceRealTimeStatisticsOptions.TaskChannel">
            <summary>
            Only calculate real-time statistics on this TaskChannel
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceRealTimeStatisticsOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchWorkspaceRealTimeStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceRealTimeStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceRealTimeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkspaceRealTimeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkspaceRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceRealTimeStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkspaceRealTimeStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkspaceRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace to fetch </param>
            <param name="taskChannel"> Only calculate real-time statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkspaceRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace to fetch </param>
            <param name="taskChannel"> Only calculate real-time statistics on this TaskChannel </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkspaceRealTimeStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkspaceRealTimeStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkspaceRealTimeStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.ActivityStatistics">
            <summary>
            The number of current Workers by Activity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.LongestTaskWaitingAge">
            <summary>
            The age of the longest waiting Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.LongestTaskWaitingSid">
            <summary>
            The SID of the longest waiting Task
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.TasksByPriority">
            <summary>
            The number of Tasks by priority
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.TasksByStatus">
            <summary>
            The number of Tasks by their current status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.TotalTasks">
            <summary>
            The total number of Tasks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.TotalWorkers">
            <summary>
            The total number of Workers in the Workspace
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceRealTimeStatisticsResource.Url">
            <summary>
            The absolute URL of the Workspace statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceStatisticsOptions">
            <summary>
            FetchWorkspaceStatisticsOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceStatisticsOptions.PathWorkspaceSid">
            <summary>
            The SID of the Workspace to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceStatisticsOptions.Minutes">
            <summary>
            Only calculate statistics since this many minutes in the past
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceStatisticsOptions.StartDate">
            <summary>
            Only calculate statistics from on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceStatisticsOptions.EndDate">
            <summary>
            Only calculate statistics from this date and time and earlier
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceStatisticsOptions.TaskChannel">
            <summary>
            Only calculate statistics on this TaskChannel.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceStatisticsOptions.SplitByWaitTime">
            <summary>
            A comma separated list of values that describes the thresholds to calculate statistics on
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceStatisticsOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchWorkspaceStatisticsOptions
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceStatisticsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceStatisticsResource.Fetch(Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkspaceStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkspaceStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceStatisticsResource.FetchAsync(Twilio.Rest.Taskrouter.V1.Workspace.FetchWorkspaceStatisticsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch WorkspaceStatistics parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkspaceStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceStatisticsResource.Fetch(System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace to fetch </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="endDate"> Only calculate statistics from this date and time and earlier </param>
            <param name="taskChannel"> Only calculate statistics on this TaskChannel.  </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of WorkspaceStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceStatisticsResource.FetchAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathWorkspaceSid"> The SID of the Workspace to fetch </param>
            <param name="minutes"> Only calculate statistics since this many minutes in the past </param>
            <param name="startDate"> Only calculate statistics from on or after this date </param>
            <param name="endDate"> Only calculate statistics from this date and time and earlier </param>
            <param name="taskChannel"> Only calculate statistics on this TaskChannel.  </param>
            <param name="splitByWaitTime"> A comma separated list of values that describes the thresholds to calculate
                                  statistics on </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of WorkspaceStatistics </returns>
        </member>
        <member name="M:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceStatisticsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a WorkspaceStatisticsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> WorkspaceStatisticsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceStatisticsResource.Realtime">
            <summary>
            n object that contains the real-time statistics for the Workspace
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceStatisticsResource.Cumulative">
            <summary>
            An object that contains the cumulative statistics for the Workspace
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceStatisticsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceStatisticsResource.WorkspaceSid">
            <summary>
            The SID of the Workspace
            </summary>
        </member>
        <member name="P:Twilio.Rest.Taskrouter.V1.Workspace.WorkspaceStatisticsResource.Url">
            <summary>
            The absolute URL of the Workspace statistics resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.FetchTrunkOptions">
            <summary>
            FetchTrunkOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.FetchTrunkOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.FetchTrunkOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchTrunkOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.FetchTrunkOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.DeleteTrunkOptions">
            <summary>
            DeleteTrunkOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.DeleteTrunkOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.DeleteTrunkOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteTrunkOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.DeleteTrunkOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.CreateTrunkOptions">
            <summary>
            CreateTrunkOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.CreateTrunkOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.CreateTrunkOptions.DomainName">
            <summary>
            The unique address you reserve on Twilio to which you route your SIP traffic
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.CreateTrunkOptions.DisasterRecoveryUrl">
            <summary>
            The HTTP URL that we should call if an error occurs while sending SIP traffic towards your configured Origination URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.CreateTrunkOptions.DisasterRecoveryMethod">
            <summary>
            The HTTP method we should use to call the disaster_recovery_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.CreateTrunkOptions.Recording">
            <summary>
            The recording settings for the trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.CreateTrunkOptions.Secure">
            <summary>
            Whether Secure Trunking is enabled for the trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.CreateTrunkOptions.CnamLookupEnabled">
            <summary>
            Whether Caller ID Name (CNAM) lookup should be enabled for the trunk
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.CreateTrunkOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.ReadTrunkOptions">
            <summary>
            ReadTrunkOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.ReadTrunkOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.UpdateTrunkOptions">
            <summary>
            UpdateTrunkOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.UpdateTrunkOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.UpdateTrunkOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.UpdateTrunkOptions.DomainName">
            <summary>
            The unique address you reserve on Twilio to which you route your SIP traffic
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.UpdateTrunkOptions.DisasterRecoveryUrl">
            <summary>
            The HTTP URL that we should call if an error occurs while sending SIP traffic towards your configured Origination URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.UpdateTrunkOptions.DisasterRecoveryMethod">
            <summary>
            The HTTP method we should use to call the disaster_recovery_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.UpdateTrunkOptions.Recording">
            <summary>
            The recording settings for the trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.UpdateTrunkOptions.Secure">
            <summary>
            Whether Secure Trunking is enabled for the trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.UpdateTrunkOptions.CnamLookupEnabled">
            <summary>
            Whether Caller ID Name (CNAM) lookup should be enabled for the trunk
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.UpdateTrunkOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateTrunkOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.UpdateTrunkOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.Fetch(Twilio.Rest.Trunking.V1.FetchTrunkOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Trunk parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.FetchAsync(Twilio.Rest.Trunking.V1.FetchTrunkOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Trunk parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.Delete(Twilio.Rest.Trunking.V1.DeleteTrunkOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Trunk parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.DeleteAsync(Twilio.Rest.Trunking.V1.DeleteTrunkOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete Trunk parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.Create(Twilio.Rest.Trunking.V1.CreateTrunkOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Trunk parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.CreateAsync(Twilio.Rest.Trunking.V1.CreateTrunkOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Trunk parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.Create(System.String,System.String,System.Uri,Twilio.Http.HttpMethod,Twilio.Rest.Trunking.V1.TrunkResource.RecordingSettingEnum,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="domainName"> The unique address you reserve on Twilio to which you route your SIP traffic </param>
            <param name="disasterRecoveryUrl"> The HTTP URL that we should call if an error occurs while sending SIP traffic
                                      towards your configured Origination URL </param>
            <param name="disasterRecoveryMethod"> The HTTP method we should use to call the disaster_recovery_url </param>
            <param name="recording"> The recording settings for the trunk </param>
            <param name="secure"> Whether Secure Trunking is enabled for the trunk </param>
            <param name="cnamLookupEnabled"> Whether Caller ID Name (CNAM) lookup should be enabled for the trunk </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.CreateAsync(System.String,System.String,System.Uri,Twilio.Http.HttpMethod,Twilio.Rest.Trunking.V1.TrunkResource.RecordingSettingEnum,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="domainName"> The unique address you reserve on Twilio to which you route your SIP traffic </param>
            <param name="disasterRecoveryUrl"> The HTTP URL that we should call if an error occurs while sending SIP traffic
                                      towards your configured Origination URL </param>
            <param name="disasterRecoveryMethod"> The HTTP method we should use to call the disaster_recovery_url </param>
            <param name="recording"> The recording settings for the trunk </param>
            <param name="secure"> Whether Secure Trunking is enabled for the trunk </param>
            <param name="cnamLookupEnabled"> Whether Caller ID Name (CNAM) lookup should be enabled for the trunk </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.Read(Twilio.Rest.Trunking.V1.ReadTrunkOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Trunk parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.ReadAsync(Twilio.Rest.Trunking.V1.ReadTrunkOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Trunk parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.NextPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.TrunkResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.TrunkResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.Update(Twilio.Rest.Trunking.V1.UpdateTrunkOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Trunk parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.UpdateAsync(Twilio.Rest.Trunking.V1.UpdateTrunkOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Trunk parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.Update(System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,Twilio.Rest.Trunking.V1.TrunkResource.RecordingSettingEnum,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="domainName"> The unique address you reserve on Twilio to which you route your SIP traffic </param>
            <param name="disasterRecoveryUrl"> The HTTP URL that we should call if an error occurs while sending SIP traffic
                                      towards your configured Origination URL </param>
            <param name="disasterRecoveryMethod"> The HTTP method we should use to call the disaster_recovery_url </param>
            <param name="recording"> The recording settings for the trunk </param>
            <param name="secure"> Whether Secure Trunking is enabled for the trunk </param>
            <param name="cnamLookupEnabled"> Whether Caller ID Name (CNAM) lookup should be enabled for the trunk </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.UpdateAsync(System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,Twilio.Rest.Trunking.V1.TrunkResource.RecordingSettingEnum,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="domainName"> The unique address you reserve on Twilio to which you route your SIP traffic </param>
            <param name="disasterRecoveryUrl"> The HTTP URL that we should call if an error occurs while sending SIP traffic
                                      towards your configured Origination URL </param>
            <param name="disasterRecoveryMethod"> The HTTP method we should use to call the disaster_recovery_url </param>
            <param name="recording"> The recording settings for the trunk </param>
            <param name="secure"> Whether Secure Trunking is enabled for the trunk </param>
            <param name="cnamLookupEnabled"> Whether Caller ID Name (CNAM) lookup should be enabled for the trunk </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Trunk </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.TrunkResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TrunkResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TrunkResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.DomainName">
            <summary>
            The unique address you reserve on Twilio to which you route your SIP traffic
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.DisasterRecoveryMethod">
            <summary>
            The HTTP method we use to call the disaster_recovery_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.DisasterRecoveryUrl">
            <summary>
            The HTTP URL that we call if an error occurs while sending SIP traffic towards your configured Origination URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.Secure">
            <summary>
            Whether Secure Trunking is enabled for the trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.Recording">
            <summary>
            The recording settings for the trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.CnamLookupEnabled">
            <summary>
            Whether Caller ID Name (CNAM) lookup is enabled for the trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.AuthType">
            <summary>
            The types of authentication mapped to the domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.AuthTypeSet">
            <summary>
            Reserved
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.TrunkResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.FetchCredentialListOptions">
            <summary>
            FetchCredentialListOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.FetchCredentialListOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to fetch the credential list
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.FetchCredentialListOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.FetchCredentialListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchCredentialListOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the credential list </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.FetchCredentialListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.DeleteCredentialListOptions">
            <summary>
            DeleteCredentialListOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.DeleteCredentialListOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to delete the credential list
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.DeleteCredentialListOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.DeleteCredentialListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteCredentialListOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the credential list </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.DeleteCredentialListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.CreateCredentialListOptions">
            <summary>
            CreateCredentialListOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateCredentialListOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk to associate the credential list with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateCredentialListOptions.CredentialListSid">
            <summary>
            The SID of the Credential List that you want to associate with the trunk
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CreateCredentialListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateCredentialListOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the credential list with </param>
            <param name="credentialListSid"> The SID of the Credential List that you want to associate with the trunk </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CreateCredentialListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.ReadCredentialListOptions">
            <summary>
            ReadCredentialListOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.ReadCredentialListOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to read the credential lists
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.ReadCredentialListOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadCredentialListOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the credential lists </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.ReadCredentialListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.Fetch(Twilio.Rest.Trunking.V1.Trunk.FetchCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.FetchAsync(Twilio.Rest.Trunking.V1.Trunk.FetchCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the credential list </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the credential list </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.Delete(Twilio.Rest.Trunking.V1.Trunk.DeleteCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.DeleteAsync(Twilio.Rest.Trunking.V1.Trunk.DeleteCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the credential list </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the credential list </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.Create(Twilio.Rest.Trunking.V1.Trunk.CreateCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.CreateAsync(Twilio.Rest.Trunking.V1.Trunk.CreateCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the credential list with </param>
            <param name="credentialListSid"> The SID of the Credential List that you want to associate with the trunk </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the credential list with </param>
            <param name="credentialListSid"> The SID of the Credential List that you want to associate with the trunk </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.Read(Twilio.Rest.Trunking.V1.Trunk.ReadCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.ReadAsync(Twilio.Rest.Trunking.V1.Trunk.ReadCredentialListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read CredentialList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the credential lists </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the credential lists </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CredentialList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.NextPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.Trunk.CredentialListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.Trunk.CredentialListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CredentialListResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CredentialListResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.TrunkSid">
            <summary>
            The SID of the Trunk the credential list in associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CredentialListResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.FetchIpAccessControlListOptions">
            <summary>
            FetchIpAccessControlListOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.FetchIpAccessControlListOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to fetch the IP Access Control List
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.FetchIpAccessControlListOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.FetchIpAccessControlListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchIpAccessControlListOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the IP Access Control List </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.FetchIpAccessControlListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.DeleteIpAccessControlListOptions">
            <summary>
            Remove an associated IP Access Control List from a Trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.DeleteIpAccessControlListOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to delete the IP Access Control List
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.DeleteIpAccessControlListOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.DeleteIpAccessControlListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteIpAccessControlListOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the IP Access Control List </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.DeleteIpAccessControlListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.CreateIpAccessControlListOptions">
            <summary>
            Associate an IP Access Control List with a Trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateIpAccessControlListOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk to associate the IP Access Control List with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateIpAccessControlListOptions.IpAccessControlListSid">
            <summary>
            The SID of the IP Access Control List that you want to associate with the trunk
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CreateIpAccessControlListOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateIpAccessControlListOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the IP Access Control List with </param>
            <param name="ipAccessControlListSid"> The SID of the IP Access Control List that you want to associate with the
                                         trunk </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CreateIpAccessControlListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.ReadIpAccessControlListOptions">
            <summary>
            List all IP Access Control Lists for a Trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.ReadIpAccessControlListOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to read the IP Access Control Lists
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.ReadIpAccessControlListOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadIpAccessControlListOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the IP Access Control Lists </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.ReadIpAccessControlListOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.Fetch(Twilio.Rest.Trunking.V1.Trunk.FetchIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.FetchAsync(Twilio.Rest.Trunking.V1.Trunk.FetchIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the IP Access Control List </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the IP Access Control List </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.Delete(Twilio.Rest.Trunking.V1.Trunk.DeleteIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an associated IP Access Control List from a Trunk
            </summary>
            <param name="options"> Delete IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.DeleteAsync(Twilio.Rest.Trunking.V1.Trunk.DeleteIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an associated IP Access Control List from a Trunk
            </summary>
            <param name="options"> Delete IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an associated IP Access Control List from a Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the IP Access Control List </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Remove an associated IP Access Control List from a Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the IP Access Control List </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.Create(Twilio.Rest.Trunking.V1.Trunk.CreateIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Associate an IP Access Control List with a Trunk
            </summary>
            <param name="options"> Create IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.CreateAsync(Twilio.Rest.Trunking.V1.Trunk.CreateIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Associate an IP Access Control List with a Trunk
            </summary>
            <param name="options"> Create IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Associate an IP Access Control List with a Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the IP Access Control List with </param>
            <param name="ipAccessControlListSid"> The SID of the IP Access Control List that you want to associate with the
                                         trunk </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Associate an IP Access Control List with a Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the IP Access Control List with </param>
            <param name="ipAccessControlListSid"> The SID of the IP Access Control List that you want to associate with the
                                         trunk </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.Read(Twilio.Rest.Trunking.V1.Trunk.ReadIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all IP Access Control Lists for a Trunk
            </summary>
            <param name="options"> Read IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.ReadAsync(Twilio.Rest.Trunking.V1.Trunk.ReadIpAccessControlListOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all IP Access Control Lists for a Trunk
            </summary>
            <param name="options"> Read IpAccessControlList parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all IP Access Control Lists for a Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the IP Access Control Lists </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List all IP Access Control Lists for a Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the IP Access Control Lists </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of IpAccessControlList </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.NextPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a IpAccessControlListResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> IpAccessControlListResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.TrunkSid">
            <summary>
            The SID of the Trunk the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.IpAccessControlListResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.FetchOriginationUrlOptions">
            <summary>
            FetchOriginationUrlOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.FetchOriginationUrlOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to fetch the OriginationUrl
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.FetchOriginationUrlOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.FetchOriginationUrlOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchOriginationUrlOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the OriginationUrl </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.FetchOriginationUrlOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.DeleteOriginationUrlOptions">
            <summary>
            DeleteOriginationUrlOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.DeleteOriginationUrlOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to delete the OriginationUrl
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.DeleteOriginationUrlOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.DeleteOriginationUrlOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteOriginationUrlOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the OriginationUrl </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.DeleteOriginationUrlOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.CreateOriginationUrlOptions">
            <summary>
            CreateOriginationUrlOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateOriginationUrlOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk to associate the resource with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateOriginationUrlOptions.Weight">
            <summary>
            The value that determines the relative load the URI should receive compared to others with the same priority
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateOriginationUrlOptions.Priority">
            <summary>
            The relative importance of the URI
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateOriginationUrlOptions.Enabled">
            <summary>
            Whether the URL is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateOriginationUrlOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateOriginationUrlOptions.SipUrl">
            <summary>
            The SIP address you want Twilio to route your Origination calls to
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CreateOriginationUrlOptions.#ctor(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Uri)">
            <summary>
            Construct a new CreateOriginationUrlOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the resource with </param>
            <param name="weight"> The value that determines the relative load the URI should receive compared to others with
                         the same priority </param>
            <param name="priority"> The relative importance of the URI </param>
            <param name="enabled"> Whether the URL is enabled </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="sipUrl"> The SIP address you want Twilio to route your Origination calls to </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CreateOriginationUrlOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.ReadOriginationUrlOptions">
            <summary>
            ReadOriginationUrlOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.ReadOriginationUrlOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to read the OriginationUrl
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.ReadOriginationUrlOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadOriginationUrlOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the OriginationUrl </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.ReadOriginationUrlOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions">
            <summary>
            UpdateOriginationUrlOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to update the OriginationUrl
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions.Weight">
            <summary>
            The value that determines the relative load the URI should receive compared to others with the same priority
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions.Priority">
            <summary>
            The relative importance of the URI
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions.Enabled">
            <summary>
            Whether the URL is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions.SipUrl">
            <summary>
            The SIP address you want Twilio to route your Origination calls to
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateOriginationUrlOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to update the OriginationUrl </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Fetch(Twilio.Rest.Trunking.V1.Trunk.FetchOriginationUrlOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch OriginationUrl parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.FetchAsync(Twilio.Rest.Trunking.V1.Trunk.FetchOriginationUrlOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch OriginationUrl parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the OriginationUrl </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the OriginationUrl </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Delete(Twilio.Rest.Trunking.V1.Trunk.DeleteOriginationUrlOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete OriginationUrl parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.DeleteAsync(Twilio.Rest.Trunking.V1.Trunk.DeleteOriginationUrlOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete OriginationUrl parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the OriginationUrl </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the OriginationUrl </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Create(Twilio.Rest.Trunking.V1.Trunk.CreateOriginationUrlOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create OriginationUrl parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.CreateAsync(Twilio.Rest.Trunking.V1.Trunk.CreateOriginationUrlOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create OriginationUrl parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Create(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the resource with </param>
            <param name="weight"> The value that determines the relative load the URI should receive compared to others with
                         the same priority </param>
            <param name="priority"> The relative importance of the URI </param>
            <param name="enabled"> Whether the URL is enabled </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="sipUrl"> The SIP address you want Twilio to route your Origination calls to </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.CreateAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the resource with </param>
            <param name="weight"> The value that determines the relative load the URI should receive compared to others with
                         the same priority </param>
            <param name="priority"> The relative importance of the URI </param>
            <param name="enabled"> Whether the URL is enabled </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="sipUrl"> The SIP address you want Twilio to route your Origination calls to </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Read(Twilio.Rest.Trunking.V1.Trunk.ReadOriginationUrlOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read OriginationUrl parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.ReadAsync(Twilio.Rest.Trunking.V1.Trunk.ReadOriginationUrlOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read OriginationUrl parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the OriginationUrl </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the OriginationUrl </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.NextPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Update(Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update OriginationUrl parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.UpdateAsync(Twilio.Rest.Trunking.V1.Trunk.UpdateOriginationUrlOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update OriginationUrl parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Update(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to update the OriginationUrl </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="weight"> The value that determines the relative load the URI should receive compared to others with
                         the same priority </param>
            <param name="priority"> The relative importance of the URI </param>
            <param name="enabled"> Whether the URL is enabled </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="sipUrl"> The SIP address you want Twilio to route your Origination calls to </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.UpdateAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Uri,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to update the OriginationUrl </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="weight"> The value that determines the relative load the URI should receive compared to others with
                         the same priority </param>
            <param name="priority"> The relative importance of the URI </param>
            <param name="enabled"> Whether the URL is enabled </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="sipUrl"> The SIP address you want Twilio to route your Origination calls to </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of OriginationUrl </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a OriginationUrlResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> OriginationUrlResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.TrunkSid">
            <summary>
            The SID of the Trunk that owns the Origination URL
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Weight">
            <summary>
            The value that determines the relative load the URI should receive compared to others with the same priority
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Enabled">
            <summary>
            Whether the URL is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.SipUrl">
            <summary>
            The SIP address you want Twilio to route your Origination calls to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Priority">
            <summary>
            The relative importance of the URI
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.OriginationUrlResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.FetchPhoneNumberOptions">
            <summary>
            FetchPhoneNumberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.FetchPhoneNumberOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to fetch the PhoneNumber resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.FetchPhoneNumberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.FetchPhoneNumberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchPhoneNumberOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the PhoneNumber resource </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.FetchPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.DeletePhoneNumberOptions">
            <summary>
            DeletePhoneNumberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.DeletePhoneNumberOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to delete the PhoneNumber resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.DeletePhoneNumberOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.DeletePhoneNumberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeletePhoneNumberOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the PhoneNumber resource </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.DeletePhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.CreatePhoneNumberOptions">
            <summary>
            CreatePhoneNumberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreatePhoneNumberOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk to associate the phone number with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreatePhoneNumberOptions.PhoneNumberSid">
            <summary>
            The SID of the Incoming Phone Number that you want to associate with the trunk
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CreatePhoneNumberOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreatePhoneNumberOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the phone number with </param>
            <param name="phoneNumberSid"> The SID of the Incoming Phone Number that you want to associate with the trunk
                                 </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CreatePhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.ReadPhoneNumberOptions">
            <summary>
            ReadPhoneNumberOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.ReadPhoneNumberOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk from which to read the PhoneNumber resources
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.ReadPhoneNumberOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadPhoneNumberOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the PhoneNumber resources </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.ReadPhoneNumberOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Fetch(Twilio.Rest.Trunking.V1.Trunk.FetchPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.FetchAsync(Twilio.Rest.Trunking.V1.Trunk.FetchPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the PhoneNumber resource </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to fetch the PhoneNumber resource </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Delete(Twilio.Rest.Trunking.V1.Trunk.DeletePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.DeleteAsync(Twilio.Rest.Trunking.V1.Trunk.DeletePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the PhoneNumber resource </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to delete the PhoneNumber resource </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Create(Twilio.Rest.Trunking.V1.Trunk.CreatePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.CreateAsync(Twilio.Rest.Trunking.V1.Trunk.CreatePhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the phone number with </param>
            <param name="phoneNumberSid"> The SID of the Incoming Phone Number that you want to associate with the trunk
                                 </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to associate the phone number with </param>
            <param name="phoneNumberSid"> The SID of the Incoming Phone Number that you want to associate with the trunk
                                 </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Read(Twilio.Rest.Trunking.V1.Trunk.ReadPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.ReadAsync(Twilio.Rest.Trunking.V1.Trunk.ReadPhoneNumberOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read PhoneNumber parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the PhoneNumber resources </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk from which to read the PhoneNumber resources </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PhoneNumber </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.NextPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a PhoneNumberResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> PhoneNumberResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.AddressRequirements">
            <summary>
            Whether the phone number requires an Address registered with Twilio
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.ApiVersion">
            <summary>
            The API version used to start a new TwiML session
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Beta">
            <summary>
            Whether the phone number is new to the Twilio platform
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Capabilities">
            <summary>
            Indicate if a phone can receive calls or messages
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.PhoneNumber">
            <summary>
            The phone number in E.164 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.SmsApplicationSid">
            <summary>
            The SID of the application that handles SMS messages sent to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.SmsFallbackMethod">
            <summary>
            The HTTP method used with sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.SmsFallbackUrl">
            <summary>
            The URL that we call when an error occurs while retrieving or executing the TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.SmsMethod">
            <summary>
            The HTTP method to use with sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.SmsUrl">
            <summary>
            The URL we call when the phone number receives an incoming SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.StatusCallbackMethod">
            <summary>
            The HTTP method we use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.TrunkSid">
            <summary>
            The SID of the Trunk that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.VoiceApplicationSid">
            <summary>
            The SID of the application that handles calls to the phone number
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.VoiceCallerIdLookup">
            <summary>
            Whether to lookup the caller's name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.VoiceFallbackMethod">
            <summary>
            The HTTP method that we use to call voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.VoiceFallbackUrl">
            <summary>
            The URL we call when an error occurs in TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.VoiceMethod">
            <summary>
            The HTTP method used with the voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.PhoneNumberResource.VoiceUrl">
            <summary>
            The URL we call when the phone number receives a call
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.FetchTerminatingSipDomainOptions">
            <summary>
            Fetch the details of an associated SIP Domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.FetchTerminatingSipDomainOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk with the resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.FetchTerminatingSipDomainOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.FetchTerminatingSipDomainOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchTerminatingSipDomainOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk with the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.FetchTerminatingSipDomainOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.DeleteTerminatingSipDomainOptions">
            <summary>
            Disassociate a SIP Domain from the Trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.DeleteTerminatingSipDomainOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk with the resources to disassociate
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.DeleteTerminatingSipDomainOptions.PathSid">
            <summary>
            The unique string that identifies the resource to disassociate
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.DeleteTerminatingSipDomainOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteTerminatingSipDomainOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk with the resources to disassociate </param>
            <param name="pathSid"> The unique string that identifies the resource to disassociate </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.DeleteTerminatingSipDomainOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.CreateTerminatingSipDomainOptions">
            <summary>
            Associate a SIP Domain with the Trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateTerminatingSipDomainOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk to which we should route calls
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.CreateTerminatingSipDomainOptions.SipDomainSid">
            <summary>
            The SID of the SIP Domain to associate with the trunk
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CreateTerminatingSipDomainOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateTerminatingSipDomainOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to which we should route calls </param>
            <param name="sipDomainSid"> The SID of the SIP Domain to associate with the trunk </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.CreateTerminatingSipDomainOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Trunking.V1.Trunk.ReadTerminatingSipDomainOptions">
            <summary>
            List SIP Domains associated with the Trunk
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.ReadTerminatingSipDomainOptions.PathTrunkSid">
            <summary>
            The SID of the Trunk with the resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.ReadTerminatingSipDomainOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadTerminatingSipDomainOptions
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk with the resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.ReadTerminatingSipDomainOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.Fetch(Twilio.Rest.Trunking.V1.Trunk.FetchTerminatingSipDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the details of an associated SIP Domain
            </summary>
            <param name="options"> Fetch TerminatingSipDomain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.FetchAsync(Twilio.Rest.Trunking.V1.Trunk.FetchTerminatingSipDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the details of an associated SIP Domain
            </summary>
            <param name="options"> Fetch TerminatingSipDomain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the details of an associated SIP Domain
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk with the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the details of an associated SIP Domain
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk with the resource to fetch </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.Delete(Twilio.Rest.Trunking.V1.Trunk.DeleteTerminatingSipDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Disassociate a SIP Domain from the Trunk
            </summary>
            <param name="options"> Delete TerminatingSipDomain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.DeleteAsync(Twilio.Rest.Trunking.V1.Trunk.DeleteTerminatingSipDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Disassociate a SIP Domain from the Trunk
            </summary>
            <param name="options"> Delete TerminatingSipDomain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Disassociate a SIP Domain from the Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk with the resources to disassociate </param>
            <param name="pathSid"> The unique string that identifies the resource to disassociate </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Disassociate a SIP Domain from the Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk with the resources to disassociate </param>
            <param name="pathSid"> The unique string that identifies the resource to disassociate </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.Create(Twilio.Rest.Trunking.V1.Trunk.CreateTerminatingSipDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Associate a SIP Domain with the Trunk
            </summary>
            <param name="options"> Create TerminatingSipDomain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.CreateAsync(Twilio.Rest.Trunking.V1.Trunk.CreateTerminatingSipDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Associate a SIP Domain with the Trunk
            </summary>
            <param name="options"> Create TerminatingSipDomain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.Create(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Associate a SIP Domain with the Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to which we should route calls </param>
            <param name="sipDomainSid"> The SID of the SIP Domain to associate with the trunk </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.CreateAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Associate a SIP Domain with the Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk to which we should route calls </param>
            <param name="sipDomainSid"> The SID of the SIP Domain to associate with the trunk </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.Read(Twilio.Rest.Trunking.V1.Trunk.ReadTerminatingSipDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List SIP Domains associated with the Trunk
            </summary>
            <param name="options"> Read TerminatingSipDomain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.ReadAsync(Twilio.Rest.Trunking.V1.Trunk.ReadTerminatingSipDomainOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List SIP Domains associated with the Trunk
            </summary>
            <param name="options"> Read TerminatingSipDomain parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List SIP Domains associated with the Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk with the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List SIP Domains associated with the Trunk
            </summary>
            <param name="pathTrunkSid"> The SID of the Trunk with the resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of TerminatingSipDomain </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.NextPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a TerminatingSipDomainResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> TerminatingSipDomainResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.ApiVersion">
            <summary>
            The API version used to process the call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.AuthType">
            <summary>
            The types of authentication mapped to the domain
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.DomainName">
            <summary>
            The unique address you reserve on Twilio to which you route your SIP traffic
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.VoiceFallbackMethod">
            <summary>
            The HTTP method used with voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.VoiceFallbackUrl">
            <summary>
            The URL that we call when an error occurs in executing TwiML
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.VoiceMethod">
            <summary>
            The HTTP method used with voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.VoiceStatusCallbackMethod">
            <summary>
            The HTTP method that we use to call the voice_status_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.VoiceStatusCallbackUrl">
            <summary>
            The URL that we call to pass status parameters to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.VoiceUrl">
            <summary>
            The URL we call when the domain receives a call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.SipRegistration">
            <summary>
            Whether SIP Endpoints can register with the domain to receive calls
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.TrunkSid">
            <summary>
            The SID of the Trunk to which we should route calls
            </summary>
        </member>
        <member name="P:Twilio.Rest.Trunking.V1.Trunk.TerminatingSipDomainResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.CreateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Create a new Verification Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.CreateServiceOptions.FriendlyName">
            <summary>
            A string to describe the verification service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.CreateServiceOptions.CodeLength">
            <summary>
            The length of the verification code to generate
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.CreateServiceOptions.LookupEnabled">
            <summary>
            Whether to perform a lookup with each verification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.CreateServiceOptions.SkipSmsToLandlines">
            <summary>
            Whether to skip sending SMS verifications to landlines
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.CreateServiceOptions.DtmfInputRequired">
            <summary>
            Whether to ask the user to press a number before delivering the verify code in a phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.CreateServiceOptions.TtsName">
            <summary>
            The name of an alternative text-to-speech service to use in phone calls
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.CreateServiceOptions.Psd2Enabled">
            <summary>
            Whether to pass PSD2 transaction parameters when starting a verification
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.CreateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateServiceOptions
            </summary>
            <param name="friendlyName"> A string to describe the verification service </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.CreateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.FetchServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch specific Verification Service Instance.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.FetchServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.FetchServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.FetchServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.DeleteServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Verification Service Instance.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.DeleteServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.DeleteServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.DeleteServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.ReadServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Phone Verification Services for an account.
             </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ReadServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.UpdateServiceOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update a specific Phone Verification Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.UpdateServiceOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.UpdateServiceOptions.FriendlyName">
            <summary>
            A string to describe the verification service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.UpdateServiceOptions.CodeLength">
            <summary>
            The length of the verification code to generate
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.UpdateServiceOptions.LookupEnabled">
            <summary>
            Whether to perform a lookup with each verification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.UpdateServiceOptions.SkipSmsToLandlines">
            <summary>
            Whether to skip sending SMS verifications to landlines
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.UpdateServiceOptions.DtmfInputRequired">
            <summary>
            Whether to ask the user to press a number before delivering the verify code in a phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.UpdateServiceOptions.TtsName">
            <summary>
            The name of an alternative text-to-speech service to use in phone calls
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.UpdateServiceOptions.Psd2Enabled">
            <summary>
            Whether to pass PSD2 transaction parameters when starting a verification
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.UpdateServiceOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateServiceOptions
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.UpdateServiceOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.Create(Twilio.Rest.Verify.V2.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification Service.
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.CreateAsync(Twilio.Rest.Verify.V2.CreateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification Service.
            </summary>
            <param name="options"> Create Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.Create(System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification Service.
            </summary>
            <param name="friendlyName"> A string to describe the verification service </param>
            <param name="codeLength"> The length of the verification code to generate </param>
            <param name="lookupEnabled"> Whether to perform a lookup with each verification </param>
            <param name="skipSmsToLandlines"> Whether to skip sending SMS verifications to landlines </param>
            <param name="dtmfInputRequired"> Whether to ask the user to press a number before delivering the verify code in a
                                    phone call </param>
            <param name="ttsName"> The name of an alternative text-to-speech service to use in phone calls </param>
            <param name="psd2Enabled"> Whether to pass PSD2 transaction parameters when starting a verification </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.CreateAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification Service.
            </summary>
            <param name="friendlyName"> A string to describe the verification service </param>
            <param name="codeLength"> The length of the verification code to generate </param>
            <param name="lookupEnabled"> Whether to perform a lookup with each verification </param>
            <param name="skipSmsToLandlines"> Whether to skip sending SMS verifications to landlines </param>
            <param name="dtmfInputRequired"> Whether to ask the user to press a number before delivering the verify code in a
                                    phone call </param>
            <param name="ttsName"> The name of an alternative text-to-speech service to use in phone calls </param>
            <param name="psd2Enabled"> Whether to pass PSD2 transaction parameters when starting a verification </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.Fetch(Twilio.Rest.Verify.V2.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch specific Verification Service Instance.
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.FetchAsync(Twilio.Rest.Verify.V2.FetchServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch specific Verification Service Instance.
            </summary>
            <param name="options"> Fetch Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch specific Verification Service Instance.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch specific Verification Service Instance.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.Delete(Twilio.Rest.Verify.V2.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Verification Service Instance.
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.DeleteAsync(Twilio.Rest.Verify.V2.DeleteServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Verification Service Instance.
            </summary>
            <param name="options"> Delete Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Verification Service Instance.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Verification Service Instance.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.Read(Twilio.Rest.Verify.V2.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Verification Services for an account.
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.ReadAsync(Twilio.Rest.Verify.V2.ReadServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Verification Services for an account.
            </summary>
            <param name="options"> Read Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Verification Services for an account.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Phone Verification Services for an account.
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.NextPage(Twilio.Base.Page{Twilio.Rest.Verify.V2.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Verify.V2.ServiceResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.Update(Twilio.Rest.Verify.V2.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Phone Verification Service.
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.UpdateAsync(Twilio.Rest.Verify.V2.UpdateServiceOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Phone Verification Service.
            </summary>
            <param name="options"> Update Service parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.Update(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Phone Verification Service.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the verification service </param>
            <param name="codeLength"> The length of the verification code to generate </param>
            <param name="lookupEnabled"> Whether to perform a lookup with each verification </param>
            <param name="skipSmsToLandlines"> Whether to skip sending SMS verifications to landlines </param>
            <param name="dtmfInputRequired"> Whether to ask the user to press a number before delivering the verify code in a
                                    phone call </param>
            <param name="ttsName"> The name of an alternative text-to-speech service to use in phone calls </param>
            <param name="psd2Enabled"> Whether to pass PSD2 transaction parameters when starting a verification </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.UpdateAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Phone Verification Service.
            </summary>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="friendlyName"> A string to describe the verification service </param>
            <param name="codeLength"> The length of the verification code to generate </param>
            <param name="lookupEnabled"> Whether to perform a lookup with each verification </param>
            <param name="skipSmsToLandlines"> Whether to skip sending SMS verifications to landlines </param>
            <param name="dtmfInputRequired"> Whether to ask the user to press a number before delivering the verify code in a
                                    phone call </param>
            <param name="ttsName"> The name of an alternative text-to-speech service to use in phone calls </param>
            <param name="psd2Enabled"> Whether to pass PSD2 transaction parameters when starting a verification </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Service </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.ServiceResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ServiceResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ServiceResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.FriendlyName">
            <summary>
            The string that you assigned to describe the verification service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.CodeLength">
            <summary>
            The length of the verification code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.LookupEnabled">
            <summary>
            Whether to perform a lookup with each verification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.Psd2Enabled">
            <summary>
            Whether to pass PSD2 transaction parameters when starting a verification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.SkipSmsToLandlines">
            <summary>
            Whether to skip sending SMS verifications to landlines
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.DtmfInputRequired">
            <summary>
            Whether to ask the user to press a number before delivering the verify code in a phone call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.TtsName">
            <summary>
            The name of an alternative text-to-speech service to use in phone calls
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.ServiceResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.CreateMessagingConfigurationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Create a new MessagingConfiguration for a service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateMessagingConfigurationOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateMessagingConfigurationOptions.Country">
            <summary>
            The ISO-3166-1 country code of the country or `all`.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateMessagingConfigurationOptions.MessagingServiceSid">
            <summary>
            The SID of the Messaging Service used for this configuration.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.CreateMessagingConfigurationOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateMessagingConfigurationOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="country"> The ISO-3166-1 country code of the country or `all`. </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service used for this configuration. </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.CreateMessagingConfigurationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.UpdateMessagingConfigurationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update a specific MessagingConfiguration
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.UpdateMessagingConfigurationOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.UpdateMessagingConfigurationOptions.PathCountry">
            <summary>
            The ISO-3166-1 country code of the country or `all`.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.UpdateMessagingConfigurationOptions.MessagingServiceSid">
            <summary>
            The SID of the Messaging Service used for this configuration.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.UpdateMessagingConfigurationOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateMessagingConfigurationOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathCountry"> The ISO-3166-1 country code of the country or `all`. </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service used for this configuration. </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.UpdateMessagingConfigurationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.FetchMessagingConfigurationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific MessagingConfiguration.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.FetchMessagingConfigurationOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.FetchMessagingConfigurationOptions.PathCountry">
            <summary>
            The ISO-3166-1 country code of the country or `all`.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.FetchMessagingConfigurationOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchMessagingConfigurationOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathCountry"> The ISO-3166-1 country code of the country or `all`. </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.FetchMessagingConfigurationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.ReadMessagingConfigurationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Messaging Configurations for a Service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.ReadMessagingConfigurationOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.ReadMessagingConfigurationOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadMessagingConfigurationOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.ReadMessagingConfigurationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.DeleteMessagingConfigurationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific MessagingConfiguration.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.DeleteMessagingConfigurationOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.DeleteMessagingConfigurationOptions.PathCountry">
            <summary>
            The ISO-3166-1 country code of the country or `all`.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.DeleteMessagingConfigurationOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteMessagingConfigurationOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathCountry"> The ISO-3166-1 country code of the country or `all`. </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.DeleteMessagingConfigurationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Create(Twilio.Rest.Verify.V2.Service.CreateMessagingConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new MessagingConfiguration for a service.
            </summary>
            <param name="options"> Create MessagingConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.CreateAsync(Twilio.Rest.Verify.V2.Service.CreateMessagingConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new MessagingConfiguration for a service.
            </summary>
            <param name="options"> Create MessagingConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new MessagingConfiguration for a service.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="country"> The ISO-3166-1 country code of the country or `all`. </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service used for this configuration. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new MessagingConfiguration for a service.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="country"> The ISO-3166-1 country code of the country or `all`. </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service used for this configuration. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Update(Twilio.Rest.Verify.V2.Service.UpdateMessagingConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific MessagingConfiguration
            </summary>
            <param name="options"> Update MessagingConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.UpdateAsync(Twilio.Rest.Verify.V2.Service.UpdateMessagingConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific MessagingConfiguration
            </summary>
            <param name="options"> Update MessagingConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific MessagingConfiguration
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathCountry"> The ISO-3166-1 country code of the country or `all`. </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service used for this configuration. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific MessagingConfiguration
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathCountry"> The ISO-3166-1 country code of the country or `all`. </param>
            <param name="messagingServiceSid"> The SID of the Messaging Service used for this configuration. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Fetch(Twilio.Rest.Verify.V2.Service.FetchMessagingConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific MessagingConfiguration.
            </summary>
            <param name="options"> Fetch MessagingConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.FetchAsync(Twilio.Rest.Verify.V2.Service.FetchMessagingConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific MessagingConfiguration.
            </summary>
            <param name="options"> Fetch MessagingConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific MessagingConfiguration.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathCountry"> The ISO-3166-1 country code of the country or `all`. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific MessagingConfiguration.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathCountry"> The ISO-3166-1 country code of the country or `all`. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Read(Twilio.Rest.Verify.V2.Service.ReadMessagingConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Messaging Configurations for a Service.
            </summary>
            <param name="options"> Read MessagingConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.ReadAsync(Twilio.Rest.Verify.V2.Service.ReadMessagingConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Messaging Configurations for a Service.
            </summary>
            <param name="options"> Read MessagingConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Messaging Configurations for a Service.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Messaging Configurations for a Service.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.NextPage(Twilio.Base.Page{Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Delete(Twilio.Rest.Verify.V2.Service.DeleteMessagingConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific MessagingConfiguration.
            </summary>
            <param name="options"> Delete MessagingConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.DeleteAsync(Twilio.Rest.Verify.V2.Service.DeleteMessagingConfigurationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific MessagingConfiguration.
            </summary>
            <param name="options"> Delete MessagingConfiguration parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific MessagingConfiguration.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathCountry"> The ISO-3166-1 country code of the country or `all`. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific MessagingConfiguration.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathCountry"> The ISO-3166-1 country code of the country or `all`. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of MessagingConfiguration </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a MessagingConfigurationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> MessagingConfigurationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Country">
            <summary>
            The ISO-3166-1 country code of the country or `all`.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.MessagingServiceSid">
            <summary>
            The SID of the Messaging Service used for this configuration.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.MessagingConfigurationResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.CreateRateLimitOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Create a new Rate Limit for a Service
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateRateLimitOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateRateLimitOptions.UniqueName">
            <summary>
            A unique, developer assigned name of this Rate Limit.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateRateLimitOptions.Description">
            <summary>
            Description of this Rate Limit
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.CreateRateLimitOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateRateLimitOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="uniqueName"> A unique, developer assigned name of this Rate Limit. </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.CreateRateLimitOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.UpdateRateLimitOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update a specific Rate Limit.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.UpdateRateLimitOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.UpdateRateLimitOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.UpdateRateLimitOptions.Description">
            <summary>
            Description of this Rate Limit
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.UpdateRateLimitOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateRateLimitOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.UpdateRateLimitOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.FetchRateLimitOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Rate Limit.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.FetchRateLimitOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.FetchRateLimitOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.FetchRateLimitOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchRateLimitOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.FetchRateLimitOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.ReadRateLimitOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Rate Limits for a service.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.ReadRateLimitOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.ReadRateLimitOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadRateLimitOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.ReadRateLimitOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.DeleteRateLimitOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Rate Limit.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.DeleteRateLimitOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.DeleteRateLimitOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.DeleteRateLimitOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteRateLimitOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.DeleteRateLimitOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.Create(Twilio.Rest.Verify.V2.Service.CreateRateLimitOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Rate Limit for a Service
            </summary>
            <param name="options"> Create RateLimit parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.CreateAsync(Twilio.Rest.Verify.V2.Service.CreateRateLimitOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Rate Limit for a Service
            </summary>
            <param name="options"> Create RateLimit parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.Create(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Rate Limit for a Service
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="uniqueName"> A unique, developer assigned name of this Rate Limit. </param>
            <param name="description"> Description of this Rate Limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.CreateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Rate Limit for a Service
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="uniqueName"> A unique, developer assigned name of this Rate Limit. </param>
            <param name="description"> Description of this Rate Limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.Update(Twilio.Rest.Verify.V2.Service.UpdateRateLimitOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Rate Limit.
            </summary>
            <param name="options"> Update RateLimit parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.UpdateAsync(Twilio.Rest.Verify.V2.Service.UpdateRateLimitOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Rate Limit.
            </summary>
            <param name="options"> Update RateLimit parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Rate Limit.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="description"> Description of this Rate Limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Rate Limit.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="description"> Description of this Rate Limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.Fetch(Twilio.Rest.Verify.V2.Service.FetchRateLimitOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Rate Limit.
            </summary>
            <param name="options"> Fetch RateLimit parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.FetchAsync(Twilio.Rest.Verify.V2.Service.FetchRateLimitOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Rate Limit.
            </summary>
            <param name="options"> Fetch RateLimit parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Rate Limit.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Rate Limit.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.Read(Twilio.Rest.Verify.V2.Service.ReadRateLimitOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Rate Limits for a service.
            </summary>
            <param name="options"> Read RateLimit parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.ReadAsync(Twilio.Rest.Verify.V2.Service.ReadRateLimitOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Rate Limits for a service.
            </summary>
            <param name="options"> Read RateLimit parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Rate Limits for a service.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Rate Limits for a service.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.NextPage(Twilio.Base.Page{Twilio.Rest.Verify.V2.Service.RateLimitResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Verify.V2.Service.RateLimitResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.Delete(Twilio.Rest.Verify.V2.Service.DeleteRateLimitOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Rate Limit.
            </summary>
            <param name="options"> Delete RateLimit parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.DeleteAsync(Twilio.Rest.Verify.V2.Service.DeleteRateLimitOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Rate Limit.
            </summary>
            <param name="options"> Delete RateLimit parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Rate Limit.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Rate Limit.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RateLimit </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimitResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RateLimitResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RateLimitResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimitResource.Sid">
            <summary>
            A string that uniquely identifies this Rate Limit.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimitResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimitResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimitResource.UniqueName">
            <summary>
            A unique, developer assigned name of this Rate Limit.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimitResource.Description">
            <summary>
            Description of this Rate Limit
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimitResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimitResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimitResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimitResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.RateLimit.CreateBucketOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Create a new Bucket for a Rate Limit
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.CreateBucketOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.CreateBucketOptions.PathRateLimitSid">
            <summary>
            Rate Limit Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.CreateBucketOptions.Max">
            <summary>
            Max number of requests.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.CreateBucketOptions.Interval">
            <summary>
            Number of seconds that the rate limit will be enforced over.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.CreateBucketOptions.#ctor(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Construct a new CreateBucketOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="max"> Max number of requests. </param>
            <param name="interval"> Number of seconds that the rate limit will be enforced over. </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.CreateBucketOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.RateLimit.UpdateBucketOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update a specific Bucket.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.UpdateBucketOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.UpdateBucketOptions.PathRateLimitSid">
            <summary>
            Rate Limit Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.UpdateBucketOptions.PathSid">
            <summary>
            A string that uniquely identifies this Bucket.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.UpdateBucketOptions.Max">
            <summary>
            Max number of requests.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.UpdateBucketOptions.Interval">
            <summary>
            Number of seconds that the rate limit will be enforced over.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.UpdateBucketOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new UpdateBucketOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Bucket. </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.UpdateBucketOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.RateLimit.FetchBucketOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Bucket.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.FetchBucketOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.FetchBucketOptions.PathRateLimitSid">
            <summary>
            Rate Limit Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.FetchBucketOptions.PathSid">
            <summary>
            A string that uniquely identifies this Bucket.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.FetchBucketOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchBucketOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Bucket. </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.FetchBucketOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.RateLimit.ReadBucketOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Retrieve a list of all Buckets for a Rate Limit.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.ReadBucketOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.ReadBucketOptions.PathRateLimitSid">
            <summary>
            Rate Limit Sid.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.ReadBucketOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadBucketOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.ReadBucketOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.RateLimit.DeleteBucketOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Delete a specific Bucket.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.DeleteBucketOptions.PathServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.DeleteBucketOptions.PathRateLimitSid">
            <summary>
            Rate Limit Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.DeleteBucketOptions.PathSid">
            <summary>
            A string that uniquely identifies this Bucket.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.DeleteBucketOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new DeleteBucketOptions
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Bucket. </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.DeleteBucketOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Create(Twilio.Rest.Verify.V2.Service.RateLimit.CreateBucketOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Bucket for a Rate Limit
            </summary>
            <param name="options"> Create Bucket parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.CreateAsync(Twilio.Rest.Verify.V2.Service.RateLimit.CreateBucketOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Bucket for a Rate Limit
            </summary>
            <param name="options"> Create Bucket parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Create(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Bucket for a Rate Limit
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="max"> Max number of requests. </param>
            <param name="interval"> Number of seconds that the rate limit will be enforced over. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.CreateAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Bucket for a Rate Limit
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="max"> Max number of requests. </param>
            <param name="interval"> Number of seconds that the rate limit will be enforced over. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Update(Twilio.Rest.Verify.V2.Service.RateLimit.UpdateBucketOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Bucket.
            </summary>
            <param name="options"> Update Bucket parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.UpdateAsync(Twilio.Rest.Verify.V2.Service.RateLimit.UpdateBucketOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Bucket.
            </summary>
            <param name="options"> Update Bucket parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Update(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Bucket.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Bucket. </param>
            <param name="max"> Max number of requests. </param>
            <param name="interval"> Number of seconds that the rate limit will be enforced over. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.UpdateAsync(System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a specific Bucket.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Bucket. </param>
            <param name="max"> Max number of requests. </param>
            <param name="interval"> Number of seconds that the rate limit will be enforced over. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Fetch(Twilio.Rest.Verify.V2.Service.RateLimit.FetchBucketOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Bucket.
            </summary>
            <param name="options"> Fetch Bucket parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.FetchAsync(Twilio.Rest.Verify.V2.Service.RateLimit.FetchBucketOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Bucket.
            </summary>
            <param name="options"> Fetch Bucket parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Bucket.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Bucket. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Bucket.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Bucket. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Read(Twilio.Rest.Verify.V2.Service.RateLimit.ReadBucketOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Buckets for a Rate Limit.
            </summary>
            <param name="options"> Read Bucket parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.ReadAsync(Twilio.Rest.Verify.V2.Service.RateLimit.ReadBucketOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Buckets for a Rate Limit.
            </summary>
            <param name="options"> Read Bucket parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Buckets for a Rate Limit.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of all Buckets for a Rate Limit.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.NextPage(Twilio.Base.Page{Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Delete(Twilio.Rest.Verify.V2.Service.RateLimit.DeleteBucketOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Bucket.
            </summary>
            <param name="options"> Delete Bucket parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.DeleteAsync(Twilio.Rest.Verify.V2.Service.RateLimit.DeleteBucketOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Bucket.
            </summary>
            <param name="options"> Delete Bucket parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Delete(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Bucket.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Bucket. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.DeleteAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a specific Bucket.
            </summary>
            <param name="pathServiceSid"> The SID of the Service that the resource is associated with </param>
            <param name="pathRateLimitSid"> Rate Limit Sid. </param>
            <param name="pathSid"> A string that uniquely identifies this Bucket. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Bucket </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a BucketResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> BucketResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Sid">
            <summary>
            A string that uniquely identifies this Bucket.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.RateLimitSid">
            <summary>
            Rate Limit Sid.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Max">
            <summary>
            Max number of requests.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Interval">
            <summary>
            Number of seconds that the rate limit will be enforced over.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.RateLimit.BucketResource.Url">
            <summary>
            The URL of this resource.
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.CreateVerificationCheckOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             challenge a specific Verification Check.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationCheckOptions.PathServiceSid">
            <summary>
            The SID of the verification Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationCheckOptions.Code">
            <summary>
            The verification string
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationCheckOptions.To">
            <summary>
            The phone number to verify
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationCheckOptions.VerificationSid">
            <summary>
            A SID that uniquely identifies the Verification Check
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationCheckOptions.Amount">
            <summary>
            The amount of the associated PSD2 compliant transaction.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationCheckOptions.Payee">
            <summary>
            The payee of the associated PSD2 compliant transaction
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.CreateVerificationCheckOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new CreateVerificationCheckOptions
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to create the resource under </param>
            <param name="code"> The verification string </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.CreateVerificationCheckOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.Create(Twilio.Rest.Verify.V2.Service.CreateVerificationCheckOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            challenge a specific Verification Check.
            </summary>
            <param name="options"> Create VerificationCheck parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of VerificationCheck </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.CreateAsync(Twilio.Rest.Verify.V2.Service.CreateVerificationCheckOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            challenge a specific Verification Check.
            </summary>
            <param name="options"> Create VerificationCheck parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of VerificationCheck </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.Create(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            challenge a specific Verification Check.
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to create the resource under </param>
            <param name="code"> The verification string </param>
            <param name="to"> The phone number to verify </param>
            <param name="verificationSid"> A SID that uniquely identifies the Verification Check </param>
            <param name="amount"> The amount of the associated PSD2 compliant transaction. </param>
            <param name="payee"> The payee of the associated PSD2 compliant transaction </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of VerificationCheck </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            challenge a specific Verification Check.
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to create the resource under </param>
            <param name="code"> The verification string </param>
            <param name="to"> The phone number to verify </param>
            <param name="verificationSid"> A SID that uniquely identifies the Verification Check </param>
            <param name="amount"> The amount of the associated PSD2 compliant transaction. </param>
            <param name="payee"> The payee of the associated PSD2 compliant transaction </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of VerificationCheck </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a VerificationCheckResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> VerificationCheckResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.To">
            <summary>
            The phone number being verified
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.Channel">
            <summary>
            The verification method to use
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.Status">
            <summary>
            The status of the verification resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.Valid">
            <summary>
            Whether the verification was successful
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.Amount">
            <summary>
            The amount of the associated PSD2 compliant transaction.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.Payee">
            <summary>
            The payee of the associated PSD2 compliant transaction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the Verification Check resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationCheckResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the Verification Check resource was last updated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Create a new Verification for a To number using a Service
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.PathServiceSid">
            <summary>
            The SID of the verification Service to create the resource under
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.To">
            <summary>
            The phone number to verify
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.Channel">
            <summary>
            The verification method to use
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.CustomMessage">
            <summary>
            The text of a custom message to use for the verification
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.SendDigits">
            <summary>
            The digits to send after a phone call is answered
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.Locale">
            <summary>
            The locale to use for the verification SMS or call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.CustomCode">
            <summary>
            A pre-generated code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.Amount">
            <summary>
            The amount of the associated PSD2 compliant transaction.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.Payee">
            <summary>
            The payee of the associated PSD2 compliant transaction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.RateLimits">
            <summary>
            The custom key-value pairs of Programmable Rate Limits.
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new CreateVerificationOptions
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to create the resource under </param>
            <param name="to"> The phone number to verify </param>
            <param name="channel"> The verification method to use </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.CreateVerificationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.UpdateVerificationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update a Verification status
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.UpdateVerificationOptions.PathServiceSid">
            <summary>
            The SID of the verification Service to update the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.UpdateVerificationOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.UpdateVerificationOptions.Status">
            <summary>
            The new status of the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.UpdateVerificationOptions.#ctor(System.String,System.String,Twilio.Rest.Verify.V2.Service.VerificationResource.StatusEnum)">
            <summary>
            Construct a new UpdateVerificationOptions
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="status"> The new status of the resource </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.UpdateVerificationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Verify.V2.Service.FetchVerificationOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Fetch a specific Verification
             </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.FetchVerificationOptions.PathServiceSid">
            <summary>
            The SID of the verification Service to fetch the resource from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.FetchVerificationOptions.PathSid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.FetchVerificationOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchVerificationOptions
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.FetchVerificationOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.Create(Twilio.Rest.Verify.V2.Service.CreateVerificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification for a To number using a Service
            </summary>
            <param name="options"> Create Verification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.CreateAsync(Twilio.Rest.Verify.V2.Service.CreateVerificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification for a To number using a Service
            </summary>
            <param name="options"> Create Verification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.Create(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification for a To number using a Service
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to create the resource under </param>
            <param name="to"> The phone number to verify </param>
            <param name="channel"> The verification method to use </param>
            <param name="customMessage"> The text of a custom message to use for the verification </param>
            <param name="sendDigits"> The digits to send after a phone call is answered </param>
            <param name="locale"> The locale to use for the verification SMS or call </param>
            <param name="customCode"> A pre-generated code </param>
            <param name="amount"> The amount of the associated PSD2 compliant transaction. </param>
            <param name="payee"> The payee of the associated PSD2 compliant transaction </param>
            <param name="rateLimits"> The custom key-value pairs of Programmable Rate Limits. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.CreateAsync(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a new Verification for a To number using a Service
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to create the resource under </param>
            <param name="to"> The phone number to verify </param>
            <param name="channel"> The verification method to use </param>
            <param name="customMessage"> The text of a custom message to use for the verification </param>
            <param name="sendDigits"> The digits to send after a phone call is answered </param>
            <param name="locale"> The locale to use for the verification SMS or call </param>
            <param name="customCode"> A pre-generated code </param>
            <param name="amount"> The amount of the associated PSD2 compliant transaction. </param>
            <param name="payee"> The payee of the associated PSD2 compliant transaction </param>
            <param name="rateLimits"> The custom key-value pairs of Programmable Rate Limits. </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.Update(Twilio.Rest.Verify.V2.Service.UpdateVerificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Verification status
            </summary>
            <param name="options"> Update Verification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.UpdateAsync(Twilio.Rest.Verify.V2.Service.UpdateVerificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Verification status
            </summary>
            <param name="options"> Update Verification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.Update(System.String,System.String,Twilio.Rest.Verify.V2.Service.VerificationResource.StatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Verification status
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.UpdateAsync(System.String,System.String,Twilio.Rest.Verify.V2.Service.VerificationResource.StatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update a Verification status
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to update the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.Fetch(Twilio.Rest.Verify.V2.Service.FetchVerificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Verification
            </summary>
            <param name="options"> Fetch Verification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.FetchAsync(Twilio.Rest.Verify.V2.Service.FetchVerificationOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Verification
            </summary>
            <param name="options"> Fetch Verification parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Verification
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a specific Verification
            </summary>
            <param name="pathServiceSid"> The SID of the verification Service to fetch the resource from </param>
            <param name="pathSid"> The unique string that identifies the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Verification </returns>
        </member>
        <member name="M:Twilio.Rest.Verify.V2.Service.VerificationResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a VerificationResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> VerificationResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.ServiceSid">
            <summary>
            The SID of the Service that the resource is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.To">
            <summary>
            The phone number being verified
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.Channel">
            <summary>
            The verification method to use
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.Status">
            <summary>
            The status of the verification resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.Valid">
            <summary>
            Whether the verification was successful
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.Lookup">
            <summary>
            Information about the phone number being verified
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.Amount">
            <summary>
            The amount of the associated PSD2 compliant transaction.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.Payee">
            <summary>
            The payee of the associated PSD2 compliant transaction
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.DateCreated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.DateUpdated">
            <summary>
            The RFC 2822 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Verify.V2.Service.VerificationResource.Url">
            <summary>
            The absolute URL of the Verification resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.FetchCompositionHookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Returns a single CompositionHook resource identified by a CompositionHook SID.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.FetchCompositionHookOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.FetchCompositionHookOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCompositionHookOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.FetchCompositionHookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.ReadCompositionHookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             List of all Recording CompositionHook resources.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadCompositionHookOptions.Enabled">
            <summary>
            Read only CompositionHook resources with an enabled value that matches this parameter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadCompositionHookOptions.DateCreatedAfter">
            <summary>
            Read only CompositionHook resources created on or after this ISO 8601 datetime with time zone
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadCompositionHookOptions.DateCreatedBefore">
            <summary>
            Read only CompositionHook resources created before this ISO 8601 datetime with time zone
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadCompositionHookOptions.FriendlyName">
            <summary>
            Read only CompositionHook resources with friendly names that match this string
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.ReadCompositionHookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.DeleteCompositionHookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a Recording CompositionHook resource identified by a `CompositionHook SID`.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.DeleteCompositionHookOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.DeleteCompositionHookOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteCompositionHookOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.DeleteCompositionHookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.CreateCompositionHookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateCompositionHookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionHookOptions.FriendlyName">
            <summary>
            A unique string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionHookOptions.Enabled">
            <summary>
            Whether the composition hook is active
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionHookOptions.VideoLayout">
            <summary>
            An object that describes the video layout of the composition hook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionHookOptions.AudioSources">
            <summary>
            An array of track names from the same group room to merge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionHookOptions.AudioSourcesExcluded">
            <summary>
            An array of track names to exclude
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionHookOptions.Resolution">
            <summary>
            A string that describes the rows (width) and columns (height) of the generated composed video in pixels
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionHookOptions.Format">
            <summary>
            The container format of the media files used by the compositions created by the composition hook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionHookOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionHookOptions.StatusCallbackMethod">
            <summary>
            The HTTP method we should use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionHookOptions.Trim">
            <summary>
            Whether to clip the intervals where there is no active media in the Compositions triggered by the composition hook
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CreateCompositionHookOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateCompositionHookOptions
            </summary>
            <param name="friendlyName"> A unique string to describe the resource </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CreateCompositionHookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.UpdateCompositionHookOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             UpdateCompositionHookOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.FriendlyName">
            <summary>
            A unique string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.Enabled">
            <summary>
            Whether the composition hook is active
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.VideoLayout">
            <summary>
            A JSON object that describes the video layout of the composition hook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.AudioSources">
            <summary>
            An array of track names from the same group room to merge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.AudioSourcesExcluded">
            <summary>
            An array of track names to exclude
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.Trim">
            <summary>
            Whether to clip the intervals where there is no active media in the Compositions triggered by the composition hook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.Format">
            <summary>
            The container format of the media files used by the compositions created by the composition hook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.Resolution">
            <summary>
            A string that describes the columns (width) and rows (height) of the generated composed video in pixels
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.StatusCallbackMethod">
            <summary>
            The HTTP method we should use to call status_callback
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateCompositionHookOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="friendlyName"> A unique string to describe the resource </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.UpdateCompositionHookOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.Fetch(Twilio.Rest.Video.V1.FetchCompositionHookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single CompositionHook resource identified by a CompositionHook SID.
            </summary>
            <param name="options"> Fetch CompositionHook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.FetchAsync(Twilio.Rest.Video.V1.FetchCompositionHookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single CompositionHook resource identified by a CompositionHook SID.
            </summary>
            <param name="options"> Fetch CompositionHook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single CompositionHook resource identified by a CompositionHook SID.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single CompositionHook resource identified by a CompositionHook SID.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.Read(Twilio.Rest.Video.V1.ReadCompositionHookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Recording CompositionHook resources.
            </summary>
            <param name="options"> Read CompositionHook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.ReadAsync(Twilio.Rest.Video.V1.ReadCompositionHookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Recording CompositionHook resources.
            </summary>
            <param name="options"> Read CompositionHook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.Read(System.Nullable{System.Boolean},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Recording CompositionHook resources.
            </summary>
            <param name="enabled"> Read only CompositionHook resources with an enabled value that matches this parameter
                          </param>
            <param name="dateCreatedAfter"> Read only CompositionHook resources created on or after this ISO 8601 datetime with
                                   time zone </param>
            <param name="dateCreatedBefore"> Read only CompositionHook resources created before this ISO 8601 datetime with
                                    time zone </param>
            <param name="friendlyName"> Read only CompositionHook resources with friendly names that match this string </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.ReadAsync(System.Nullable{System.Boolean},System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Recording CompositionHook resources.
            </summary>
            <param name="enabled"> Read only CompositionHook resources with an enabled value that matches this parameter
                          </param>
            <param name="dateCreatedAfter"> Read only CompositionHook resources created on or after this ISO 8601 datetime with
                                   time zone </param>
            <param name="dateCreatedBefore"> Read only CompositionHook resources created before this ISO 8601 datetime with
                                    time zone </param>
            <param name="friendlyName"> Read only CompositionHook resources with friendly names that match this string </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.NextPage(Twilio.Base.Page{Twilio.Rest.Video.V1.CompositionHookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Video.V1.CompositionHookResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.Delete(Twilio.Rest.Video.V1.DeleteCompositionHookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording CompositionHook resource identified by a `CompositionHook SID`.
            </summary>
            <param name="options"> Delete CompositionHook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.DeleteAsync(Twilio.Rest.Video.V1.DeleteCompositionHookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording CompositionHook resource identified by a `CompositionHook SID`.
            </summary>
            <param name="options"> Delete CompositionHook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording CompositionHook resource identified by a `CompositionHook SID`.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording CompositionHook resource identified by a `CompositionHook SID`.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.Create(Twilio.Rest.Video.V1.CreateCompositionHookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create CompositionHook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.CreateAsync(Twilio.Rest.Video.V1.CreateCompositionHookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create CompositionHook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.Create(System.String,System.Nullable{System.Boolean},System.Object,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,Twilio.Rest.Video.V1.CompositionHookResource.FormatEnum,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A unique string to describe the resource </param>
            <param name="enabled"> Whether the composition hook is active </param>
            <param name="videoLayout"> An object that describes the video layout of the composition hook </param>
            <param name="audioSources"> An array of track names from the same group room to merge </param>
            <param name="audioSourcesExcluded"> An array of track names to exclude </param>
            <param name="resolution"> A string that describes the rows (width) and columns (height) of the generated composed
                             video in pixels </param>
            <param name="format"> The container format of the media files used by the compositions created by the composition
                         hook </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="trim"> Whether to clip the intervals where there is no active media in the Compositions triggered by
                       the composition hook </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.CreateAsync(System.String,System.Nullable{System.Boolean},System.Object,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,Twilio.Rest.Video.V1.CompositionHookResource.FormatEnum,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A unique string to describe the resource </param>
            <param name="enabled"> Whether the composition hook is active </param>
            <param name="videoLayout"> An object that describes the video layout of the composition hook </param>
            <param name="audioSources"> An array of track names from the same group room to merge </param>
            <param name="audioSourcesExcluded"> An array of track names to exclude </param>
            <param name="resolution"> A string that describes the rows (width) and columns (height) of the generated composed
                             video in pixels </param>
            <param name="format"> The container format of the media files used by the compositions created by the composition
                         hook </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="trim"> Whether to clip the intervals where there is no active media in the Compositions triggered by
                       the composition hook </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.Update(Twilio.Rest.Video.V1.UpdateCompositionHookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update CompositionHook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.UpdateAsync(Twilio.Rest.Video.V1.UpdateCompositionHookOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update CompositionHook parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.Update(System.String,System.String,System.Nullable{System.Boolean},System.Object,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.Nullable{System.Boolean},Twilio.Rest.Video.V1.CompositionHookResource.FormatEnum,System.String,System.Uri,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="friendlyName"> A unique string to describe the resource </param>
            <param name="enabled"> Whether the composition hook is active </param>
            <param name="videoLayout"> A JSON object that describes the video layout of the composition hook </param>
            <param name="audioSources"> An array of track names from the same group room to merge </param>
            <param name="audioSourcesExcluded"> An array of track names to exclude </param>
            <param name="trim"> Whether to clip the intervals where there is no active media in the Compositions triggered by
                       the composition hook </param>
            <param name="format"> The container format of the media files used by the compositions created by the composition
                         hook </param>
            <param name="resolution"> A string that describes the columns (width) and rows (height) of the generated composed
                             video in pixels </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.UpdateAsync(System.String,System.String,System.Nullable{System.Boolean},System.Object,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.Nullable{System.Boolean},Twilio.Rest.Video.V1.CompositionHookResource.FormatEnum,System.String,System.Uri,Twilio.Http.HttpMethod,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="friendlyName"> A unique string to describe the resource </param>
            <param name="enabled"> Whether the composition hook is active </param>
            <param name="videoLayout"> A JSON object that describes the video layout of the composition hook </param>
            <param name="audioSources"> An array of track names from the same group room to merge </param>
            <param name="audioSourcesExcluded"> An array of track names to exclude </param>
            <param name="trim"> Whether to clip the intervals where there is no active media in the Compositions triggered by
                       the composition hook </param>
            <param name="format"> The container format of the media files used by the compositions created by the composition
                         hook </param>
            <param name="resolution"> A string that describes the columns (width) and rows (height) of the generated composed
                             video in pixels </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionHook </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionHookResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CompositionHookResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CompositionHookResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.Enabled">
            <summary>
            Whether the CompositionHook is active
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.AudioSources">
            <summary>
            The array of track names to include in the compositions created by the composition hook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.AudioSourcesExcluded">
            <summary>
            The array of track names to exclude from the compositions created by the composition hook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.VideoLayout">
            <summary>
            A JSON object that describes the video layout of the Composition
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.Resolution">
            <summary>
            The dimensions of the video image in pixels expressed as columns (width) and rows (height)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.Trim">
            <summary>
            Whether intervals with no media are clipped
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.Format">
            <summary>
            The container format of the media files used by the compositions created by the composition hook
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.StatusCallbackMethod">
            <summary>
            The HTTP method we should use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionHookResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.FetchCompositionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Returns a single Composition resource identified by a Composition SID.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.FetchCompositionOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.FetchCompositionOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCompositionOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.FetchCompositionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.ReadCompositionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             List of all Recording compositions.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadCompositionOptions.Status">
            <summary>
            Read only Composition resources with this status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadCompositionOptions.DateCreatedAfter">
            <summary>
            Read only Composition resources created on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadCompositionOptions.DateCreatedBefore">
            <summary>
            Read only Composition resources created before this ISO 8601 date-time with time zone
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadCompositionOptions.RoomSid">
            <summary>
            Read only Composition resources with this Room SID
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.ReadCompositionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.DeleteCompositionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Delete a Recording Composition resource identified by a Composition SID.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.DeleteCompositionOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.DeleteCompositionOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteCompositionOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.DeleteCompositionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.CreateCompositionOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateCompositionOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionOptions.RoomSid">
            <summary>
            The SID of the Group Room with the media tracks to be used as composition sources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionOptions.VideoLayout">
            <summary>
            An object that describes the video layout of the composition
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionOptions.AudioSources">
            <summary>
            An array of track names from the same group room to merge
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionOptions.AudioSourcesExcluded">
            <summary>
            An array of track names to exclude
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionOptions.Resolution">
            <summary>
            A string that describes the columns (width) and rows (height) of the generated composed video in pixels
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionOptions.Format">
            <summary>
            The container format of the composition's media files
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionOptions.StatusCallback">
            <summary>
            The URL we should call to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionOptions.StatusCallbackMethod">
            <summary>
            The HTTP method we should use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionOptions.Trim">
            <summary>
            Whether to clip the intervals where there is no active media in the composition
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CreateCompositionOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateCompositionOptions
            </summary>
            <param name="roomSid"> The SID of the Group Room with the media tracks to be used as composition sources </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CreateCompositionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.Fetch(Twilio.Rest.Video.V1.FetchCompositionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Composition resource identified by a Composition SID.
            </summary>
            <param name="options"> Fetch Composition parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.FetchAsync(Twilio.Rest.Video.V1.FetchCompositionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Composition resource identified by a Composition SID.
            </summary>
            <param name="options"> Fetch Composition parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Composition resource identified by a Composition SID.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Composition resource identified by a Composition SID.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.Read(Twilio.Rest.Video.V1.ReadCompositionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Recording compositions.
            </summary>
            <param name="options"> Read Composition parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.ReadAsync(Twilio.Rest.Video.V1.ReadCompositionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Recording compositions.
            </summary>
            <param name="options"> Read Composition parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.Read(Twilio.Rest.Video.V1.CompositionResource.StatusEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Recording compositions.
            </summary>
            <param name="status"> Read only Composition resources with this status </param>
            <param name="dateCreatedAfter"> Read only Composition resources created on or after this [ISO
                                   8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone </param>
            <param name="dateCreatedBefore"> Read only Composition resources created before this ISO 8601 date-time with time
                                    zone </param>
            <param name="roomSid"> Read only Composition resources with this Room SID </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.ReadAsync(Twilio.Rest.Video.V1.CompositionResource.StatusEnum,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Recording compositions.
            </summary>
            <param name="status"> Read only Composition resources with this status </param>
            <param name="dateCreatedAfter"> Read only Composition resources created on or after this [ISO
                                   8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone </param>
            <param name="dateCreatedBefore"> Read only Composition resources created before this ISO 8601 date-time with time
                                    zone </param>
            <param name="roomSid"> Read only Composition resources with this Room SID </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Video.V1.CompositionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Video.V1.CompositionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.Delete(Twilio.Rest.Video.V1.DeleteCompositionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording Composition resource identified by a Composition SID.
            </summary>
            <param name="options"> Delete Composition parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.DeleteAsync(Twilio.Rest.Video.V1.DeleteCompositionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording Composition resource identified by a Composition SID.
            </summary>
            <param name="options"> Delete Composition parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording Composition resource identified by a Composition SID.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording Composition resource identified by a Composition SID.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.Create(Twilio.Rest.Video.V1.CreateCompositionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Composition parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.CreateAsync(Twilio.Rest.Video.V1.CreateCompositionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Composition parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.Create(System.String,System.Object,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,Twilio.Rest.Video.V1.CompositionResource.FormatEnum,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="roomSid"> The SID of the Group Room with the media tracks to be used as composition sources </param>
            <param name="videoLayout"> An object that describes the video layout of the composition </param>
            <param name="audioSources"> An array of track names from the same group room to merge </param>
            <param name="audioSourcesExcluded"> An array of track names to exclude </param>
            <param name="resolution"> A string that describes the columns (width) and rows (height) of the generated composed
                             video in pixels </param>
            <param name="format"> The container format of the composition's media files </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="trim"> Whether to clip the intervals where there is no active media in the composition </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.CreateAsync(System.String,System.Object,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,Twilio.Rest.Video.V1.CompositionResource.FormatEnum,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="roomSid"> The SID of the Group Room with the media tracks to be used as composition sources </param>
            <param name="videoLayout"> An object that describes the video layout of the composition </param>
            <param name="audioSources"> An array of track names from the same group room to merge </param>
            <param name="audioSourcesExcluded"> An array of track names to exclude </param>
            <param name="resolution"> A string that describes the columns (width) and rows (height) of the generated composed
                             video in pixels </param>
            <param name="format"> The container format of the composition's media files </param>
            <param name="statusCallback"> The URL we should call to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="trim"> Whether to clip the intervals where there is no active media in the composition </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Composition </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CompositionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CompositionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.Status">
            <summary>
            The status of the composition
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.DateCompleted">
            <summary>
            Date when the media processing task finished
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.DateDeleted">
            <summary>
            The ISO 8601 date and time in GMT when the composition generated media was deleted
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.RoomSid">
            <summary>
            The SID of the Group Room that generated the audio and video tracks used in the composition
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.AudioSources">
            <summary>
            The array of track names to include in the composition
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.AudioSourcesExcluded">
            <summary>
            The array of track names to exclude from the composition
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.VideoLayout">
            <summary>
            An object that describes the video layout of the composition
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.Resolution">
            <summary>
            The dimensions of the video image in pixels expressed as columns (width) and rows (height)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.Trim">
            <summary>
            Whether to remove intervals with no media
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.Format">
            <summary>
            The container format of the composition's media files as specified in the POST request that created the Composition resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.Bitrate">
            <summary>
            The average bit rate of the composition's media
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.Size">
            <summary>
            The size of the composed media file in bytes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.Duration">
            <summary>
            The duration of the composition's media file in seconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionResource.Links">
            <summary>
            The URL of the media file associated with the composition
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.FetchCompositionSettingsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchCompositionSettingsOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.FetchCompositionSettingsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.CreateCompositionSettingsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateCompositionSettingsOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionSettingsOptions.FriendlyName">
            <summary>
            A descriptive string that you create to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionSettingsOptions.AwsCredentialsSid">
            <summary>
            The SID of the stored Credential resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionSettingsOptions.EncryptionKeySid">
            <summary>
            The SID of the Public Key resource to use for encryption
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionSettingsOptions.AwsS3Url">
            <summary>
            The URL of the AWS S3 bucket where the compositions should be stored
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionSettingsOptions.AwsStorageEnabled">
            <summary>
            Whether all compositions should be written to the aws_s3_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateCompositionSettingsOptions.EncryptionEnabled">
            <summary>
            Whether all compositions should be stored in an encrypted form
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CreateCompositionSettingsOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateCompositionSettingsOptions
            </summary>
            <param name="friendlyName"> A descriptive string that you create to describe the resource </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CreateCompositionSettingsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionSettingsResource.Fetch(Twilio.Rest.Video.V1.FetchCompositionSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch CompositionSettings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionSettingsResource.FetchAsync(Twilio.Rest.Video.V1.FetchCompositionSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch CompositionSettings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionSettingsResource.Fetch(Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionSettingsResource.FetchAsync(Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionSettingsResource.Create(Twilio.Rest.Video.V1.CreateCompositionSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create CompositionSettings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionSettingsResource.CreateAsync(Twilio.Rest.Video.V1.CreateCompositionSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create CompositionSettings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionSettingsResource.Create(System.String,System.String,System.String,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A descriptive string that you create to describe the resource </param>
            <param name="awsCredentialsSid"> The SID of the stored Credential resource </param>
            <param name="encryptionKeySid"> The SID of the Public Key resource to use for encryption </param>
            <param name="awsS3Url"> The URL of the AWS S3 bucket where the compositions should be stored </param>
            <param name="awsStorageEnabled"> Whether all compositions should be written to the aws_s3_url </param>
            <param name="encryptionEnabled"> Whether all compositions should be stored in an encrypted form </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of CompositionSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionSettingsResource.CreateAsync(System.String,System.String,System.String,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A descriptive string that you create to describe the resource </param>
            <param name="awsCredentialsSid"> The SID of the stored Credential resource </param>
            <param name="encryptionKeySid"> The SID of the Public Key resource to use for encryption </param>
            <param name="awsS3Url"> The URL of the AWS S3 bucket where the compositions should be stored </param>
            <param name="awsStorageEnabled"> Whether all compositions should be written to the aws_s3_url </param>
            <param name="encryptionEnabled"> Whether all compositions should be stored in an encrypted form </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of CompositionSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CompositionSettingsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CompositionSettingsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CompositionSettingsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionSettingsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionSettingsResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionSettingsResource.AwsCredentialsSid">
            <summary>
            The SID of the stored Credential resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionSettingsResource.AwsS3Url">
            <summary>
            The URL of the AWS S3 bucket where the compositions are stored
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionSettingsResource.AwsStorageEnabled">
            <summary>
            Whether all compositions are written to the aws_s3_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionSettingsResource.EncryptionKeySid">
            <summary>
            The SID of the Public Key resource used for encryption
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionSettingsResource.EncryptionEnabled">
            <summary>
            Whether all compositions are stored in an encrypted form
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CompositionSettingsResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.FetchRecordingOptions">
            <summary>
            Returns a single Recording resource identified by a Recording SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.FetchRecordingOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.FetchRecordingOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchRecordingOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.FetchRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.ReadRecordingOptions">
            <summary>
            List of all Track recordings.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadRecordingOptions.Status">
            <summary>
            Read only the recordings that have this status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadRecordingOptions.SourceSid">
            <summary>
            Read only the recordings that have this source_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadRecordingOptions.GroupingSid">
            <summary>
            Read only recordings that have this grouping_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadRecordingOptions.DateCreatedAfter">
            <summary>
            Read only recordings that started on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadRecordingOptions.DateCreatedBefore">
            <summary>
            Read only recordings that started before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadRecordingOptions.MediaType">
            <summary>
            Read only recordings that have this media type
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.ReadRecordingOptions.#ctor">
            <summary>
            Construct a new ReadRecordingOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.ReadRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.DeleteRecordingOptions">
            <summary>
            Delete a Recording resource identified by a Recording SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.DeleteRecordingOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.DeleteRecordingOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteRecordingOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.DeleteRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.Fetch(Twilio.Rest.Video.V1.FetchRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Recording resource identified by a Recording SID.
            </summary>
            <param name="options"> Fetch Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.FetchAsync(Twilio.Rest.Video.V1.FetchRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Recording resource identified by a Recording SID.
            </summary>
            <param name="options"> Fetch Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Recording resource identified by a Recording SID.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Recording resource identified by a Recording SID.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.Read(Twilio.Rest.Video.V1.ReadRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Track recordings.
            </summary>
            <param name="options"> Read Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.ReadAsync(Twilio.Rest.Video.V1.ReadRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Track recordings.
            </summary>
            <param name="options"> Read Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.Read(Twilio.Rest.Video.V1.RecordingResource.StatusEnum,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.DateTime},System.Nullable{System.DateTime},Twilio.Rest.Video.V1.RecordingResource.TypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Track recordings.
            </summary>
            <param name="status"> Read only the recordings that have this status </param>
            <param name="sourceSid"> Read only the recordings that have this source_sid </param>
            <param name="groupingSid"> Read only recordings that have this grouping_sid </param>
            <param name="dateCreatedAfter"> Read only recordings that started on or after this [ISO
                                   8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone </param>
            <param name="dateCreatedBefore"> Read only recordings that started before this [ISO
                                    8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone </param>
            <param name="mediaType"> Read only recordings that have this media type </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.ReadAsync(Twilio.Rest.Video.V1.RecordingResource.StatusEnum,System.String,System.Collections.Generic.List{System.String},System.Nullable{System.DateTime},System.Nullable{System.DateTime},Twilio.Rest.Video.V1.RecordingResource.TypeEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            List of all Track recordings.
            </summary>
            <param name="status"> Read only the recordings that have this status </param>
            <param name="sourceSid"> Read only the recordings that have this source_sid </param>
            <param name="groupingSid"> Read only recordings that have this grouping_sid </param>
            <param name="dateCreatedAfter"> Read only recordings that started on or after this [ISO
                                   8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone </param>
            <param name="dateCreatedBefore"> Read only recordings that started before this [ISO
                                    8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone </param>
            <param name="mediaType"> Read only recordings that have this media type </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Video.V1.RecordingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Video.V1.RecordingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.Delete(Twilio.Rest.Video.V1.DeleteRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording resource identified by a Recording SID.
            </summary>
            <param name="options"> Delete Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.DeleteAsync(Twilio.Rest.Video.V1.DeleteRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording resource identified by a Recording SID.
            </summary>
            <param name="options"> Delete Recording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording resource identified by a Recording SID.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Recording resource identified by a Recording SID.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Recording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RecordingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RecordingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.Status">
            <summary>
            The status of the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.SourceSid">
            <summary>
            The SID of the recording source
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.Size">
            <summary>
            The size of the recorded track, in bytes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.Type">
            <summary>
            The recording's media type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.Duration">
            <summary>
            The duration of the recording in seconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.ContainerFormat">
            <summary>
            The file format for the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.Codec">
            <summary>
            The codec used to encode the track
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.GroupingSids">
            <summary>
            A list of SIDs related to the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.TrackName">
            <summary>
            The name that was given to the source track of the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.Offset">
            <summary>
            The number of milliseconds between a point in time that is common to all rooms in a group and when the source room of the recording started
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.FetchRecordingSettingsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             FetchRecordingSettingsOptions
             </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.FetchRecordingSettingsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.CreateRecordingSettingsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             CreateRecordingSettingsOptions
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRecordingSettingsOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRecordingSettingsOptions.AwsCredentialsSid">
            <summary>
            The SID of the stored Credential resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRecordingSettingsOptions.EncryptionKeySid">
            <summary>
            The SID of the Public Key resource to use for encryption
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRecordingSettingsOptions.AwsS3Url">
            <summary>
            The URL of the AWS S3 bucket where the recordings should be stored
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRecordingSettingsOptions.AwsStorageEnabled">
            <summary>
            Whether all recordings should be written to the aws_s3_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRecordingSettingsOptions.EncryptionEnabled">
            <summary>
            Whether all recordings should be stored in an encrypted form
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CreateRecordingSettingsOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateRecordingSettingsOptions
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CreateRecordingSettingsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingSettingsResource.Fetch(Twilio.Rest.Video.V1.FetchRecordingSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch RecordingSettings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RecordingSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingSettingsResource.FetchAsync(Twilio.Rest.Video.V1.FetchRecordingSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch RecordingSettings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RecordingSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingSettingsResource.Fetch(Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RecordingSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingSettingsResource.FetchAsync(Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RecordingSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingSettingsResource.Create(Twilio.Rest.Video.V1.CreateRecordingSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create RecordingSettings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RecordingSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingSettingsResource.CreateAsync(Twilio.Rest.Video.V1.CreateRecordingSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create RecordingSettings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RecordingSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingSettingsResource.Create(System.String,System.String,System.String,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="awsCredentialsSid"> The SID of the stored Credential resource </param>
            <param name="encryptionKeySid"> The SID of the Public Key resource to use for encryption </param>
            <param name="awsS3Url"> The URL of the AWS S3 bucket where the recordings should be stored </param>
            <param name="awsStorageEnabled"> Whether all recordings should be written to the aws_s3_url </param>
            <param name="encryptionEnabled"> Whether all recordings should be stored in an encrypted form </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RecordingSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingSettingsResource.CreateAsync(System.String,System.String,System.String,System.Uri,System.Nullable{System.Boolean},System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="awsCredentialsSid"> The SID of the stored Credential resource </param>
            <param name="encryptionKeySid"> The SID of the Public Key resource to use for encryption </param>
            <param name="awsS3Url"> The URL of the AWS S3 bucket where the recordings should be stored </param>
            <param name="awsStorageEnabled"> Whether all recordings should be written to the aws_s3_url </param>
            <param name="encryptionEnabled"> Whether all recordings should be stored in an encrypted form </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RecordingSettings </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RecordingSettingsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RecordingSettingsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RecordingSettingsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingSettingsResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingSettingsResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingSettingsResource.AwsCredentialsSid">
            <summary>
            The SID of the stored Credential resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingSettingsResource.AwsS3Url">
            <summary>
            The URL of the AWS S3 bucket where the recordings are stored
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingSettingsResource.AwsStorageEnabled">
            <summary>
            Whether all recordings are written to the aws_s3_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingSettingsResource.EncryptionKeySid">
            <summary>
            The SID of the Public Key resource used for encryption
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingSettingsResource.EncryptionEnabled">
            <summary>
            Whether all recordings are stored in an encrypted form
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RecordingSettingsResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.FetchRoomOptions">
            <summary>
            FetchRoomOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.FetchRoomOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.FetchRoomOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchRoomOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.FetchRoomOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.CreateRoomOptions">
            <summary>
            CreateRoomOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRoomOptions.EnableTurn">
            <summary>
            Enable Twilio's Network Traversal TURN service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRoomOptions.Type">
            <summary>
            The type of room
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRoomOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRoomOptions.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRoomOptions.StatusCallbackMethod">
            <summary>
            The HTTP method we should use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRoomOptions.MaxParticipants">
            <summary>
            The maximum number of concurrent Participants allowed in the room
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRoomOptions.RecordParticipantsOnConnect">
            <summary>
            Whether to start recording when Participants connect
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRoomOptions.VideoCodecs">
            <summary>
            An array of the video codecs that are supported when publishing a track in the room
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.CreateRoomOptions.MediaRegion">
            <summary>
            The region for the media server in Group Rooms
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CreateRoomOptions.#ctor">
            <summary>
            Construct a new CreateRoomOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.CreateRoomOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.ReadRoomOptions">
            <summary>
            ReadRoomOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadRoomOptions.Status">
            <summary>
            Read only the rooms with this status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadRoomOptions.UniqueName">
            <summary>
            Read only rooms with this unique_name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadRoomOptions.DateCreatedAfter">
            <summary>
            Read only rooms that started on or after this date, given as YYYY-MM-DD
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.ReadRoomOptions.DateCreatedBefore">
            <summary>
            Read only rooms that started before this date, given as YYYY-MM-DD
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.ReadRoomOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.UpdateRoomOptions">
            <summary>
            UpdateRoomOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateRoomOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.UpdateRoomOptions.Status">
            <summary>
            The new status of the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.UpdateRoomOptions.#ctor(System.String,Twilio.Rest.Video.V1.RoomResource.RoomStatusEnum)">
            <summary>
            Construct a new UpdateRoomOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="status"> The new status of the resource </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.UpdateRoomOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.Fetch(Twilio.Rest.Video.V1.FetchRoomOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Room parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.FetchAsync(Twilio.Rest.Video.V1.FetchRoomOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Room parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.Create(Twilio.Rest.Video.V1.CreateRoomOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Room parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.CreateAsync(Twilio.Rest.Video.V1.CreateRoomOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create Room parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.Create(System.Nullable{System.Boolean},Twilio.Rest.Video.V1.RoomResource.RoomTypeEnum,System.String,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Collections.Generic.List{Twilio.Rest.Video.V1.RoomResource.VideoCodecEnum},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="enableTurn"> Enable Twilio's Network Traversal TURN service </param>
            <param name="type"> The type of room </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="statusCallback"> The URL to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="maxParticipants"> The maximum number of concurrent Participants allowed in the room </param>
            <param name="recordParticipantsOnConnect"> Whether to start recording when Participants connect </param>
            <param name="videoCodecs"> An array of the video codecs that are supported when publishing a track in the room
                              </param>
            <param name="mediaRegion"> The region for the media server in Group Rooms </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.CreateAsync(System.Nullable{System.Boolean},Twilio.Rest.Video.V1.RoomResource.RoomTypeEnum,System.String,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Collections.Generic.List{Twilio.Rest.Video.V1.RoomResource.VideoCodecEnum},System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="enableTurn"> Enable Twilio's Network Traversal TURN service </param>
            <param name="type"> The type of room </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="statusCallback"> The URL to send status information to your application </param>
            <param name="statusCallbackMethod"> The HTTP method we should use to call status_callback </param>
            <param name="maxParticipants"> The maximum number of concurrent Participants allowed in the room </param>
            <param name="recordParticipantsOnConnect"> Whether to start recording when Participants connect </param>
            <param name="videoCodecs"> An array of the video codecs that are supported when publishing a track in the room
                              </param>
            <param name="mediaRegion"> The region for the media server in Group Rooms </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.Read(Twilio.Rest.Video.V1.ReadRoomOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Room parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.ReadAsync(Twilio.Rest.Video.V1.ReadRoomOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Room parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.Read(Twilio.Rest.Video.V1.RoomResource.RoomStatusEnum,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="status"> Read only the rooms with this status </param>
            <param name="uniqueName"> Read only rooms with this unique_name </param>
            <param name="dateCreatedAfter"> Read only rooms that started on or after this date, given as YYYY-MM-DD </param>
            <param name="dateCreatedBefore"> Read only rooms that started before this date, given as YYYY-MM-DD </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.ReadAsync(Twilio.Rest.Video.V1.RoomResource.RoomStatusEnum,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="status"> Read only the rooms with this status </param>
            <param name="uniqueName"> Read only rooms with this unique_name </param>
            <param name="dateCreatedAfter"> Read only rooms that started on or after this date, given as YYYY-MM-DD </param>
            <param name="dateCreatedBefore"> Read only rooms that started before this date, given as YYYY-MM-DD </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.NextPage(Twilio.Base.Page{Twilio.Rest.Video.V1.RoomResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Video.V1.RoomResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.Update(Twilio.Rest.Video.V1.UpdateRoomOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Room parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.UpdateAsync(Twilio.Rest.Video.V1.UpdateRoomOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Room parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.Update(System.String,Twilio.Rest.Video.V1.RoomResource.RoomStatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.UpdateAsync(System.String,Twilio.Rest.Video.V1.RoomResource.RoomStatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Room </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.RoomResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RoomResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RoomResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.Status">
            <summary>
            The status of the room
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.EnableTurn">
            <summary>
            Enable Twilio's Network Traversal TURN service
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.StatusCallback">
            <summary>
            The URL to send status information to your application
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.StatusCallbackMethod">
            <summary>
            The HTTP method we use to call status_callback
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.EndTime">
            <summary>
            The UTC end time of the room in UTC ISO 8601 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.Duration">
            <summary>
            The duration of the room in seconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.Type">
            <summary>
            The type of room
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.MaxParticipants">
            <summary>
            The maximum number of concurrent Participants allowed in the room
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.RecordParticipantsOnConnect">
            <summary>
            Whether to start recording when Participants connect
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.VideoCodecs">
            <summary>
            An array of the video codecs that are supported when publishing a track in the room
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.MediaRegion">
            <summary>
            The region for the media server in Group Rooms
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.RoomResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.FetchParticipantOptions">
            <summary>
            FetchParticipantOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.FetchParticipantOptions.PathRoomSid">
            <summary>
            The SID of the room with the Participant resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.FetchParticipantOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.FetchParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchParticipantOptions
            </summary>
            <param name="pathRoomSid"> The SID of the room with the Participant resource to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.FetchParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.ReadParticipantOptions">
            <summary>
            ReadParticipantOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ReadParticipantOptions.PathRoomSid">
            <summary>
            The SID of the room with the Participant resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ReadParticipantOptions.Status">
            <summary>
            Read only the participants with this status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ReadParticipantOptions.Identity">
            <summary>
            Read only the Participants with this user identity value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ReadParticipantOptions.DateCreatedAfter">
            <summary>
            Read only Participants that started after this date in UTC ISO 8601 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ReadParticipantOptions.DateCreatedBefore">
            <summary>
            Read only Participants that started before this date in ISO 8601 format
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ReadParticipantOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadParticipantOptions
            </summary>
            <param name="pathRoomSid"> The SID of the room with the Participant resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ReadParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.UpdateParticipantOptions">
            <summary>
            UpdateParticipantOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.UpdateParticipantOptions.PathRoomSid">
            <summary>
            The SID of the room with the participant to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.UpdateParticipantOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.UpdateParticipantOptions.Status">
            <summary>
            The new status of the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.UpdateParticipantOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateParticipantOptions
            </summary>
            <param name="pathRoomSid"> The SID of the room with the participant to update </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.UpdateParticipantOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.Fetch(Twilio.Rest.Video.V1.Room.FetchParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.FetchAsync(Twilio.Rest.Video.V1.Room.FetchParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathRoomSid"> The SID of the room with the Participant resource to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathRoomSid"> The SID of the room with the Participant resource to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.Read(Twilio.Rest.Video.V1.Room.ReadParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.ReadAsync(Twilio.Rest.Video.V1.Room.ReadParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.Read(System.String,Twilio.Rest.Video.V1.Room.ParticipantResource.StatusEnum,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathRoomSid"> The SID of the room with the Participant resources to read </param>
            <param name="status"> Read only the participants with this status </param>
            <param name="identity"> Read only the Participants with this user identity value </param>
            <param name="dateCreatedAfter"> Read only Participants that started after this date in UTC ISO 8601 format </param>
            <param name="dateCreatedBefore"> Read only Participants that started before this date in ISO 8601 format </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.ReadAsync(System.String,Twilio.Rest.Video.V1.Room.ParticipantResource.StatusEnum,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathRoomSid"> The SID of the room with the Participant resources to read </param>
            <param name="status"> Read only the participants with this status </param>
            <param name="identity"> Read only the Participants with this user identity value </param>
            <param name="dateCreatedAfter"> Read only Participants that started after this date in UTC ISO 8601 format </param>
            <param name="dateCreatedBefore"> Read only Participants that started before this date in ISO 8601 format </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.NextPage(Twilio.Base.Page{Twilio.Rest.Video.V1.Room.ParticipantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Video.V1.Room.ParticipantResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.Update(Twilio.Rest.Video.V1.Room.UpdateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.UpdateAsync(Twilio.Rest.Video.V1.Room.UpdateParticipantOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update Participant parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.Update(System.String,System.String,Twilio.Rest.Video.V1.Room.ParticipantResource.StatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathRoomSid"> The SID of the room with the participant to update </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.UpdateAsync(System.String,System.String,Twilio.Rest.Video.V1.Room.ParticipantResource.StatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathRoomSid"> The SID of the room with the participant to update </param>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="status"> The new status of the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Participant </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ParticipantResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a ParticipantResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> ParticipantResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.RoomSid">
            <summary>
            The SID of the participant's room
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.Status">
            <summary>
            The status of the Participant
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.Identity">
            <summary>
            The string that identifies the resource's User
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.StartTime">
            <summary>
            The time of participant connected to the room in ISO 8601 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.EndTime">
            <summary>
            The time when the participant disconnected from the room in ISO 8601 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.Duration">
            <summary>
            Duration of time in seconds the participant was connected
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ParticipantResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.Participant.FetchPublishedTrackOptions">
            <summary>
            Returns a single Track resource represented by TrackName or SID.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.FetchPublishedTrackOptions.PathRoomSid">
            <summary>
            The SID of the Room resource where the Track resource to fetch is published
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.FetchPublishedTrackOptions.PathParticipantSid">
            <summary>
            The SID of the Participant resource with the published track to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.FetchPublishedTrackOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.FetchPublishedTrackOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchPublishedTrackOptions
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the Track resource to fetch is published </param>
            <param name="pathParticipantSid"> The SID of the Participant resource with the published track to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.FetchPublishedTrackOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.Participant.ReadPublishedTrackOptions">
            <summary>
            Returns a list of tracks associated with a given Participant. Only `currently` Published Tracks are in the list
            resource.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.ReadPublishedTrackOptions.PathRoomSid">
            <summary>
            The SID of the Room resource where the Track resources to read are published
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.ReadPublishedTrackOptions.PathParticipantSid">
            <summary>
            The SID of the Participant resource with the published tracks to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.ReadPublishedTrackOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadPublishedTrackOptions
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the Track resources to read are published </param>
            <param name="pathParticipantSid"> The SID of the Participant resource with the published tracks to read </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.ReadPublishedTrackOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.Fetch(Twilio.Rest.Video.V1.Room.Participant.FetchPublishedTrackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Track resource represented by TrackName or SID.
            </summary>
            <param name="options"> Fetch PublishedTrack parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublishedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.FetchAsync(Twilio.Rest.Video.V1.Room.Participant.FetchPublishedTrackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Track resource represented by TrackName or SID.
            </summary>
            <param name="options"> Fetch PublishedTrack parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublishedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Track resource represented by TrackName or SID.
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the Track resource to fetch is published </param>
            <param name="pathParticipantSid"> The SID of the Participant resource with the published track to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublishedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Track resource represented by TrackName or SID.
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the Track resource to fetch is published </param>
            <param name="pathParticipantSid"> The SID of the Participant resource with the published track to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublishedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.Read(Twilio.Rest.Video.V1.Room.Participant.ReadPublishedTrackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of tracks associated with a given Participant. Only `currently` Published Tracks are in the list
            resource.
            </summary>
            <param name="options"> Read PublishedTrack parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublishedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.ReadAsync(Twilio.Rest.Video.V1.Room.Participant.ReadPublishedTrackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of tracks associated with a given Participant. Only `currently` Published Tracks are in the list
            resource.
            </summary>
            <param name="options"> Read PublishedTrack parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublishedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of tracks associated with a given Participant. Only `currently` Published Tracks are in the list
            resource.
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the Track resources to read are published </param>
            <param name="pathParticipantSid"> The SID of the Participant resource with the published tracks to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of PublishedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of tracks associated with a given Participant. Only `currently` Published Tracks are in the list
            resource.
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the Track resources to read are published </param>
            <param name="pathParticipantSid"> The SID of the Participant resource with the published tracks to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of PublishedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.NextPage(Twilio.Base.Page{Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a PublishedTrackResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> PublishedTrackResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.ParticipantSid">
            <summary>
            The SID of the Participant resource with the published track
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.RoomSid">
            <summary>
            The SID of the Room resource where the track is published
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.Name">
            <summary>
            The track name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.Enabled">
            <summary>
            Whether the track is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.Kind">
            <summary>
            The track type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.PublishedTrackResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.Participant.FetchSubscribedTrackOptions">
            <summary>
            Returns a single Track resource represented by `track_sid`.  Note: This is one resource with the Video API that
            requires a SID, be Track Name on the subscriber side is not guaranteed to be unique.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.FetchSubscribedTrackOptions.PathRoomSid">
            <summary>
            The SID of the Room where the Track resource to fetch is subscribed
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.FetchSubscribedTrackOptions.PathParticipantSid">
            <summary>
            The SID of the participant that subscribes to the Track resource to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.FetchSubscribedTrackOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.FetchSubscribedTrackOptions.#ctor(System.String,System.String,System.String)">
            <summary>
            Construct a new FetchSubscribedTrackOptions
            </summary>
            <param name="pathRoomSid"> The SID of the Room where the Track resource to fetch is subscribed </param>
            <param name="pathParticipantSid"> The SID of the participant that subscribes to the Track resource to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.FetchSubscribedTrackOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.Participant.ReadSubscribedTrackOptions">
            <summary>
            Returns a list of tracks that are subscribed for the participant.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.ReadSubscribedTrackOptions.PathRoomSid">
            <summary>
            The SID of the Room resource with the Track resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.ReadSubscribedTrackOptions.PathParticipantSid">
            <summary>
            The SID of the participant that subscribes to the Track resources to read
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.ReadSubscribedTrackOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new ReadSubscribedTrackOptions
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource with the Track resources to read </param>
            <param name="pathParticipantSid"> The SID of the participant that subscribes to the Track resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.ReadSubscribedTrackOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.Fetch(Twilio.Rest.Video.V1.Room.Participant.FetchSubscribedTrackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Track resource represented by `track_sid`.  Note: This is one resource with the Video API that
            requires a SID, be Track Name on the subscriber side is not guaranteed to be unique.
            </summary>
            <param name="options"> Fetch SubscribedTrack parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SubscribedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.FetchAsync(Twilio.Rest.Video.V1.Room.Participant.FetchSubscribedTrackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Track resource represented by `track_sid`.  Note: This is one resource with the Video API that
            requires a SID, be Track Name on the subscriber side is not guaranteed to be unique.
            </summary>
            <param name="options"> Fetch SubscribedTrack parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SubscribedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.Fetch(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Track resource represented by `track_sid`.  Note: This is one resource with the Video API that
            requires a SID, be Track Name on the subscriber side is not guaranteed to be unique.
            </summary>
            <param name="pathRoomSid"> The SID of the Room where the Track resource to fetch is subscribed </param>
            <param name="pathParticipantSid"> The SID of the participant that subscribes to the Track resource to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SubscribedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.FetchAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a single Track resource represented by `track_sid`.  Note: This is one resource with the Video API that
            requires a SID, be Track Name on the subscriber side is not guaranteed to be unique.
            </summary>
            <param name="pathRoomSid"> The SID of the Room where the Track resource to fetch is subscribed </param>
            <param name="pathParticipantSid"> The SID of the participant that subscribes to the Track resource to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SubscribedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.Read(Twilio.Rest.Video.V1.Room.Participant.ReadSubscribedTrackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of tracks that are subscribed for the participant.
            </summary>
            <param name="options"> Read SubscribedTrack parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SubscribedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.ReadAsync(Twilio.Rest.Video.V1.Room.Participant.ReadSubscribedTrackOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of tracks that are subscribed for the participant.
            </summary>
            <param name="options"> Read SubscribedTrack parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SubscribedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.Read(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of tracks that are subscribed for the participant.
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource with the Track resources to read </param>
            <param name="pathParticipantSid"> The SID of the participant that subscribes to the Track resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SubscribedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.ReadAsync(System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of tracks that are subscribed for the participant.
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource with the Track resources to read </param>
            <param name="pathParticipantSid"> The SID of the participant that subscribes to the Track resources to read </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SubscribedTrack </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.NextPage(Twilio.Base.Page{Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SubscribedTrackResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SubscribedTrackResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.ParticipantSid">
            <summary>
            The SID of the participant that subscribes to the track
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.PublisherSid">
            <summary>
            The SID of the participant that publishes the track
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.RoomSid">
            <summary>
            The SID of the room where the track is published
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.Name">
            <summary>
            The track name
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.Enabled">
            <summary>
            Whether the track is enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.Kind">
            <summary>
            The track type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribedTrackResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.Participant.FetchSubscribeRulesOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Returns a list of Subscribe Rules for the Participant.
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.FetchSubscribeRulesOptions.PathRoomSid">
            <summary>
            The SID of the Room resource where the subscribe rules to fetch apply
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.FetchSubscribeRulesOptions.PathParticipantSid">
            <summary>
            The SID of the Participant resource with the subscribe rules to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.FetchSubscribeRulesOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchSubscribeRulesOptions
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the subscribe rules to fetch apply </param>
            <param name="pathParticipantSid"> The SID of the Participant resource with the subscribe rules to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.FetchSubscribeRulesOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.Participant.UpdateSubscribeRulesOptions">
             <summary>
             PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
            
             Update the Subscribe Rules for the Participant
             </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.UpdateSubscribeRulesOptions.PathRoomSid">
            <summary>
            The SID of the Room resource where the subscribe rules to update apply
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.UpdateSubscribeRulesOptions.PathParticipantSid">
            <summary>
            The SID of the Participant resource to update the Subscribe Rules
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.UpdateSubscribeRulesOptions.Rules">
            <summary>
            A JSON-encoded array of subscribe rules
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.UpdateSubscribeRulesOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new UpdateSubscribeRulesOptions
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the subscribe rules to update apply </param>
            <param name="pathParticipantSid"> The SID of the Participant resource to update the Subscribe Rules </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.UpdateSubscribeRulesOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.Fetch(Twilio.Rest.Video.V1.Room.Participant.FetchSubscribeRulesOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of Subscribe Rules for the Participant.
            </summary>
            <param name="options"> Fetch SubscribeRules parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SubscribeRules </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.FetchAsync(Twilio.Rest.Video.V1.Room.Participant.FetchSubscribeRulesOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of Subscribe Rules for the Participant.
            </summary>
            <param name="options"> Fetch SubscribeRules parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SubscribeRules </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of Subscribe Rules for the Participant.
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the subscribe rules to fetch apply </param>
            <param name="pathParticipantSid"> The SID of the Participant resource with the subscribe rules to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SubscribeRules </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Returns a list of Subscribe Rules for the Participant.
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the subscribe rules to fetch apply </param>
            <param name="pathParticipantSid"> The SID of the Participant resource with the subscribe rules to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SubscribeRules </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.Update(Twilio.Rest.Video.V1.Room.Participant.UpdateSubscribeRulesOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the Subscribe Rules for the Participant
            </summary>
            <param name="options"> Update SubscribeRules parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SubscribeRules </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.UpdateAsync(Twilio.Rest.Video.V1.Room.Participant.UpdateSubscribeRulesOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the Subscribe Rules for the Participant
            </summary>
            <param name="options"> Update SubscribeRules parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SubscribeRules </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.Update(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the Subscribe Rules for the Participant
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the subscribe rules to update apply </param>
            <param name="pathParticipantSid"> The SID of the Participant resource to update the Subscribe Rules </param>
            <param name="rules"> A JSON-encoded array of subscribe rules </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of SubscribeRules </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.UpdateAsync(System.String,System.String,System.Object,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update the Subscribe Rules for the Participant
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource where the subscribe rules to update apply </param>
            <param name="pathParticipantSid"> The SID of the Participant resource to update the Subscribe Rules </param>
            <param name="rules"> A JSON-encoded array of subscribe rules </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of SubscribeRules </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SubscribeRulesResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SubscribeRulesResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.ParticipantSid">
            <summary>
            The SID of the Participant resource for the Subscribe Rules
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.RoomSid">
            <summary>
            The SID of the Room resource for the Subscribe Rules
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.Rules">
            <summary>
            A collection of Subscribe Rules that describe how to include or exclude matching tracks
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.Participant.SubscribeRulesResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.FetchRoomRecordingOptions">
            <summary>
            FetchRoomRecordingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.FetchRoomRecordingOptions.PathRoomSid">
            <summary>
            The SID of the Room resource with the recording to fetch
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.FetchRoomRecordingOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.FetchRoomRecordingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new FetchRoomRecordingOptions
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource with the recording to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.FetchRoomRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.ReadRoomRecordingOptions">
            <summary>
            ReadRoomRecordingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ReadRoomRecordingOptions.PathRoomSid">
            <summary>
            The SID of the room with the RoomRecording resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ReadRoomRecordingOptions.Status">
            <summary>
            Read only the recordings with this status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ReadRoomRecordingOptions.SourceSid">
            <summary>
            Read only the recordings that have this source_sid
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ReadRoomRecordingOptions.DateCreatedAfter">
            <summary>
            Read only Recordings that started on or after this ISO 8601 datetime with time zone
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.ReadRoomRecordingOptions.DateCreatedBefore">
            <summary>
            Read only Recordings that started before this ISO 8601 date-time with time zone
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ReadRoomRecordingOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadRoomRecordingOptions
            </summary>
            <param name="pathRoomSid"> The SID of the room with the RoomRecording resources to read </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.ReadRoomRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Video.V1.Room.DeleteRoomRecordingOptions">
            <summary>
            DeleteRoomRecordingOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.DeleteRoomRecordingOptions.PathRoomSid">
            <summary>
            The SID of the room with the RoomRecording resource to delete
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.DeleteRoomRecordingOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.DeleteRoomRecordingOptions.#ctor(System.String,System.String)">
            <summary>
            Construct a new DeleteRoomRecordingOptions
            </summary>
            <param name="pathRoomSid"> The SID of the room with the RoomRecording resource to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.DeleteRoomRecordingOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Fetch(Twilio.Rest.Video.V1.Room.FetchRoomRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch RoomRecording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.FetchAsync(Twilio.Rest.Video.V1.Room.FetchRoomRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch RoomRecording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Fetch(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource with the recording to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.FetchAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathRoomSid"> The SID of the Room resource with the recording to fetch </param>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Read(Twilio.Rest.Video.V1.Room.ReadRoomRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read RoomRecording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.ReadAsync(Twilio.Rest.Video.V1.Room.ReadRoomRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read RoomRecording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Read(System.String,Twilio.Rest.Video.V1.Room.RoomRecordingResource.StatusEnum,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathRoomSid"> The SID of the room with the RoomRecording resources to read </param>
            <param name="status"> Read only the recordings with this status </param>
            <param name="sourceSid"> Read only the recordings that have this source_sid </param>
            <param name="dateCreatedAfter"> Read only Recordings that started on or after this ISO 8601 datetime with time zone
                                   </param>
            <param name="dateCreatedBefore"> Read only Recordings that started before this ISO 8601 date-time with time zone
                                    </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.ReadAsync(System.String,Twilio.Rest.Video.V1.Room.RoomRecordingResource.StatusEnum,System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathRoomSid"> The SID of the room with the RoomRecording resources to read </param>
            <param name="status"> Read only the recordings with this status </param>
            <param name="sourceSid"> Read only the recordings that have this source_sid </param>
            <param name="dateCreatedAfter"> Read only Recordings that started on or after this ISO 8601 datetime with time zone
                                   </param>
            <param name="dateCreatedBefore"> Read only Recordings that started before this ISO 8601 date-time with time zone
                                    </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.NextPage(Twilio.Base.Page{Twilio.Rest.Video.V1.Room.RoomRecordingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Video.V1.Room.RoomRecordingResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Delete(Twilio.Rest.Video.V1.Room.DeleteRoomRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete RoomRecording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.DeleteAsync(Twilio.Rest.Video.V1.Room.DeleteRoomRecordingOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete RoomRecording parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Delete(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathRoomSid"> The SID of the room with the RoomRecording resource to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.DeleteAsync(System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathRoomSid"> The SID of the room with the RoomRecording resource to delete </param>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RoomRecording </returns>
        </member>
        <member name="M:Twilio.Rest.Video.V1.Room.RoomRecordingResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RoomRecordingResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RoomRecordingResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Status">
            <summary>
            The status of the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.SourceSid">
            <summary>
            The SID of the recording source
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Size">
            <summary>
            The size of the recorded track in bytes
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Type">
            <summary>
            The recording's media type
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Duration">
            <summary>
            The duration of the recording in seconds
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.ContainerFormat">
            <summary>
            The file format for the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Codec">
            <summary>
            The codec used for the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.GroupingSids">
            <summary>
            A list of SIDs related to the Recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.TrackName">
            <summary>
            The name that was given to the source track of the recording
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Offset">
            <summary>
            The number of milliseconds between a point in time that is common to all rooms in a group and when the source room of the recording started
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.RoomSid">
            <summary>
            The SID of the Room resource the recording is associated with
            </summary>
        </member>
        <member name="P:Twilio.Rest.Video.V1.Room.RoomRecordingResource.Links">
            <summary>
            The URLs of related resources
            </summary>
        </member>
        <member name="T:Twilio.Rest.Voice.V1.DialingPermissions.CreateBulkCountryUpdateOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Create a bulk update request to change voice dialing country permissions of one or more countries identified by the
             corresponding [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
             </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.CreateBulkCountryUpdateOptions.UpdateRequest">
            <summary>
            URL encoded JSON array of update objects
            </summary>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CreateBulkCountryUpdateOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateBulkCountryUpdateOptions
            </summary>
            <param name="updateRequest"> URL encoded JSON array of update objects </param>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CreateBulkCountryUpdateOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.BulkCountryUpdateResource.Create(Twilio.Rest.Voice.V1.DialingPermissions.CreateBulkCountryUpdateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a bulk update request to change voice dialing country permissions of one or more countries identified by the
            corresponding [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
            </summary>
            <param name="options"> Create BulkCountryUpdate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of BulkCountryUpdate </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.BulkCountryUpdateResource.CreateAsync(Twilio.Rest.Voice.V1.DialingPermissions.CreateBulkCountryUpdateOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a bulk update request to change voice dialing country permissions of one or more countries identified by the
            corresponding [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
            </summary>
            <param name="options"> Create BulkCountryUpdate parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of BulkCountryUpdate </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.BulkCountryUpdateResource.Create(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a bulk update request to change voice dialing country permissions of one or more countries identified by the
            corresponding [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
            </summary>
            <param name="updateRequest"> URL encoded JSON array of update objects </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of BulkCountryUpdate </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.BulkCountryUpdateResource.CreateAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Create a bulk update request to change voice dialing country permissions of one or more countries identified by the
            corresponding [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
            </summary>
            <param name="updateRequest"> URL encoded JSON array of update objects </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of BulkCountryUpdate </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.BulkCountryUpdateResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a BulkCountryUpdateResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> BulkCountryUpdateResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.BulkCountryUpdateResource.UpdateCount">
            <summary>
            The number of countries updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.BulkCountryUpdateResource.UpdateRequest">
            <summary>
            A URL encoded JSON array of update objects
            </summary>
        </member>
        <member name="T:Twilio.Rest.Voice.V1.DialingPermissions.FetchCountryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve voice dialing country permissions identified by the given ISO country code
             </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.FetchCountryOptions.PathIsoCode">
            <summary>
            The ISO country code
            </summary>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.FetchCountryOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCountryOptions
            </summary>
            <param name="pathIsoCode"> The ISO country code </param>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.FetchCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Voice.V1.DialingPermissions.ReadCountryOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve all voice dialing country permissions for this account
             </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.ReadCountryOptions.IsoCode">
            <summary>
            Filter to retrieve the country permissions by specifying the ISO country code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.ReadCountryOptions.Continent">
            <summary>
            Filter to retrieve the country permissions by specifying the continent
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.ReadCountryOptions.CountryCode">
            <summary>
            Country code filter
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.ReadCountryOptions.LowRiskNumbersEnabled">
            <summary>
            Filter to retrieve the country permissions with dialing to low-risk numbers enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.ReadCountryOptions.HighRiskSpecialNumbersEnabled">
            <summary>
            Filter to retrieve the country permissions with dialing to high-risk special service numbers enabled
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.ReadCountryOptions.HighRiskTollfraudNumbersEnabled">
            <summary>
            Filter to retrieve the country permissions with dialing to high-risk toll fraud numbers enabled
            </summary>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.ReadCountryOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.Fetch(Twilio.Rest.Voice.V1.DialingPermissions.FetchCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve voice dialing country permissions identified by the given ISO country code
            </summary>
            <param name="options"> Fetch Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.FetchAsync(Twilio.Rest.Voice.V1.DialingPermissions.FetchCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve voice dialing country permissions identified by the given ISO country code
            </summary>
            <param name="options"> Fetch Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve voice dialing country permissions identified by the given ISO country code
            </summary>
            <param name="pathIsoCode"> The ISO country code </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve voice dialing country permissions identified by the given ISO country code
            </summary>
            <param name="pathIsoCode"> The ISO country code </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.Read(Twilio.Rest.Voice.V1.DialingPermissions.ReadCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve all voice dialing country permissions for this account
            </summary>
            <param name="options"> Read Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.ReadAsync(Twilio.Rest.Voice.V1.DialingPermissions.ReadCountryOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve all voice dialing country permissions for this account
            </summary>
            <param name="options"> Read Country parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.Read(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve all voice dialing country permissions for this account
            </summary>
            <param name="isoCode"> Filter to retrieve the country permissions by specifying the ISO country code </param>
            <param name="continent"> Filter to retrieve the country permissions by specifying the continent </param>
            <param name="countryCode"> Country code filter </param>
            <param name="lowRiskNumbersEnabled"> Filter to retrieve the country permissions with dialing to low-risk numbers
                                        enabled </param>
            <param name="highRiskSpecialNumbersEnabled"> Filter to retrieve the country permissions with dialing to high-risk
                                                special service numbers enabled </param>
            <param name="highRiskTollfraudNumbersEnabled"> Filter to retrieve the country permissions with dialing to high-risk
                                                  toll fraud numbers enabled </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.ReadAsync(System.String,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve all voice dialing country permissions for this account
            </summary>
            <param name="isoCode"> Filter to retrieve the country permissions by specifying the ISO country code </param>
            <param name="continent"> Filter to retrieve the country permissions by specifying the continent </param>
            <param name="countryCode"> Country code filter </param>
            <param name="lowRiskNumbersEnabled"> Filter to retrieve the country permissions with dialing to low-risk numbers
                                        enabled </param>
            <param name="highRiskSpecialNumbersEnabled"> Filter to retrieve the country permissions with dialing to high-risk
                                                special service numbers enabled </param>
            <param name="highRiskTollfraudNumbersEnabled"> Filter to retrieve the country permissions with dialing to high-risk
                                                  toll fraud numbers enabled </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Country </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.NextPage(Twilio.Base.Page{Twilio.Rest.Voice.V1.DialingPermissions.CountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Voice.V1.DialingPermissions.CountryResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CountryResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CountryResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.IsoCode">
            <summary>
            The ISO country code
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.Name">
            <summary>
            Name of the country
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.Continent">
            <summary>
            Name of the continent
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.CountryCodes">
            <summary>
            The E.164 assigned country codes(s)
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.LowRiskNumbersEnabled">
            <summary>
            `true`, if dialing to low-risk numbers is enabled, else `false`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.HighRiskSpecialNumbersEnabled">
            <summary>
            `true`, if dialing to high-risk special services numbers is enabled, else `false`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.HighRiskTollfraudNumbersEnabled">
            <summary>
            `true`, if dialing to high-risk toll fraud numbers is enabled, else `false`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.Url">
            <summary>
            The absolute URL of this resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.CountryResource.Links">
            <summary>
            A list of URLs related to this resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Voice.V1.DialingPermissions.Country.ReadHighriskSpecialPrefixOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Fetch the high-risk special services prefixes from the country resource corresponding to the [ISO country
             code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
             </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.Country.ReadHighriskSpecialPrefixOptions.PathIsoCode">
            <summary>
            The ISO 3166-1 country code
            </summary>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.Country.ReadHighriskSpecialPrefixOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadHighriskSpecialPrefixOptions
            </summary>
            <param name="pathIsoCode"> The ISO 3166-1 country code </param>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.Country.ReadHighriskSpecialPrefixOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.Country.HighriskSpecialPrefixResource.Read(Twilio.Rest.Voice.V1.DialingPermissions.Country.ReadHighriskSpecialPrefixOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the high-risk special services prefixes from the country resource corresponding to the [ISO country
            code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
            </summary>
            <param name="options"> Read HighriskSpecialPrefix parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HighriskSpecialPrefix </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.Country.HighriskSpecialPrefixResource.ReadAsync(Twilio.Rest.Voice.V1.DialingPermissions.Country.ReadHighriskSpecialPrefixOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the high-risk special services prefixes from the country resource corresponding to the [ISO country
            code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
            </summary>
            <param name="options"> Read HighriskSpecialPrefix parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HighriskSpecialPrefix </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.Country.HighriskSpecialPrefixResource.Read(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the high-risk special services prefixes from the country resource corresponding to the [ISO country
            code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
            </summary>
            <param name="pathIsoCode"> The ISO 3166-1 country code </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of HighriskSpecialPrefix </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.Country.HighriskSpecialPrefixResource.ReadAsync(System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the high-risk special services prefixes from the country resource corresponding to the [ISO country
            code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
            </summary>
            <param name="pathIsoCode"> The ISO 3166-1 country code </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of HighriskSpecialPrefix </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.Country.HighriskSpecialPrefixResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.Country.HighriskSpecialPrefixResource.NextPage(Twilio.Base.Page{Twilio.Rest.Voice.V1.DialingPermissions.Country.HighriskSpecialPrefixResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.Country.HighriskSpecialPrefixResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Voice.V1.DialingPermissions.Country.HighriskSpecialPrefixResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.Country.HighriskSpecialPrefixResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a HighriskSpecialPrefixResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> HighriskSpecialPrefixResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.Country.HighriskSpecialPrefixResource.Prefix">
            <summary>
            A prefix that includes the E.164 assigned country code
            </summary>
        </member>
        <member name="T:Twilio.Rest.Voice.V1.DialingPermissions.FetchSettingsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Retrieve voice dialing permissions inheritance for this sub-account
             </summary>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.FetchSettingsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Voice.V1.DialingPermissions.UpdateSettingsOptions">
             <summary>
             PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you
             currently do not have developer preview access, please contact help@twilio.com.
            
             Update voice dialing permissions inheritance for this sub-account
             </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.UpdateSettingsOptions.DialingPermissionsInheritance">
            <summary>
            `true` for this sub-account to inherit voice dialing permissions from the Master Project; otherwise `false`
            </summary>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.UpdateSettingsOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.SettingsResource.Fetch(Twilio.Rest.Voice.V1.DialingPermissions.FetchSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve voice dialing permissions inheritance for this sub-account
            </summary>
            <param name="options"> Fetch Settings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Settings </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.SettingsResource.FetchAsync(Twilio.Rest.Voice.V1.DialingPermissions.FetchSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve voice dialing permissions inheritance for this sub-account
            </summary>
            <param name="options"> Fetch Settings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Settings </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.SettingsResource.Fetch(Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve voice dialing permissions inheritance for this sub-account
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Settings </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.SettingsResource.FetchAsync(Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve voice dialing permissions inheritance for this sub-account
            </summary>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Settings </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.SettingsResource.Update(Twilio.Rest.Voice.V1.DialingPermissions.UpdateSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update voice dialing permissions inheritance for this sub-account
            </summary>
            <param name="options"> Update Settings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Settings </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.SettingsResource.UpdateAsync(Twilio.Rest.Voice.V1.DialingPermissions.UpdateSettingsOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update voice dialing permissions inheritance for this sub-account
            </summary>
            <param name="options"> Update Settings parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Settings </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.SettingsResource.Update(System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update voice dialing permissions inheritance for this sub-account
            </summary>
            <param name="dialingPermissionsInheritance"> `true` for this sub-account to inherit voice dialing permissions from
                                                the Master Project; otherwise `false` </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Settings </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.SettingsResource.UpdateAsync(System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Update voice dialing permissions inheritance for this sub-account
            </summary>
            <param name="dialingPermissionsInheritance"> `true` for this sub-account to inherit voice dialing permissions from
                                                the Master Project; otherwise `false` </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Settings </returns>
        </member>
        <member name="M:Twilio.Rest.Voice.V1.DialingPermissions.SettingsResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SettingsResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SettingsResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.SettingsResource.DialingPermissionsInheritance">
            <summary>
            `true` if this sub-account will inherit voice dialing permissions from the Master Project; otherwise `false`
            </summary>
        </member>
        <member name="P:Twilio.Rest.Voice.V1.DialingPermissions.SettingsResource.Url">
            <summary>
            The absolute URL of this resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.FetchCommandOptions">
            <summary>
            Fetch a Command instance from your account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.FetchCommandOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.FetchCommandOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchCommandOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.FetchCommandOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.ReadCommandOptions">
            <summary>
            Retrieve a list of Commands from your account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadCommandOptions.Sim">
            <summary>
            The sid or unique_name of the Sim resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadCommandOptions.Status">
            <summary>
            The status of the resources to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadCommandOptions.Direction">
            <summary>
            Only return Commands with this direction value
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadCommandOptions.Transport">
            <summary>
            Only return Commands with this transport value
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.ReadCommandOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.CreateCommandOptions">
            <summary>
            Send a Command to a Sim.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateCommandOptions.Command">
            <summary>
            The message body of the Command or a Base64 encoded byte string in binary mode
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateCommandOptions.Sim">
            <summary>
            The sid or unique_name of the SIM to send the Command to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateCommandOptions.CallbackMethod">
            <summary>
            The HTTP method we use to call callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateCommandOptions.CallbackUrl">
            <summary>
            he URL we call when the Command has finished sending
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateCommandOptions.CommandMode">
            <summary>
            The mode to use when sending the SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateCommandOptions.IncludeSid">
            <summary>
            Whether to include the SID of the command in the message body
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateCommandOptions.DeliveryReceiptRequested">
            <summary>
            Whether to request delivery receipt from the recipient
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CreateCommandOptions.#ctor(System.String)">
            <summary>
            Construct a new CreateCommandOptions
            </summary>
            <param name="command"> The message body of the Command or a Base64 encoded byte string in binary mode </param>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CreateCommandOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.DeleteCommandOptions">
            <summary>
            Delete a Command instance from your account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.DeleteCommandOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.DeleteCommandOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteCommandOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.DeleteCommandOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.Fetch(Twilio.Rest.Wireless.V1.FetchCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Command instance from your account.
            </summary>
            <param name="options"> Fetch Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.FetchAsync(Twilio.Rest.Wireless.V1.FetchCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Command instance from your account.
            </summary>
            <param name="options"> Fetch Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Command instance from your account.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Command instance from your account.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.Read(Twilio.Rest.Wireless.V1.ReadCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Commands from your account.
            </summary>
            <param name="options"> Read Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.ReadAsync(Twilio.Rest.Wireless.V1.ReadCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Commands from your account.
            </summary>
            <param name="options"> Read Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.Read(System.String,Twilio.Rest.Wireless.V1.CommandResource.StatusEnum,Twilio.Rest.Wireless.V1.CommandResource.DirectionEnum,Twilio.Rest.Wireless.V1.CommandResource.TransportEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Commands from your account.
            </summary>
            <param name="sim"> The sid or unique_name of the Sim resources to read </param>
            <param name="status"> The status of the resources to read </param>
            <param name="direction"> Only return Commands with this direction value </param>
            <param name="transport"> Only return Commands with this transport value </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.ReadAsync(System.String,Twilio.Rest.Wireless.V1.CommandResource.StatusEnum,Twilio.Rest.Wireless.V1.CommandResource.DirectionEnum,Twilio.Rest.Wireless.V1.CommandResource.TransportEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Commands from your account.
            </summary>
            <param name="sim"> The sid or unique_name of the Sim resources to read </param>
            <param name="status"> The status of the resources to read </param>
            <param name="direction"> Only return Commands with this direction value </param>
            <param name="transport"> Only return Commands with this transport value </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.NextPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.CommandResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.CommandResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.Create(Twilio.Rest.Wireless.V1.CreateCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Send a Command to a Sim.
            </summary>
            <param name="options"> Create Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.CreateAsync(Twilio.Rest.Wireless.V1.CreateCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Send a Command to a Sim.
            </summary>
            <param name="options"> Create Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.Create(System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Rest.Wireless.V1.CommandResource.CommandModeEnum,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Send a Command to a Sim.
            </summary>
            <param name="command"> The message body of the Command or a Base64 encoded byte string in binary mode </param>
            <param name="sim"> The sid or unique_name of the SIM to send the Command to </param>
            <param name="callbackMethod"> The HTTP method we use to call callback_url </param>
            <param name="callbackUrl"> he URL we call when the Command has finished sending </param>
            <param name="commandMode"> The mode to use when sending the SMS message </param>
            <param name="includeSid"> Whether to include the SID of the command in the message body </param>
            <param name="deliveryReceiptRequested"> Whether to request delivery receipt from the recipient </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.CreateAsync(System.String,System.String,Twilio.Http.HttpMethod,System.Uri,Twilio.Rest.Wireless.V1.CommandResource.CommandModeEnum,System.String,System.Nullable{System.Boolean},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Send a Command to a Sim.
            </summary>
            <param name="command"> The message body of the Command or a Base64 encoded byte string in binary mode </param>
            <param name="sim"> The sid or unique_name of the SIM to send the Command to </param>
            <param name="callbackMethod"> The HTTP method we use to call callback_url </param>
            <param name="callbackUrl"> he URL we call when the Command has finished sending </param>
            <param name="commandMode"> The mode to use when sending the SMS message </param>
            <param name="includeSid"> Whether to include the SID of the command in the message body </param>
            <param name="deliveryReceiptRequested"> Whether to request delivery receipt from the recipient </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.Delete(Twilio.Rest.Wireless.V1.DeleteCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Command instance from your account.
            </summary>
            <param name="options"> Delete Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.DeleteAsync(Twilio.Rest.Wireless.V1.DeleteCommandOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Command instance from your account.
            </summary>
            <param name="options"> Delete Command parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Command instance from your account.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Command instance from your account.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Command </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CommandResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a CommandResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> CommandResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.SimSid">
            <summary>
            The SID of the Sim resource that the Command was sent to or from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.Command">
            <summary>
            The message being sent to or from the SIM
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.CommandMode">
            <summary>
            The mode used to send the SMS message
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.Transport">
            <summary>
            The type of transport used
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.DeliveryReceiptRequested">
            <summary>
            Whether to request a delivery receipt
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.Status">
            <summary>
            The status of the Command
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.Direction">
            <summary>
            The direction of the Command
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CommandResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.ReadRatePlanOptions">
            <summary>
            ReadRatePlanOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.ReadRatePlanOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.FetchRatePlanOptions">
            <summary>
            FetchRatePlanOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.FetchRatePlanOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.FetchRatePlanOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchRatePlanOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.FetchRatePlanOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.CreateRatePlanOptions">
            <summary>
            CreateRatePlanOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.DataEnabled">
            <summary>
            Whether SIMs can use GPRS/3G/4G/LTE data connectivity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.DataLimit">
            <summary>
            The total data usage in Megabytes that the Network allows during one month on the home network
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.DataMetering">
            <summary>
            The model used to meter data usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.MessagingEnabled">
            <summary>
            Whether SIMs can make, send, and receive SMS using Commands
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.VoiceEnabled">
            <summary>
            Whether SIMs can make and receive voice calls
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.NationalRoamingEnabled">
            <summary>
            Whether SIMs can roam on networks other than the home network in the United States
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.InternationalRoaming">
            <summary>
            The services that SIMs capable of using GPRS/3G/4G/LTE data connectivity can use outside of the United States
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.NationalRoamingDataLimit">
            <summary>
            The total data usage in Megabytes that the Network allows during one month on non-home networks in the United States
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.InternationalRoamingDataLimit">
            <summary>
            The total data usage (download and upload combined) in Megabytes that the Network allows during one month when roaming outside the United States
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.#ctor">
            <summary>
            Construct a new CreateRatePlanOptions
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.CreateRatePlanOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.UpdateRatePlanOptions">
            <summary>
            UpdateRatePlanOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateRatePlanOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateRatePlanOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateRatePlanOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UpdateRatePlanOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateRatePlanOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UpdateRatePlanOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.DeleteRatePlanOptions">
            <summary>
            DeleteRatePlanOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.DeleteRatePlanOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.DeleteRatePlanOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteRatePlanOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.DeleteRatePlanOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.Read(Twilio.Rest.Wireless.V1.ReadRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.ReadAsync(Twilio.Rest.Wireless.V1.ReadRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.Read(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.ReadAsync(System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.NextPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.RatePlanResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.RatePlanResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.Fetch(Twilio.Rest.Wireless.V1.FetchRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.FetchAsync(Twilio.Rest.Wireless.V1.FetchRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="options"> Fetch RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            fetch
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.Create(Twilio.Rest.Wireless.V1.CreateRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.CreateAsync(Twilio.Rest.Wireless.V1.CreateRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="options"> Create RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.Create(System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="dataEnabled"> Whether SIMs can use GPRS/3G/4G/LTE data connectivity </param>
            <param name="dataLimit"> The total data usage in Megabytes that the Network allows during one month on the home
                            network </param>
            <param name="dataMetering"> The model used to meter data usage </param>
            <param name="messagingEnabled"> Whether SIMs can make, send, and receive SMS using Commands </param>
            <param name="voiceEnabled"> Whether SIMs can make and receive voice calls </param>
            <param name="nationalRoamingEnabled"> Whether SIMs can roam on networks other than the home network in the United
                                         States </param>
            <param name="internationalRoaming"> The services that SIMs capable of using GPRS/3G/4G/LTE data connectivity can
                                       use outside of the United States </param>
            <param name="nationalRoamingDataLimit"> The total data usage in Megabytes that the Network allows during one month
                                           on non-home networks in the United States </param>
            <param name="internationalRoamingDataLimit"> The total data usage (download and upload combined) in Megabytes that
                                                the Network allows during one month when roaming outside the United States
                                                </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.CreateAsync(System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Collections.Generic.List{System.String},System.Nullable{System.Int32},System.Nullable{System.Int32},Twilio.Clients.ITwilioRestClient)">
            <summary>
            create
            </summary>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="dataEnabled"> Whether SIMs can use GPRS/3G/4G/LTE data connectivity </param>
            <param name="dataLimit"> The total data usage in Megabytes that the Network allows during one month on the home
                            network </param>
            <param name="dataMetering"> The model used to meter data usage </param>
            <param name="messagingEnabled"> Whether SIMs can make, send, and receive SMS using Commands </param>
            <param name="voiceEnabled"> Whether SIMs can make and receive voice calls </param>
            <param name="nationalRoamingEnabled"> Whether SIMs can roam on networks other than the home network in the United
                                         States </param>
            <param name="internationalRoaming"> The services that SIMs capable of using GPRS/3G/4G/LTE data connectivity can
                                       use outside of the United States </param>
            <param name="nationalRoamingDataLimit"> The total data usage in Megabytes that the Network allows during one month
                                           on non-home networks in the United States </param>
            <param name="internationalRoamingDataLimit"> The total data usage (download and upload combined) in Megabytes that
                                                the Network allows during one month when roaming outside the United States
                                                </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.Update(Twilio.Rest.Wireless.V1.UpdateRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.UpdateAsync(Twilio.Rest.Wireless.V1.UpdateRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="options"> Update RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.Update(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.UpdateAsync(System.String,System.String,System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            update
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.Delete(Twilio.Rest.Wireless.V1.DeleteRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.DeleteAsync(Twilio.Rest.Wireless.V1.DeleteRatePlanOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="options"> Delete RatePlan parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            delete
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of RatePlan </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.RatePlanResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a RatePlanResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> RatePlanResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.DataEnabled">
            <summary>
            Whether SIMs can use GPRS/3G/4G/LTE data connectivity
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.DataMetering">
            <summary>
            The model used to meter data usage
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.DataLimit">
            <summary>
            The total data usage in Megabytes that the Network allows during one month on the home network
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.MessagingEnabled">
            <summary>
            Whether SIMs can make, send, and receive SMS using Commands
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.VoiceEnabled">
            <summary>
            Whether SIMs can make and receive voice calls
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.NationalRoamingEnabled">
            <summary>
            Whether SIMs can roam on networks other than the home network in the United States
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.NationalRoamingDataLimit">
            <summary>
            The total data usage in Megabytes that the Network allows during one month on non-home networks in the United States
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.InternationalRoaming">
            <summary>
            The services that SIMs capable of using GPRS/3G/4G/LTE data connectivity can use outside of the United States
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.InternationalRoamingDataLimit">
            <summary>
            The total data usage (download and upload combined) in Megabytes that the Network allows during one month when roaming outside the United States
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.DateCreated">
            <summary>
            The date when the resource was created, given as GMT in ISO 8601 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.DateUpdated">
            <summary>
            The date when the resource was last updated, given as GMT in ISO 8601 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.RatePlanResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.FetchSimOptions">
            <summary>
            Fetch a Sim resource from your account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.FetchSimOptions.PathSid">
            <summary>
            The SID that identifies the resource to fetch
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.FetchSimOptions.#ctor(System.String)">
            <summary>
            Construct a new FetchSimOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.FetchSimOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.ReadSimOptions">
            <summary>
            Retrieve a list of Sims from your account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadSimOptions.Status">
            <summary>
            Only return Sim resources with this status
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadSimOptions.Iccid">
            <summary>
            Only return Sim resources with this ICCID
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadSimOptions.RatePlan">
            <summary>
            Only return Sim resources with this Rate Plan
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadSimOptions.EId">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadSimOptions.SimRegistrationCode">
            <summary>
            Only return Sim resources with this registration code
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.ReadSimOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.UpdateSimOptions">
            <summary>
            Updates the given properties of a Sim resource from your account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.PathSid">
            <summary>
            The SID that identifies the resource to update
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.CallbackMethod">
            <summary>
            The HTTP method we use to call callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.CallbackUrl">
            <summary>
            The URL we call when the SIM has finished updating
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.FriendlyName">
            <summary>
            A string to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.RatePlan">
            <summary>
            The sid or unique_name of the RatePlan resource that this SIM should use
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.Status">
            <summary>
            The new status of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.CommandsCallbackMethod">
            <summary>
            The HTTP method we use to call commands_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.CommandsCallbackUrl">
            <summary>
            he URL we call when the SIM originates a Command
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.SmsFallbackMethod">
            <summary>
            The HTTP method we use to call sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.SmsFallbackUrl">
            <summary>
            The URL we call when an error occurs while retrieving or executing the TwiML requested from sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.SmsMethod">
            <summary>
            The HTTP method we use to call sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.SmsUrl">
            <summary>
            The URL we call when the SIM-connected device sends an SMS message that is not a Command
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.VoiceFallbackMethod">
            <summary>
            The HTTP method we use to call voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.VoiceFallbackUrl">
            <summary>
            The URL we call when an error occurs while retrieving or executing the TwiML requested from voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.VoiceMethod">
            <summary>
            The HTTP method we use when we call voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.VoiceUrl">
            <summary>
            The URL we call when the SIM-connected device makes a voice call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UpdateSimOptions.ResetStatus">
            <summary>
            Initiate a connectivity reset on a SIM
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UpdateSimOptions.#ctor(System.String)">
            <summary>
            Construct a new UpdateSimOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UpdateSimOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.DeleteSimOptions">
            <summary>
            Delete a Sim resource from your account.
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.DeleteSimOptions.PathSid">
            <summary>
            The SID that identifies the resource to delete
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.DeleteSimOptions.#ctor(System.String)">
            <summary>
            Construct a new DeleteSimOptions
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.DeleteSimOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.Fetch(Twilio.Rest.Wireless.V1.FetchSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Sim resource from your account.
            </summary>
            <param name="options"> Fetch Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.FetchAsync(Twilio.Rest.Wireless.V1.FetchSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Sim resource from your account.
            </summary>
            <param name="options"> Fetch Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.Fetch(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Sim resource from your account.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.FetchAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch a Sim resource from your account.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to fetch </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.Read(Twilio.Rest.Wireless.V1.ReadSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Sims from your account.
            </summary>
            <param name="options"> Read Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.ReadAsync(Twilio.Rest.Wireless.V1.ReadSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Sims from your account.
            </summary>
            <param name="options"> Read Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.Read(Twilio.Rest.Wireless.V1.SimResource.StatusEnum,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Sims from your account.
            </summary>
            <param name="status"> Only return Sim resources with this status </param>
            <param name="iccid"> Only return Sim resources with this ICCID </param>
            <param name="ratePlan"> Only return Sim resources with this Rate Plan </param>
            <param name="eId"> Deprecated </param>
            <param name="simRegistrationCode"> Only return Sim resources with this registration code </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.ReadAsync(Twilio.Rest.Wireless.V1.SimResource.StatusEnum,System.String,System.String,System.String,System.String,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Retrieve a list of Sims from your account.
            </summary>
            <param name="status"> Only return Sim resources with this status </param>
            <param name="iccid"> Only return Sim resources with this ICCID </param>
            <param name="ratePlan"> Only return Sim resources with this Rate Plan </param>
            <param name="eId"> Deprecated </param>
            <param name="simRegistrationCode"> Only return Sim resources with this registration code </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.NextPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.SimResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.SimResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.Update(Twilio.Rest.Wireless.V1.UpdateSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the given properties of a Sim resource from your account.
            </summary>
            <param name="options"> Update Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.UpdateAsync(Twilio.Rest.Wireless.V1.UpdateSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the given properties of a Sim resource from your account.
            </summary>
            <param name="options"> Update Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.Update(System.String,System.String,Twilio.Http.HttpMethod,System.Uri,System.String,System.String,Twilio.Rest.Wireless.V1.SimResource.StatusEnum,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Rest.Wireless.V1.SimResource.ResetStatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the given properties of a Sim resource from your account.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="callbackMethod"> The HTTP method we use to call callback_url </param>
            <param name="callbackUrl"> The URL we call when the SIM has finished updating </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="ratePlan"> The sid or unique_name of the RatePlan resource that this SIM should use </param>
            <param name="status"> The new status of the resource </param>
            <param name="commandsCallbackMethod"> The HTTP method we use to call commands_callback_url </param>
            <param name="commandsCallbackUrl"> he URL we call when the SIM originates a Command </param>
            <param name="smsFallbackMethod"> The HTTP method we use to call sms_fallback_url </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while retrieving or executing the TwiML
                                 requested from sms_url </param>
            <param name="smsMethod"> The HTTP method we use to call sms_url </param>
            <param name="smsUrl"> The URL we call when the SIM-connected device sends an SMS message that is not a Command
                         </param>
            <param name="voiceFallbackMethod"> The HTTP method we use to call voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we call when an error occurs while retrieving or executing the TwiML
                                   requested from voice_url </param>
            <param name="voiceMethod"> The HTTP method we use when we call voice_url </param>
            <param name="voiceUrl"> The URL we call when the SIM-connected device makes a voice call </param>
            <param name="resetStatus"> Initiate a connectivity reset on a SIM </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.UpdateAsync(System.String,System.String,Twilio.Http.HttpMethod,System.Uri,System.String,System.String,Twilio.Rest.Wireless.V1.SimResource.StatusEnum,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Rest.Wireless.V1.SimResource.ResetStatusEnum,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Updates the given properties of a Sim resource from your account.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to update </param>
            <param name="uniqueName"> An application-defined string that uniquely identifies the resource </param>
            <param name="callbackMethod"> The HTTP method we use to call callback_url </param>
            <param name="callbackUrl"> The URL we call when the SIM has finished updating </param>
            <param name="friendlyName"> A string to describe the resource </param>
            <param name="ratePlan"> The sid or unique_name of the RatePlan resource that this SIM should use </param>
            <param name="status"> The new status of the resource </param>
            <param name="commandsCallbackMethod"> The HTTP method we use to call commands_callback_url </param>
            <param name="commandsCallbackUrl"> he URL we call when the SIM originates a Command </param>
            <param name="smsFallbackMethod"> The HTTP method we use to call sms_fallback_url </param>
            <param name="smsFallbackUrl"> The URL we call when an error occurs while retrieving or executing the TwiML
                                 requested from sms_url </param>
            <param name="smsMethod"> The HTTP method we use to call sms_url </param>
            <param name="smsUrl"> The URL we call when the SIM-connected device sends an SMS message that is not a Command
                         </param>
            <param name="voiceFallbackMethod"> The HTTP method we use to call voice_fallback_url </param>
            <param name="voiceFallbackUrl"> The URL we call when an error occurs while retrieving or executing the TwiML
                                   requested from voice_url </param>
            <param name="voiceMethod"> The HTTP method we use when we call voice_url </param>
            <param name="voiceUrl"> The URL we call when the SIM-connected device makes a voice call </param>
            <param name="resetStatus"> Initiate a connectivity reset on a SIM </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.Delete(Twilio.Rest.Wireless.V1.DeleteSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Sim resource from your account.
            </summary>
            <param name="options"> Delete Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.DeleteAsync(Twilio.Rest.Wireless.V1.DeleteSimOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Sim resource from your account.
            </summary>
            <param name="options"> Delete Sim parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.Delete(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Sim resource from your account.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.DeleteAsync(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Delete a Sim resource from your account.
            </summary>
            <param name="pathSid"> The SID that identifies the resource to delete </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of Sim </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.SimResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a SimResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> SimResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.UniqueName">
            <summary>
            An application-defined string that uniquely identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.RatePlanSid">
            <summary>
            The SID of the RatePlan resource configured for this SIM
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.FriendlyName">
            <summary>
            The string that you assigned to describe the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.Iccid">
            <summary>
            The ICCID associated with the SIM
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.EId">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.Status">
            <summary>
            The status of the SIM
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.ResetStatus">
            <summary>
            The connectivity reset status of the SIM
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.CommandsCallbackUrl">
            <summary>
            The URL we call when the SIM originates a machine-to-machine Command
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.CommandsCallbackMethod">
            <summary>
            The HTTP method we use to call commands_callback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.SmsFallbackMethod">
            <summary>
            The HTTP method we use to call sms_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.SmsFallbackUrl">
            <summary>
            The URL we call when an error occurs while retrieving or executing the TwiML requested from the sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.SmsMethod">
            <summary>
            The HTTP method we use to call sms_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.SmsUrl">
            <summary>
            The URL we call when the SIM-connected device sends an SMS message that is not a Command
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.VoiceFallbackMethod">
            <summary>
            The HTTP method we use to call voice_fallback_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.VoiceFallbackUrl">
            <summary>
            The URL we call when an error occurs while retrieving or executing the TwiML requested from voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.VoiceMethod">
            <summary>
            The HTTP method we use to call voice_url
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.VoiceUrl">
            <summary>
            The URL we call when the SIM-connected device makes a voice call
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.DateCreated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was created
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.DateUpdated">
            <summary>
            The ISO 8601 date and time in GMT when the resource was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.Url">
            <summary>
            The absolute URL of the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.Links">
            <summary>
            The URLs of related subresources
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.SimResource.IpAddress">
            <summary>
            Deprecated
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.Sim.ReadDataSessionOptions">
            <summary>
            ReadDataSessionOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.ReadDataSessionOptions.PathSimSid">
            <summary>
            The SID of the Sim resource with the Data Sessions to read
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.ReadDataSessionOptions.End">
            <summary>
            The date that the record ended, given as GMT in ISO 8601 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.ReadDataSessionOptions.Start">
            <summary>
            The date that the Data Session started, given as GMT in ISO 8601 format
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.ReadDataSessionOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadDataSessionOptions
            </summary>
            <param name="pathSimSid"> The SID of the Sim resource with the Data Sessions to read </param>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.ReadDataSessionOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.Read(Twilio.Rest.Wireless.V1.Sim.ReadDataSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read DataSession parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DataSession </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.ReadAsync(Twilio.Rest.Wireless.V1.Sim.ReadDataSessionOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read DataSession parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DataSession </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.Read(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathSimSid"> The SID of the Sim resource with the Data Sessions to read </param>
            <param name="end"> The date that the record ended, given as GMT in ISO 8601 format </param>
            <param name="start"> The date that the Data Session started, given as GMT in ISO 8601 format </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of DataSession </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.ReadAsync(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathSimSid"> The SID of the Sim resource with the Data Sessions to read </param>
            <param name="end"> The date that the record ended, given as GMT in ISO 8601 format </param>
            <param name="start"> The date that the Data Session started, given as GMT in ISO 8601 format </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of DataSession </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.NextPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.Sim.DataSessionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.Sim.DataSessionResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a DataSessionResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> DataSessionResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.Sid">
            <summary>
            The unique string that identifies the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.SimSid">
            <summary>
            The SID of the Sim resource that the Data Session is for
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.RadioLink">
            <summary>
            The generation of wireless technology that the device was using
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.OperatorMcc">
            <summary>
            The 'mobile country code' is the unique ID of the home country where the Data Session took place
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.OperatorMnc">
            <summary>
            The 'mobile network code' is the unique ID specific to the mobile operator network where the Data Session took place
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.OperatorCountry">
            <summary>
            The three letter country code representing where the device's Data Session took place
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.OperatorName">
            <summary>
            The friendly name of the mobile operator network that the SIM-connected device is attached to
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.CellId">
            <summary>
            The unique ID of the cellular tower that the device was attached to at the moment when the Data Session was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.CellLocationEstimate">
            <summary>
            An object with the estimated location where the device's Data Session took place
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.PacketsUploaded">
            <summary>
            The number of packets uploaded by the device between the start time and when the Data Session was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.PacketsDownloaded">
            <summary>
            The number of packets downloaded by the device between the start time and when the Data Session was last updated
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.LastUpdated">
            <summary>
            The date that the resource was last updated, given as GMT in ISO 8601 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.Start">
            <summary>
            The date that the Data Session started, given as GMT in ISO 8601 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.End">
            <summary>
            The date that the record ended, given as GMT in ISO 8601 format
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.DataSessionResource.Imei">
            <summary>
            The unique ID of the device using the SIM to connect
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.Sim.ReadUsageRecordOptions">
            <summary>
            ReadUsageRecordOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.ReadUsageRecordOptions.PathSimSid">
            <summary>
            The SID of the Sim resource to read the usage from
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.ReadUsageRecordOptions.End">
            <summary>
            Only include usage that occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.ReadUsageRecordOptions.Start">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.ReadUsageRecordOptions.Granularity">
            <summary>
            The time-based grouping that results are aggregated by
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.ReadUsageRecordOptions.#ctor(System.String)">
            <summary>
            Construct a new ReadUsageRecordOptions
            </summary>
            <param name="pathSimSid"> The SID of the Sim resource to read the usage from </param>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.ReadUsageRecordOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.Read(Twilio.Rest.Wireless.V1.Sim.ReadUsageRecordOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read UsageRecord parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UsageRecord </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.ReadAsync(Twilio.Rest.Wireless.V1.Sim.ReadUsageRecordOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read UsageRecord parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UsageRecord </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.Read(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.GranularityEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathSimSid"> The SID of the Sim resource to read the usage from </param>
            <param name="end"> Only include usage that occurred on or before this date </param>
            <param name="start"> Only include usage that has occurred on or after this date </param>
            <param name="granularity"> The time-based grouping that results are aggregated by </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UsageRecord </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.ReadAsync(System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime},Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.GranularityEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="pathSimSid"> The SID of the Sim resource to read the usage from </param>
            <param name="end"> Only include usage that occurred on or before this date </param>
            <param name="start"> Only include usage that has occurred on or after this date </param>
            <param name="granularity"> The time-based grouping that results are aggregated by </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UsageRecord </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.NextPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.Sim.UsageRecordResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.Sim.UsageRecordResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UsageRecordResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UsageRecordResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.SimSid">
            <summary>
            The SID of the Sim resource that this Usage Record is for
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.Period">
            <summary>
            The time period for which the usage is reported
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.Commands">
            <summary>
            An object that describes the SIM's usage of Commands during the specified period
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.Sim.UsageRecordResource.Data">
            <summary>
            An object that describes the SIM's data usage during the specified period
            </summary>
        </member>
        <member name="T:Twilio.Rest.Wireless.V1.ReadUsageRecordOptions">
            <summary>
            ReadUsageRecordOptions
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadUsageRecordOptions.End">
            <summary>
            Only include usage that has occurred on or before this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadUsageRecordOptions.Start">
            <summary>
            Only include usage that has occurred on or after this date
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.ReadUsageRecordOptions.Granularity">
            <summary>
            The time-based grouping that results are aggregated by
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.ReadUsageRecordOptions.GetParams">
            <summary>
            Generate the necessary parameters
            </summary>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UsageRecordResource.Read(Twilio.Rest.Wireless.V1.ReadUsageRecordOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read UsageRecord parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UsageRecord </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UsageRecordResource.ReadAsync(Twilio.Rest.Wireless.V1.ReadUsageRecordOptions,Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="options"> Read UsageRecord parameters </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UsageRecord </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UsageRecordResource.Read(System.Nullable{System.DateTime},System.Nullable{System.DateTime},Twilio.Rest.Wireless.V1.UsageRecordResource.GranularityEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="end"> Only include usage that has occurred on or before this date </param>
            <param name="start"> Only include usage that has occurred on or after this date </param>
            <param name="granularity"> The time-based grouping that results are aggregated by </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> A single instance of UsageRecord </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UsageRecordResource.ReadAsync(System.Nullable{System.DateTime},System.Nullable{System.DateTime},Twilio.Rest.Wireless.V1.UsageRecordResource.GranularityEnum,System.Nullable{System.Int32},System.Nullable{System.Int64},Twilio.Clients.ITwilioRestClient)">
            <summary>
            read
            </summary>
            <param name="end"> Only include usage that has occurred on or before this date </param>
            <param name="start"> Only include usage that has occurred on or after this date </param>
            <param name="granularity"> The time-based grouping that results are aggregated by </param>
            <param name="pageSize"> Page size </param>
            <param name="limit"> Record limit </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> Task that resolves to A single instance of UsageRecord </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UsageRecordResource.GetPage(System.String,Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the target page of records
            </summary>
            <param name="targetUrl"> API-generated URL for the requested results page </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The target page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UsageRecordResource.NextPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.UsageRecordResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the next page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The next page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UsageRecordResource.PreviousPage(Twilio.Base.Page{Twilio.Rest.Wireless.V1.UsageRecordResource},Twilio.Clients.ITwilioRestClient)">
            <summary>
            Fetch the previous page of records
            </summary>
            <param name="page"> current page of records </param>
            <param name="client"> Client to make requests to Twilio </param>
            <returns> The previous page of records </returns>
        </member>
        <member name="M:Twilio.Rest.Wireless.V1.UsageRecordResource.FromJson(System.String)">
            <summary>
            Converts a JSON string into a UsageRecordResource object
            </summary>
            <param name="json"> Raw JSON string </param>
            <returns> UsageRecordResource object represented by the provided JSON </returns>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UsageRecordResource.AccountSid">
            <summary>
            The SID of the Account that created the resource
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UsageRecordResource.Period">
            <summary>
            The time period for which usage is reported
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UsageRecordResource.Commands">
            <summary>
            An object that describes the aggregated Commands usage for all SIMs during the specified period
            </summary>
        </member>
        <member name="P:Twilio.Rest.Wireless.V1.UsageRecordResource.Data">
            <summary>
            An object that describes the aggregated Data usage for all SIMs over the period
            </summary>
        </member>
        <member name="T:Twilio.Security.RequestValidator">
            <summary>
            Twilio request validator
            </summary>
        </member>
        <member name="M:Twilio.Security.RequestValidator.#ctor(System.String)">
            <summary>
            Create a new RequestValidator
            </summary>
            <param name="secret">Signing secret</param>
        </member>
        <member name="M:Twilio.Security.RequestValidator.Validate(System.String,System.Collections.Specialized.NameValueCollection,System.String)">
            <summary>
            Validate against a request
            </summary>
            <param name="url">Request URL</param>
            <param name="parameters">Request parameters</param>
            <param name="expected">Expected result</param>
            <returns>true if the signature matches the result; false otherwise</returns>
        </member>
        <member name="M:Twilio.Security.RequestValidator.Validate(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.String)">
            <summary>
            Validate against a request
            </summary>
            <param name="url">Request URL</param>
            <param name="parameters">Request parameters</param>
            <param name="expected">Expected result</param>
            <returns>true if the signature matches the result; false otherwise</returns>
        </member>
        <member name="T:Twilio.TwilioClient">
            <summary>
            Default Twilio Client
            </summary>
        </member>
        <member name="M:Twilio.TwilioClient.Init(System.String,System.String)">
            <summary>
            Initialize base client with username and password
            </summary>
            <param name="username">Auth username</param>
            <param name="password">Auth password</param>
        </member>
        <member name="M:Twilio.TwilioClient.Init(System.String,System.String,System.String)">
            <summary>
            Initialize base client with separate account SID
            </summary>
            <param name="username">Auth username</param>
            <param name="password">Auth password</param>
            <param name="accountSid">Account SID to use</param>
        </member>
        <member name="M:Twilio.TwilioClient.SetUsername(System.String)">
            <summary>
            Set the client username
            </summary>
            <param name="username">Auth username</param>
        </member>
        <member name="M:Twilio.TwilioClient.SetPassword(System.String)">
            <summary>
            Set the client password
            </summary>
            <param name="password">Auth password</param>
        </member>
        <member name="M:Twilio.TwilioClient.SetAccountSid(System.String)">
            <summary>
            Set the client Account SID
            </summary>
            <param name="accountSid">Client Account SID</param>
        </member>
        <member name="M:Twilio.TwilioClient.GetRestClient">
            <summary>
            Get the rest client
            </summary>
            <returns>The rest client</returns>
        </member>
        <member name="M:Twilio.TwilioClient.SetRestClient(Twilio.Clients.ITwilioRestClient)">
            <summary>
            Set the rest client
            </summary>
            <param name="restClient">Rest Client to use</param>
        </member>
        <member name="M:Twilio.TwilioClient.Invalidate">
            <summary>
            Clear out the Rest Client
            </summary>
        </member>
        <member name="M:Twilio.TwilioClient.ValidateSslCertificate">
            <summary>
            Validates that the Twilio Client can connect to api.twilio.com with
            a new SSL certificate posted at api.twilio.com:8443
            </summary>
        </member>
        <member name="T:Twilio.TwiML.FaxResponse">
            <summary>
            Response TwiML for Faxes
            </summary>
        </member>
        <member name="M:Twilio.TwiML.FaxResponse.#ctor">
            <summary>
            Create a new FaxResponse
            </summary>
        </member>
        <member name="M:Twilio.TwiML.FaxResponse.Receive(Twilio.TwiML.Fax.Receive)">
            <summary>
            Append a <Receive/> element as a child of this element
            </summary>
            <param name="receive"> A Receive instance. </param>
        </member>
        <member name="M:Twilio.TwiML.FaxResponse.Receive(System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new <Receive/> element and append it as a child of this element.
            </summary>
            <param name="action"> Receive action URL </param>
            <param name="method"> Receive action URL method </param>
        </member>
        <member name="M:Twilio.TwiML.FaxResponse.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.FaxResponse.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Fax.Receive">
            <summary>
            Receive TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Fax.Receive.Action">
            <summary>
            Receive action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Fax.Receive.Method">
            <summary>
            Receive action URL method
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Fax.Receive.#ctor(System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new Receive
            </summary>
            <param name="action"> Receive action URL </param>
            <param name="method"> Receive action URL method </param>
        </member>
        <member name="M:Twilio.TwiML.Fax.Receive.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Fax.Receive.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Fax.Receive.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.MessagingResponse">
            <summary>
            Response TwiML for Messages
            </summary>
        </member>
        <member name="M:Twilio.TwiML.MessagingResponse.#ctor">
            <summary>
            Create a new MessagingResponse
            </summary>
        </member>
        <member name="M:Twilio.TwiML.MessagingResponse.Message(Twilio.TwiML.Messaging.Message)">
            <summary>
            Append a <Message/> element as a child of this element
            </summary>
            <param name="message"> A Message instance. </param>
        </member>
        <member name="M:Twilio.TwiML.MessagingResponse.Message(System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri)">
            <summary>
            Create a new <Message/> element and append it as a child of this element.
            </summary>
            <param name="body"> Message Body, the body of the TwiML Element. </param>
            <param name="to"> Phone Number to send Message to. Also accepts stringified Types.PhoneNumber </param>
            <param name="from"> Phone Number to send Message from. Also accepts stringified Types.PhoneNumber </param>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL Method </param>
            <param name="statusCallback"> Status callback URL. Deprecated in favor of action. </param>
        </member>
        <member name="M:Twilio.TwiML.MessagingResponse.Redirect(Twilio.TwiML.Messaging.Redirect)">
            <summary>
            Append a <Redirect/> element as a child of this element
            </summary>
            <param name="redirect"> A Redirect instance. </param>
        </member>
        <member name="M:Twilio.TwiML.MessagingResponse.Redirect(System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new <Redirect/> element and append it as a child of this element.
            </summary>
            <param name="url"> Redirect URL, the body of the TwiML Element. </param>
            <param name="method"> Redirect URL method </param>
        </member>
        <member name="M:Twilio.TwiML.MessagingResponse.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.MessagingResponse.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Messaging.Body">
            <summary>
            Body TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Messaging.Body.Message">
            <summary>
            Message Body
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Body.#ctor(System.String)">
            <summary>
            Create a new Body
            </summary>
            <param name="message"> Message Body, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Body.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Body.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Body.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Messaging.Media">
            <summary>
            Media TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Messaging.Media.Url">
            <summary>
            Media URL
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Media.#ctor(System.Uri)">
            <summary>
            Create a new Media
            </summary>
            <param name="url"> Media URL, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Media.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Media.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Media.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Messaging.Message">
            <summary>
            Message TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Messaging.Message.BodyAttribute">
            <summary>
            Message Body
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Messaging.Message.To">
            <summary>
            Phone Number to send Message to
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Messaging.Message.From">
            <summary>
            Phone Number to send Message from
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Messaging.Message.Action">
            <summary>
            Action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Messaging.Message.Method">
            <summary>
            Action URL Method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Messaging.Message.StatusCallback">
            <summary>
            Status callback URL. Deprecated in favor of action.
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Message.#ctor(System.String,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri)">
            <summary>
            Create a new Message
            </summary>
            <param name="body"> Message Body, the body of the TwiML Element. </param>
            <param name="to"> Phone Number to send Message to. Also accepts stringified Types.PhoneNumber </param>
            <param name="from"> Phone Number to send Message from. Also accepts stringified Types.PhoneNumber </param>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL Method </param>
            <param name="statusCallback"> Status callback URL. Deprecated in favor of action. </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Message.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Message.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Message.Body(Twilio.TwiML.Messaging.Body)">
            <summary>
            Append a <Body/> element as a child of this element
            </summary>
            <param name="body"> A Body instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Message.Body(System.String)">
            <summary>
            Create a new <Body/> element and append it as a child of this element.
            </summary>
            <param name="message"> Message Body, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Message.Media(Twilio.TwiML.Messaging.Media)">
            <summary>
            Append a <Media/> element as a child of this element
            </summary>
            <param name="media"> A Media instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Message.Media(System.Uri)">
            <summary>
            Create a new <Media/> element and append it as a child of this element.
            </summary>
            <param name="url"> Media URL, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Message.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Message.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Messaging.Redirect">
            <summary>
            Redirect TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Messaging.Redirect.Url">
            <summary>
            Redirect URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Messaging.Redirect.Method">
            <summary>
            Redirect URL method
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Redirect.#ctor(System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new Redirect
            </summary>
            <param name="url"> Redirect URL, the body of the TwiML Element. </param>
            <param name="method"> Redirect URL method </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Redirect.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Redirect.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Redirect.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Messaging.Redirect.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.TwiML">
            <summary>
            Base class for all TwiML Objects.
            </summary>
        </member>
        <member name="P:Twilio.TwiML.TwiML.TagName">
            <summary>
            Tag name
            </summary>
        </member>
        <member name="P:Twilio.TwiML.TwiML.Children">
            <summary>
            Children elements
            </summary>
        </member>
        <member name="P:Twilio.TwiML.TwiML.Options">
            <summary>
            Additional tag attributes to set on the generated xml
            </summary>
        </member>
        <member name="F:Twilio.TwiML.TwiML.AttributeNameMapper">
            <summary>
            Attribute names to be transformed on the generated xml
            </summary>
        </member>
        <member name="M:Twilio.TwiML.TwiML.#ctor(System.String)">
            <summary>
            Base constructor to create any TwiML instance.
            </summary>
            <param name="tagName"> TwiML tag name </param>
        </member>
        <member name="M:Twilio.TwiML.TwiML.GetElementBody">
            <summary>
            Get the TwiML element body.
            </summary>
        </member>
        <member name="M:Twilio.TwiML.TwiML.GetElementAttributes">
            <summary>
            Get the TwiML element attributes.
            </summary>
        </member>
        <member name="M:Twilio.TwiML.TwiML.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.TwiML.Nest``1(``0)">
            <summary>
            Append a child TwiML element to this element returning the newly created element.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.TwiML.AddChild(System.String)">
            <summary>
            Add a generic child TwiML object
            </summary>
            <param name="tagName"> TwiML tag name </param>
        </member>
        <member name="M:Twilio.TwiML.TwiML.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="M:Twilio.TwiML.TwiML.GetOption(System.String)">
            <summary>
            Get freeform key-value attributes attached to this class
            </summary>
            <param name="key"> Option key </param>
        </member>
        <member name="M:Twilio.TwiML.TwiML.ToXml">
            <summary>
            Generate XElement from TwiML object
            </summary>
        </member>
        <member name="M:Twilio.TwiML.TwiML.ToString(System.Xml.Linq.SaveOptions)">
            <summary>
            Generate XML string from TwiML object
            </summary>
            <param name="formattingOptions"> Change generated string format. </param>
        </member>
        <member name="T:Twilio.TwiML.Utf8StringWriter">
            <summary>
            StringWriter which overrides default encoding to use UTF8.
            </summary>
        </member>
        <member name="T:Twilio.TwiML.Video.Room">
            <summary>
            Room TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Video.Room.Name">
            <summary>
            Room name
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Video.Room.#ctor(System.String)">
            <summary>
            Create a new Room
            </summary>
            <param name="name"> Room name, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Video.Room.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Video.Room.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Video.Room.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.VoiceResponse">
            <summary>
            Response TwiML for Voice
            </summary>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.#ctor">
            <summary>
            Create a new VoiceResponse
            </summary>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Connect(Twilio.TwiML.Voice.Connect)">
            <summary>
            Append a <Connect/> element as a child of this element
            </summary>
            <param name="connect"> A Connect instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Connect(System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new <Connect/> element and append it as a child of this element.
            </summary>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Dial(Twilio.TwiML.Voice.Dial)">
            <summary>
            Append a <Dial/> element as a child of this element
            </summary>
            <param name="dial"> A Dial instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Dial(System.String,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.String,Twilio.TwiML.Voice.Dial.RecordEnum,Twilio.TwiML.Voice.Dial.TrimEnum,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Dial.RecordingEventEnum},System.Nullable{System.Boolean},Twilio.TwiML.Voice.Dial.RingToneEnum)">
            <summary>
            Create a new <Dial/> element and append it as a child of this element.
            </summary>
            <param name="number"> Phone number to dial, the body of the TwiML Element. </param>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="timeout"> Time to wait for answer </param>
            <param name="hangupOnStar"> Hangup call on star press </param>
            <param name="timeLimit"> Max time length </param>
            <param name="callerId"> Caller ID to display </param>
            <param name="record"> Record the call </param>
            <param name="trim"> Trim the recording </param>
            <param name="recordingStatusCallback"> Recording status callback URL </param>
            <param name="recordingStatusCallbackMethod"> Recording status callback URL method </param>
            <param name="recordingStatusCallbackEvent"> Recording status callback events </param>
            <param name="answerOnBridge"> Preserve the ringing behavior of the inbound call until the Dialed call picks up
                                 </param>
            <param name="ringTone"> Ringtone allows you to override the ringback tone that Twilio will play back to the caller
                           while executing the Dial </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Echo(Twilio.TwiML.Voice.Echo)">
            <summary>
            Append a <Echo/> element as a child of this element
            </summary>
            <param name="echo"> A Echo instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Echo">
            <summary>
            Create a new <Echo/> element and append it as a child of this element.
            </summary>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Enqueue(Twilio.TwiML.Voice.Enqueue)">
            <summary>
            Append a <Enqueue/> element as a child of this element
            </summary>
            <param name="enqueue"> A Enqueue instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Enqueue(System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.String)">
            <summary>
            Create a new <Enqueue/> element and append it as a child of this element.
            </summary>
            <param name="name"> Friendly name, the body of the TwiML Element. </param>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="waitUrl"> Wait URL </param>
            <param name="waitUrlMethod"> Wait URL method </param>
            <param name="workflowSid"> TaskRouter Workflow SID </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Gather(Twilio.TwiML.Voice.Gather)">
            <summary>
            Append a <Gather/> element as a child of this element
            </summary>
            <param name="gather"> A Gather instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Gather(System.Collections.Generic.List{Twilio.TwiML.Voice.Gather.InputEnum},System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Nullable{System.Int32},System.Uri,Twilio.Http.HttpMethod,Twilio.TwiML.Voice.Gather.LanguageEnum,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
            <summary>
            Create a new <Gather/> element and append it as a child of this element.
            </summary>
            <param name="input"> Input type Twilio should accept </param>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="timeout"> Time to wait to gather input </param>
            <param name="speechTimeout"> Time to wait to gather speech input and it should be either auto or a positive
                                integer. </param>
            <param name="maxSpeechTime"> Max allowed time for speech input </param>
            <param name="profanityFilter"> Profanity Filter on speech </param>
            <param name="finishOnKey"> Finish gather on key </param>
            <param name="numDigits"> Number of digits to collect </param>
            <param name="partialResultCallback"> Partial result callback URL </param>
            <param name="partialResultCallbackMethod"> Partial result callback URL method </param>
            <param name="language"> Language to use </param>
            <param name="hints"> Speech recognition hints </param>
            <param name="bargeIn"> Stop playing media upon speech </param>
            <param name="debug"> Allow debug for gather </param>
            <param name="actionOnEmptyResult"> Force webhook to the action URL event if there is no input </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Hangup(Twilio.TwiML.Voice.Hangup)">
            <summary>
            Append a <Hangup/> element as a child of this element
            </summary>
            <param name="hangup"> A Hangup instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Hangup">
            <summary>
            Create a new <Hangup/> element and append it as a child of this element.
            </summary>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Leave(Twilio.TwiML.Voice.Leave)">
            <summary>
            Append a <Leave/> element as a child of this element
            </summary>
            <param name="leave"> A Leave instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Leave">
            <summary>
            Create a new <Leave/> element and append it as a child of this element.
            </summary>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Pause(Twilio.TwiML.Voice.Pause)">
            <summary>
            Append a <Pause/> element as a child of this element
            </summary>
            <param name="pause"> A Pause instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Pause(System.Nullable{System.Int32})">
            <summary>
            Create a new <Pause/> element and append it as a child of this element.
            </summary>
            <param name="length"> Length in seconds to pause </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Play(Twilio.TwiML.Voice.Play)">
            <summary>
            Append a <Play/> element as a child of this element
            </summary>
            <param name="play"> A Play instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Play(System.Uri,System.Nullable{System.Int32},System.String)">
            <summary>
            Create a new <Play/> element and append it as a child of this element.
            </summary>
            <param name="url"> Media URL, the body of the TwiML Element. </param>
            <param name="loop"> Times to loop media </param>
            <param name="digits"> Play DTMF tones for digits </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Queue(Twilio.TwiML.Voice.Queue)">
            <summary>
            Append a <Queue/> element as a child of this element
            </summary>
            <param name="queue"> A Queue instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Queue(System.String,System.Uri,Twilio.Http.HttpMethod,System.String,System.String)">
            <summary>
            Create a new <Queue/> element and append it as a child of this element.
            </summary>
            <param name="name"> Queue name, the body of the TwiML Element. </param>
            <param name="url"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="reservationSid"> TaskRouter Reservation SID </param>
            <param name="postWorkActivitySid"> TaskRouter Activity SID </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Record(Twilio.TwiML.Voice.Record)">
            <summary>
            Append a <Record/> element as a child of this element
            </summary>
            <param name="record"> A Record instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Record(System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.TwiML.Voice.Record.TrimEnum,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Record.RecordingEventEnum},System.Nullable{System.Boolean},System.Uri)">
            <summary>
            Create a new <Record/> element and append it as a child of this element.
            </summary>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="timeout"> Timeout to begin recording </param>
            <param name="finishOnKey"> Finish recording on key </param>
            <param name="maxLength"> Max time to record in seconds </param>
            <param name="playBeep"> Play beep </param>
            <param name="trim"> Trim the recording </param>
            <param name="recordingStatusCallback"> Status callback URL </param>
            <param name="recordingStatusCallbackMethod"> Status callback URL method </param>
            <param name="recordingStatusCallbackEvent"> Recording status callback events </param>
            <param name="transcribe"> Transcribe the recording </param>
            <param name="transcribeCallback"> Transcribe callback URL </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Redirect(Twilio.TwiML.Voice.Redirect)">
            <summary>
            Append a <Redirect/> element as a child of this element
            </summary>
            <param name="redirect"> A Redirect instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Redirect(System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new <Redirect/> element and append it as a child of this element.
            </summary>
            <param name="url"> Redirect URL, the body of the TwiML Element. </param>
            <param name="method"> Redirect URL method </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Reject(Twilio.TwiML.Voice.Reject)">
            <summary>
            Append a <Reject/> element as a child of this element
            </summary>
            <param name="reject"> A Reject instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Reject(Twilio.TwiML.Voice.Reject.ReasonEnum)">
            <summary>
            Create a new <Reject/> element and append it as a child of this element.
            </summary>
            <param name="reason"> Rejection reason </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Say(Twilio.TwiML.Voice.Say)">
            <summary>
            Append a <Say/> element as a child of this element
            </summary>
            <param name="say"> A Say instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Say(System.String,Twilio.TwiML.Voice.Say.VoiceEnum,System.Nullable{System.Int32},Twilio.TwiML.Voice.Say.LanguageEnum)">
            <summary>
            Create a new <Say/> element and append it as a child of this element.
            </summary>
            <param name="message"> Message to say, the body of the TwiML Element. </param>
            <param name="voice"> Voice to use </param>
            <param name="loop"> Times to loop message </param>
            <param name="language"> Message langauge </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Sms(Twilio.TwiML.Voice.Sms)">
            <summary>
            Append a <Sms/> element as a child of this element
            </summary>
            <param name="sms"> A Sms instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Sms(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.Uri,Twilio.Http.HttpMethod,System.Uri)">
            <summary>
            Create a new <Sms/> element and append it as a child of this element.
            </summary>
            <param name="message"> Message body, the body of the TwiML Element. </param>
            <param name="to"> Number to send message to </param>
            <param name="from"> Number to send message from </param>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="statusCallback"> Status callback URL </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Pay(Twilio.TwiML.Voice.Pay)">
            <summary>
            Append a <Pay/> element as a child of this element
            </summary>
            <param name="pay"> A Pay instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Pay(Twilio.TwiML.Voice.Pay.InputEnum,System.Uri,Twilio.TwiML.Voice.Pay.BankAccountTypeEnum,System.Uri,Twilio.TwiML.Voice.Pay.StatusCallbackMethodEnum,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Nullable{System.Int32},System.String,Twilio.TwiML.Voice.Pay.PaymentMethodEnum,Twilio.TwiML.Voice.Pay.TokenTypeEnum,System.String,System.String,System.String,System.Collections.Generic.List{Twilio.TwiML.Voice.Pay.ValidCardTypesEnum},Twilio.TwiML.Voice.Pay.LanguageEnum)">
            <summary>
            Create a new <Pay/> element and append it as a child of this element.
            </summary>
            <param name="input"> Input type Twilio should accept </param>
            <param name="action"> Action URL </param>
            <param name="bankAccountType"> Bank account type for ach transactions. If set, payment method attribute must be
                                  provided and value should be set to ach-debit. defaults to consumer-checking </param>
            <param name="statusCallback"> Status callback URL </param>
            <param name="statusCallbackMethod"> Status callback method </param>
            <param name="timeout"> Time to wait to gather input </param>
            <param name="maxAttempts"> Maximum number of allowed retries when gathering input </param>
            <param name="securityCode"> Prompt for security code </param>
            <param name="postalCode"> Prompt for postal code and it should be true/false or default postal code </param>
            <param name="minPostalCodeLength"> Prompt for minimum postal code length </param>
            <param name="paymentConnector"> Unique name for payment connector </param>
            <param name="paymentMethod"> Payment method to be used. defaults to credit-card </param>
            <param name="tokenType"> Type of token </param>
            <param name="chargeAmount"> Amount to process. If value is greater than 0 then make the payment else create a
                               payment token </param>
            <param name="currency"> Currency of the amount attribute </param>
            <param name="description"> Details regarding the payment </param>
            <param name="validCardTypes"> Comma separated accepted card types </param>
            <param name="language"> Language to use </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Prompt(Twilio.TwiML.Voice.Prompt)">
            <summary>
            Append a <Prompt/> element as a child of this element
            </summary>
            <param name="prompt"> A Prompt instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Prompt(Twilio.TwiML.Voice.Prompt.ForEnum,System.Collections.Generic.List{Twilio.TwiML.Voice.Prompt.ErrorTypeEnum},System.Collections.Generic.List{Twilio.TwiML.Voice.Prompt.CardTypeEnum},System.Collections.Generic.List{System.Int32})">
            <summary>
            Create a new <Prompt/> element and append it as a child of this element.
            </summary>
            <param name="for_"> Name of the payment source data element </param>
            <param name="errorType"> Type of error </param>
            <param name="cardType"> Type of the credit card </param>
            <param name="attempt"> Current attempt count </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Start(Twilio.TwiML.Voice.Start)">
            <summary>
            Append a <Start/> element as a child of this element
            </summary>
            <param name="start"> A Start instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Start(System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new <Start/> element and append it as a child of this element.
            </summary>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Stop(Twilio.TwiML.Voice.Stop)">
            <summary>
            Append a <Stop/> element as a child of this element
            </summary>
            <param name="stop"> A Stop instance. </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Stop">
            <summary>
            Create a new <Stop/> element and append it as a child of this element.
            </summary>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.VoiceResponse.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Autopilot">
            <summary>
            Autopilot TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Autopilot.Name">
            <summary>
            Autopilot assistant sid or unique name
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Autopilot.#ctor(System.String)">
            <summary>
            Create a new Autopilot
            </summary>
            <param name="name"> Autopilot assistant sid or unique name, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Autopilot.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Autopilot.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Autopilot.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Client">
            <summary>
            Client TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Client.IdentityAttribute">
            <summary>
            Client identity
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Client.Url">
            <summary>
            Client URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Client.Method">
            <summary>
            Client URL Method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Client.StatusCallbackEvent">
            <summary>
            Events to trigger status callback
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Client.StatusCallback">
            <summary>
            Status Callback URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Client.StatusCallbackMethod">
            <summary>
            Status Callback URL Method
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Client.#ctor(System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Client.EventEnum},System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new Client
            </summary>
            <param name="identity"> Client identity, the body of the TwiML Element. </param>
            <param name="url"> Client URL </param>
            <param name="method"> Client URL Method </param>
            <param name="statusCallbackEvent"> Events to trigger status callback </param>
            <param name="statusCallback"> Status Callback URL </param>
            <param name="statusCallbackMethod"> Status Callback URL Method </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Client.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Client.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Client.Identity(Twilio.TwiML.Voice.Identity)">
            <summary>
            Append a <Identity/> element as a child of this element
            </summary>
            <param name="identity"> A Identity instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Client.Identity(System.String)">
            <summary>
            Create a new <Identity/> element and append it as a child of this element.
            </summary>
            <param name="clientIdentity"> Identity of the client to dial, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Client.Parameter(Twilio.TwiML.Voice.Parameter)">
            <summary>
            Append a <Parameter/> element as a child of this element
            </summary>
            <param name="parameter"> A Parameter instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Client.Parameter(System.String,System.String)">
            <summary>
            Create a new <Parameter/> element and append it as a child of this element.
            </summary>
            <param name="name"> The name of the custom parameter </param>
            <param name="value"> The value of the custom parameter </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Client.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Client.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Conference">
            <summary>
            Conference TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.Name">
            <summary>
            Conference name
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.Muted">
            <summary>
            Join the conference muted
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.Beep">
            <summary>
            Play beep when joining
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.StartConferenceOnEnter">
            <summary>
            Start the conference on enter
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.EndConferenceOnExit">
            <summary>
            End the conferenceon exit
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.WaitUrl">
            <summary>
            Wait URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.WaitMethod">
            <summary>
            Wait URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.MaxParticipants">
            <summary>
            Maximum number of participants
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.Record">
            <summary>
            Record the conference
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.Region">
            <summary>
            Conference region
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.Whisper">
            <summary>
            Call whisper
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.Trim">
            <summary>
            Trim the conference recording
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.StatusCallbackEvent">
            <summary>
            Events to call status callback URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.StatusCallback">
            <summary>
            Status callback URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.StatusCallbackMethod">
            <summary>
            Status callback URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.RecordingStatusCallback">
            <summary>
            Recording status callback URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.RecordingStatusCallbackMethod">
            <summary>
            Recording status callback URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.RecordingStatusCallbackEvent">
            <summary>
            Recording status callback events
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Conference.EventCallbackUrl">
            <summary>
            Event callback URL
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Conference.#ctor(System.String,System.Nullable{System.Boolean},Twilio.TwiML.Voice.Conference.BeepEnum,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},Twilio.TwiML.Voice.Conference.RecordEnum,Twilio.TwiML.Voice.Conference.RegionEnum,System.String,Twilio.TwiML.Voice.Conference.TrimEnum,System.Collections.Generic.List{Twilio.TwiML.Voice.Conference.EventEnum},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Conference.RecordingEventEnum},System.Uri)">
            <summary>
            Create a new Conference
            </summary>
            <param name="name"> Conference name, the body of the TwiML Element. </param>
            <param name="muted"> Join the conference muted </param>
            <param name="beep"> Play beep when joining </param>
            <param name="startConferenceOnEnter"> Start the conference on enter </param>
            <param name="endConferenceOnExit"> End the conferenceon exit </param>
            <param name="waitUrl"> Wait URL </param>
            <param name="waitMethod"> Wait URL method </param>
            <param name="maxParticipants"> Maximum number of participants </param>
            <param name="record"> Record the conference </param>
            <param name="region"> Conference region </param>
            <param name="whisper"> Call whisper </param>
            <param name="trim"> Trim the conference recording </param>
            <param name="statusCallbackEvent"> Events to call status callback URL </param>
            <param name="statusCallback"> Status callback URL </param>
            <param name="statusCallbackMethod"> Status callback URL method </param>
            <param name="recordingStatusCallback"> Recording status callback URL </param>
            <param name="recordingStatusCallbackMethod"> Recording status callback URL method </param>
            <param name="recordingStatusCallbackEvent"> Recording status callback events </param>
            <param name="eventCallbackUrl"> Event callback URL </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Conference.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Conference.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Conference.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Conference.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Connect">
            <summary>
            Connect TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Connect.Action">
            <summary>
            Action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Connect.Method">
            <summary>
            Action URL method
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Connect.#ctor(System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new Connect
            </summary>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Connect.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Connect.Room(Twilio.TwiML.Voice.Room)">
            <summary>
            Append a <Room/> element as a child of this element
            </summary>
            <param name="room"> A Room instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Connect.Room(System.String,System.String)">
            <summary>
            Create a new <Room/> element and append it as a child of this element.
            </summary>
            <param name="name"> Room name, the body of the TwiML Element. </param>
            <param name="participantIdentity"> Participant identity when connecting to the Room </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Connect.Autopilot(Twilio.TwiML.Voice.Autopilot)">
            <summary>
            Append a <Autopilot/> element as a child of this element
            </summary>
            <param name="autopilot"> A Autopilot instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Connect.Autopilot(System.String)">
            <summary>
            Create a new <Autopilot/> element and append it as a child of this element.
            </summary>
            <param name="name"> Autopilot assistant sid or unique name, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Connect.Stream(Twilio.TwiML.Voice.Stream)">
            <summary>
            Append a <Stream/> element as a child of this element
            </summary>
            <param name="stream"> A Stream instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Connect.Stream(System.String,System.String,System.String,Twilio.TwiML.Voice.Stream.TrackEnum)">
            <summary>
            Create a new <Stream/> element and append it as a child of this element.
            </summary>
            <param name="name"> Friendly name given to the Stream </param>
            <param name="connectorName"> Unique name for Stream Connector </param>
            <param name="url"> URL of the remote service where the Stream is routed </param>
            <param name="track"> Track to be streamed to remote service </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Connect.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Connect.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Dial">
            <summary>
            Dial TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.NumberAttribute">
            <summary>
            Phone number to dial
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.Action">
            <summary>
            Action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.Method">
            <summary>
            Action URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.Timeout">
            <summary>
            Time to wait for answer
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.HangupOnStar">
            <summary>
            Hangup call on star press
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.TimeLimit">
            <summary>
            Max time length
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.CallerId">
            <summary>
            Caller ID to display
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.Record">
            <summary>
            Record the call
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.Trim">
            <summary>
            Trim the recording
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.RecordingStatusCallback">
            <summary>
            Recording status callback URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.RecordingStatusCallbackMethod">
            <summary>
            Recording status callback URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.RecordingStatusCallbackEvent">
            <summary>
            Recording status callback events
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.AnswerOnBridge">
            <summary>
            Preserve the ringing behavior of the inbound call until the Dialed call picks up
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Dial.RingTone">
            <summary>
            Ringtone allows you to override the ringback tone that Twilio will play back to the caller while executing the Dial
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.#ctor(System.String,System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.Nullable{System.Int32},System.String,Twilio.TwiML.Voice.Dial.RecordEnum,Twilio.TwiML.Voice.Dial.TrimEnum,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Dial.RecordingEventEnum},System.Nullable{System.Boolean},Twilio.TwiML.Voice.Dial.RingToneEnum)">
            <summary>
            Create a new Dial
            </summary>
            <param name="number"> Phone number to dial, the body of the TwiML Element. </param>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="timeout"> Time to wait for answer </param>
            <param name="hangupOnStar"> Hangup call on star press </param>
            <param name="timeLimit"> Max time length </param>
            <param name="callerId"> Caller ID to display </param>
            <param name="record"> Record the call </param>
            <param name="trim"> Trim the recording </param>
            <param name="recordingStatusCallback"> Recording status callback URL </param>
            <param name="recordingStatusCallbackMethod"> Recording status callback URL method </param>
            <param name="recordingStatusCallbackEvent"> Recording status callback events </param>
            <param name="answerOnBridge"> Preserve the ringing behavior of the inbound call until the Dialed call picks up
                                 </param>
            <param name="ringTone"> Ringtone allows you to override the ringback tone that Twilio will play back to the caller
                           while executing the Dial </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Client(Twilio.TwiML.Voice.Client)">
            <summary>
            Append a <Client/> element as a child of this element
            </summary>
            <param name="client"> A Client instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Client(System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Client.EventEnum},System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new <Client/> element and append it as a child of this element.
            </summary>
            <param name="identity"> Client identity, the body of the TwiML Element. </param>
            <param name="url"> Client URL </param>
            <param name="method"> Client URL Method </param>
            <param name="statusCallbackEvent"> Events to trigger status callback </param>
            <param name="statusCallback"> Status Callback URL </param>
            <param name="statusCallbackMethod"> Status Callback URL Method </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Conference(Twilio.TwiML.Voice.Conference)">
            <summary>
            Append a <Conference/> element as a child of this element
            </summary>
            <param name="conference"> A Conference instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Conference(System.String,System.Nullable{System.Boolean},Twilio.TwiML.Voice.Conference.BeepEnum,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},Twilio.TwiML.Voice.Conference.RecordEnum,Twilio.TwiML.Voice.Conference.RegionEnum,System.String,Twilio.TwiML.Voice.Conference.TrimEnum,System.Collections.Generic.List{Twilio.TwiML.Voice.Conference.EventEnum},System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Conference.RecordingEventEnum},System.Uri)">
            <summary>
            Create a new <Conference/> element and append it as a child of this element.
            </summary>
            <param name="name"> Conference name, the body of the TwiML Element. </param>
            <param name="muted"> Join the conference muted </param>
            <param name="beep"> Play beep when joining </param>
            <param name="startConferenceOnEnter"> Start the conference on enter </param>
            <param name="endConferenceOnExit"> End the conferenceon exit </param>
            <param name="waitUrl"> Wait URL </param>
            <param name="waitMethod"> Wait URL method </param>
            <param name="maxParticipants"> Maximum number of participants </param>
            <param name="record"> Record the conference </param>
            <param name="region"> Conference region </param>
            <param name="whisper"> Call whisper </param>
            <param name="trim"> Trim the conference recording </param>
            <param name="statusCallbackEvent"> Events to call status callback URL </param>
            <param name="statusCallback"> Status callback URL </param>
            <param name="statusCallbackMethod"> Status callback URL method </param>
            <param name="recordingStatusCallback"> Recording status callback URL </param>
            <param name="recordingStatusCallbackMethod"> Recording status callback URL method </param>
            <param name="recordingStatusCallbackEvent"> Recording status callback events </param>
            <param name="eventCallbackUrl"> Event callback URL </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Number(Twilio.TwiML.Voice.Number)">
            <summary>
            Append a <Number/> element as a child of this element
            </summary>
            <param name="number"> A Number instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Number(Twilio.Types.PhoneNumber,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Number.EventEnum},System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new <Number/> element and append it as a child of this element.
            </summary>
            <param name="phoneNumber"> Phone Number to dial, the body of the TwiML Element. </param>
            <param name="sendDigits"> DTMF tones to play when the call is answered </param>
            <param name="url"> TwiML URL </param>
            <param name="method"> TwiML URL method </param>
            <param name="statusCallbackEvent"> Events to call status callback </param>
            <param name="statusCallback"> Status callback URL </param>
            <param name="statusCallbackMethod"> Status callback URL method </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Queue(Twilio.TwiML.Voice.Queue)">
            <summary>
            Append a <Queue/> element as a child of this element
            </summary>
            <param name="queue"> A Queue instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Queue(System.String,System.Uri,Twilio.Http.HttpMethod,System.String,System.String)">
            <summary>
            Create a new <Queue/> element and append it as a child of this element.
            </summary>
            <param name="name"> Queue name, the body of the TwiML Element. </param>
            <param name="url"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="reservationSid"> TaskRouter Reservation SID </param>
            <param name="postWorkActivitySid"> TaskRouter Activity SID </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Sim(Twilio.TwiML.Voice.Sim)">
            <summary>
            Append a <Sim/> element as a child of this element
            </summary>
            <param name="sim"> A Sim instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Sim(System.String)">
            <summary>
            Create a new <Sim/> element and append it as a child of this element.
            </summary>
            <param name="simSid"> SIM SID, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Sip(Twilio.TwiML.Voice.Sip)">
            <summary>
            Append a <Sip/> element as a child of this element
            </summary>
            <param name="sip"> A Sip instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Sip(System.Uri,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Sip.EventEnum},System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new <Sip/> element and append it as a child of this element.
            </summary>
            <param name="sipUrl"> SIP URL, the body of the TwiML Element. </param>
            <param name="username"> SIP Username </param>
            <param name="password"> SIP Password </param>
            <param name="url"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="statusCallbackEvent"> Status callback events </param>
            <param name="statusCallback"> Status callback URL </param>
            <param name="statusCallbackMethod"> Status callback URL method </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Dial.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Echo">
            <summary>
            Echo TwiML Verb
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Echo.#ctor">
            <summary>
            Create a new Echo
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Echo.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Echo.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Enqueue">
            <summary>
            Enqueue TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Enqueue.Name">
            <summary>
            Friendly name
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Enqueue.Action">
            <summary>
            Action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Enqueue.Method">
            <summary>
            Action URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Enqueue.WaitUrl">
            <summary>
            Wait URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Enqueue.WaitUrlMethod">
            <summary>
            Wait URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Enqueue.WorkflowSid">
            <summary>
            TaskRouter Workflow SID
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Enqueue.#ctor(System.String,System.Uri,Twilio.Http.HttpMethod,System.Uri,Twilio.Http.HttpMethod,System.String)">
            <summary>
            Create a new Enqueue
            </summary>
            <param name="name"> Friendly name, the body of the TwiML Element. </param>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="waitUrl"> Wait URL </param>
            <param name="waitUrlMethod"> Wait URL method </param>
            <param name="workflowSid"> TaskRouter Workflow SID </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Enqueue.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Enqueue.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Enqueue.Task(Twilio.TwiML.Voice.Task)">
            <summary>
            Append a <Task/> element as a child of this element
            </summary>
            <param name="task"> A Task instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Enqueue.Task(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Create a new <Task/> element and append it as a child of this element.
            </summary>
            <param name="body"> TaskRouter task attributes, the body of the TwiML Element. Also accepts stringified object
                       </param>
            <param name="priority"> Task priority </param>
            <param name="timeout"> Timeout associated with task </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Enqueue.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Enqueue.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Gather">
            <summary>
            Gather TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.Input">
            <summary>
            Input type Twilio should accept
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.Action">
            <summary>
            Action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.Method">
            <summary>
            Action URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.Timeout">
            <summary>
            Time to wait to gather input
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.SpeechTimeout">
            <summary>
            Time to wait to gather speech input and it should be either auto or a positive integer.
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.MaxSpeechTime">
            <summary>
            Max allowed time for speech input
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.ProfanityFilter">
            <summary>
            Profanity Filter on speech
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.FinishOnKey">
            <summary>
            Finish gather on key
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.NumDigits">
            <summary>
            Number of digits to collect
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.PartialResultCallback">
            <summary>
            Partial result callback URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.PartialResultCallbackMethod">
            <summary>
            Partial result callback URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.Language">
            <summary>
            Language to use
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.Hints">
            <summary>
            Speech recognition hints
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.BargeIn">
            <summary>
            Stop playing media upon speech
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.Debug">
            <summary>
            Allow debug for gather
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Gather.ActionOnEmptyResult">
            <summary>
            Force webhook to the action URL event if there is no input
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Gather.#ctor(System.Collections.Generic.List{Twilio.TwiML.Voice.Gather.InputEnum},System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Nullable{System.Int32},System.Uri,Twilio.Http.HttpMethod,Twilio.TwiML.Voice.Gather.LanguageEnum,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean})">
            <summary>
            Create a new Gather
            </summary>
            <param name="input"> Input type Twilio should accept </param>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="timeout"> Time to wait to gather input </param>
            <param name="speechTimeout"> Time to wait to gather speech input and it should be either auto or a positive
                                integer. </param>
            <param name="maxSpeechTime"> Max allowed time for speech input </param>
            <param name="profanityFilter"> Profanity Filter on speech </param>
            <param name="finishOnKey"> Finish gather on key </param>
            <param name="numDigits"> Number of digits to collect </param>
            <param name="partialResultCallback"> Partial result callback URL </param>
            <param name="partialResultCallbackMethod"> Partial result callback URL method </param>
            <param name="language"> Language to use </param>
            <param name="hints"> Speech recognition hints </param>
            <param name="bargeIn"> Stop playing media upon speech </param>
            <param name="debug"> Allow debug for gather </param>
            <param name="actionOnEmptyResult"> Force webhook to the action URL event if there is no input </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Gather.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Gather.Say(Twilio.TwiML.Voice.Say)">
            <summary>
            Append a <Say/> element as a child of this element
            </summary>
            <param name="say"> A Say instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Gather.Say(System.String,Twilio.TwiML.Voice.Say.VoiceEnum,System.Nullable{System.Int32},Twilio.TwiML.Voice.Say.LanguageEnum)">
            <summary>
            Create a new <Say/> element and append it as a child of this element.
            </summary>
            <param name="message"> Message to say, the body of the TwiML Element. </param>
            <param name="voice"> Voice to use </param>
            <param name="loop"> Times to loop message </param>
            <param name="language"> Message langauge </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Gather.Pause(Twilio.TwiML.Voice.Pause)">
            <summary>
            Append a <Pause/> element as a child of this element
            </summary>
            <param name="pause"> A Pause instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Gather.Pause(System.Nullable{System.Int32})">
            <summary>
            Create a new <Pause/> element and append it as a child of this element.
            </summary>
            <param name="length"> Length in seconds to pause </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Gather.Play(Twilio.TwiML.Voice.Play)">
            <summary>
            Append a <Play/> element as a child of this element
            </summary>
            <param name="play"> A Play instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Gather.Play(System.Uri,System.Nullable{System.Int32},System.String)">
            <summary>
            Create a new <Play/> element and append it as a child of this element.
            </summary>
            <param name="url"> Media URL, the body of the TwiML Element. </param>
            <param name="loop"> Times to loop media </param>
            <param name="digits"> Play DTMF tones for digits </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Gather.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Gather.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Hangup">
            <summary>
            Hangup TwiML Verb
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Hangup.#ctor">
            <summary>
            Create a new Hangup
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Hangup.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Hangup.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Identity">
            <summary>
            Identity TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Identity.ClientIdentity">
            <summary>
            Identity of the client to dial
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Identity.#ctor(System.String)">
            <summary>
            Create a new Identity
            </summary>
            <param name="clientIdentity"> Identity of the client to dial, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Identity.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Identity.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Identity.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Leave">
            <summary>
            Leave TwiML Verb
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Leave.#ctor">
            <summary>
            Create a new Leave
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Leave.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Leave.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Number">
            <summary>
            Number TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Number.PhoneNumber">
            <summary>
            Phone Number to dial
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Number.SendDigits">
            <summary>
            DTMF tones to play when the call is answered
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Number.Url">
            <summary>
            TwiML URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Number.Method">
            <summary>
            TwiML URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Number.StatusCallbackEvent">
            <summary>
            Events to call status callback
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Number.StatusCallback">
            <summary>
            Status callback URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Number.StatusCallbackMethod">
            <summary>
            Status callback URL method
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Number.#ctor(Twilio.Types.PhoneNumber,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Number.EventEnum},System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new Number
            </summary>
            <param name="phoneNumber"> Phone Number to dial, the body of the TwiML Element. </param>
            <param name="sendDigits"> DTMF tones to play when the call is answered </param>
            <param name="url"> TwiML URL </param>
            <param name="method"> TwiML URL method </param>
            <param name="statusCallbackEvent"> Events to call status callback </param>
            <param name="statusCallback"> Status callback URL </param>
            <param name="statusCallbackMethod"> Status callback URL method </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Number.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Number.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Number.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Number.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Parameter">
            <summary>
            Parameter TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Parameter.Name">
            <summary>
            The name of the custom parameter
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Parameter.Value">
            <summary>
            The value of the custom parameter
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Parameter.#ctor(System.String,System.String)">
            <summary>
            Create a new Parameter
            </summary>
            <param name="name"> The name of the custom parameter </param>
            <param name="value"> The value of the custom parameter </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Parameter.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Parameter.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Parameter.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Pause">
            <summary>
            Pause TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pause.Length">
            <summary>
            Length in seconds to pause
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pause.#ctor(System.Nullable{System.Int32})">
            <summary>
            Create a new Pause
            </summary>
            <param name="length"> Length in seconds to pause </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pause.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pause.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pause.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Pay">
            <summary>
            Pay Twiml Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.Input">
            <summary>
            Input type Twilio should accept
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.Action">
            <summary>
            Action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.BankAccountType">
            <summary>
            Bank account type for ach transactions. If set, payment method attribute must be provided and value should be set to ach-debit. defaults to consumer-checking
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.StatusCallback">
            <summary>
            Status callback URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.StatusCallbackMethod">
            <summary>
            Status callback method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.Timeout">
            <summary>
            Time to wait to gather input
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.MaxAttempts">
            <summary>
            Maximum number of allowed retries when gathering input
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.SecurityCode">
            <summary>
            Prompt for security code
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.PostalCode">
            <summary>
            Prompt for postal code and it should be true/false or default postal code
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.MinPostalCodeLength">
            <summary>
            Prompt for minimum postal code length
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.PaymentConnector">
            <summary>
            Unique name for payment connector
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.PaymentMethod">
            <summary>
            Payment method to be used. defaults to credit-card
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.TokenType">
            <summary>
            Type of token
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.ChargeAmount">
            <summary>
            Amount to process. If value is greater than 0 then make the payment else create a payment token
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.Currency">
            <summary>
            Currency of the amount attribute
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.Description">
            <summary>
            Details regarding the payment
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.ValidCardTypes">
            <summary>
            Comma separated accepted card types
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Pay.Language">
            <summary>
            Language to use
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pay.#ctor(Twilio.TwiML.Voice.Pay.InputEnum,System.Uri,Twilio.TwiML.Voice.Pay.BankAccountTypeEnum,System.Uri,Twilio.TwiML.Voice.Pay.StatusCallbackMethodEnum,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean},System.String,System.Nullable{System.Int32},System.String,Twilio.TwiML.Voice.Pay.PaymentMethodEnum,Twilio.TwiML.Voice.Pay.TokenTypeEnum,System.String,System.String,System.String,System.Collections.Generic.List{Twilio.TwiML.Voice.Pay.ValidCardTypesEnum},Twilio.TwiML.Voice.Pay.LanguageEnum)">
            <summary>
            Create a new Pay
            </summary>
            <param name="input"> Input type Twilio should accept </param>
            <param name="action"> Action URL </param>
            <param name="bankAccountType"> Bank account type for ach transactions. If set, payment method attribute must be
                                  provided and value should be set to ach-debit. defaults to consumer-checking </param>
            <param name="statusCallback"> Status callback URL </param>
            <param name="statusCallbackMethod"> Status callback method </param>
            <param name="timeout"> Time to wait to gather input </param>
            <param name="maxAttempts"> Maximum number of allowed retries when gathering input </param>
            <param name="securityCode"> Prompt for security code </param>
            <param name="postalCode"> Prompt for postal code and it should be true/false or default postal code </param>
            <param name="minPostalCodeLength"> Prompt for minimum postal code length </param>
            <param name="paymentConnector"> Unique name for payment connector </param>
            <param name="paymentMethod"> Payment method to be used. defaults to credit-card </param>
            <param name="tokenType"> Type of token </param>
            <param name="chargeAmount"> Amount to process. If value is greater than 0 then make the payment else create a
                               payment token </param>
            <param name="currency"> Currency of the amount attribute </param>
            <param name="description"> Details regarding the payment </param>
            <param name="validCardTypes"> Comma separated accepted card types </param>
            <param name="language"> Language to use </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pay.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pay.Prompt(Twilio.TwiML.Voice.Prompt)">
            <summary>
            Append a <Prompt/> element as a child of this element
            </summary>
            <param name="prompt"> A Prompt instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pay.Prompt(Twilio.TwiML.Voice.Prompt.ForEnum,System.Collections.Generic.List{Twilio.TwiML.Voice.Prompt.ErrorTypeEnum},System.Collections.Generic.List{Twilio.TwiML.Voice.Prompt.CardTypeEnum},System.Collections.Generic.List{System.Int32})">
            <summary>
            Create a new <Prompt/> element and append it as a child of this element.
            </summary>
            <param name="for_"> Name of the payment source data element </param>
            <param name="errorType"> Type of error </param>
            <param name="cardType"> Type of the credit card </param>
            <param name="attempt"> Current attempt count </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pay.Parameter(Twilio.TwiML.Voice.Parameter)">
            <summary>
            Append a <Parameter/> element as a child of this element
            </summary>
            <param name="parameter"> A Parameter instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pay.Parameter(System.String,System.String)">
            <summary>
            Create a new <Parameter/> element and append it as a child of this element.
            </summary>
            <param name="name"> The name of the custom parameter </param>
            <param name="value"> The value of the custom parameter </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pay.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Pay.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Play">
            <summary>
            Play TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Play.Url">
            <summary>
            Media URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Play.Loop">
            <summary>
            Times to loop media
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Play.Digits">
            <summary>
            Play DTMF tones for digits
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Play.#ctor(System.Uri,System.Nullable{System.Int32},System.String)">
            <summary>
            Create a new Play
            </summary>
            <param name="url"> Media URL, the body of the TwiML Element. </param>
            <param name="loop"> Times to loop media </param>
            <param name="digits"> Play DTMF tones for digits </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Play.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Play.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Play.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Play.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Prompt">
            <summary>
            Prompt Twiml Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Prompt.For_">
            <summary>
            Name of the payment source data element
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Prompt.ErrorType">
            <summary>
            Type of error
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Prompt.CardType">
            <summary>
            Type of the credit card
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Prompt.Attempt">
            <summary>
            Current attempt count
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Prompt.#ctor(Twilio.TwiML.Voice.Prompt.ForEnum,System.Collections.Generic.List{Twilio.TwiML.Voice.Prompt.ErrorTypeEnum},System.Collections.Generic.List{Twilio.TwiML.Voice.Prompt.CardTypeEnum},System.Collections.Generic.List{System.Int32})">
            <summary>
            Create a new Prompt
            </summary>
            <param name="for_"> Name of the payment source data element </param>
            <param name="errorType"> Type of error </param>
            <param name="cardType"> Type of the credit card </param>
            <param name="attempt"> Current attempt count </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Prompt.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Prompt.Say(Twilio.TwiML.Voice.Say)">
            <summary>
            Append a <Say/> element as a child of this element
            </summary>
            <param name="say"> A Say instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Prompt.Say(System.String,Twilio.TwiML.Voice.Say.VoiceEnum,System.Nullable{System.Int32},Twilio.TwiML.Voice.Say.LanguageEnum)">
            <summary>
            Create a new <Say/> element and append it as a child of this element.
            </summary>
            <param name="message"> Message to say, the body of the TwiML Element. </param>
            <param name="voice"> Voice to use </param>
            <param name="loop"> Times to loop message </param>
            <param name="language"> Message langauge </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Prompt.Play(Twilio.TwiML.Voice.Play)">
            <summary>
            Append a <Play/> element as a child of this element
            </summary>
            <param name="play"> A Play instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Prompt.Play(System.Uri,System.Nullable{System.Int32},System.String)">
            <summary>
            Create a new <Play/> element and append it as a child of this element.
            </summary>
            <param name="url"> Media URL, the body of the TwiML Element. </param>
            <param name="loop"> Times to loop media </param>
            <param name="digits"> Play DTMF tones for digits </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Prompt.Pause(Twilio.TwiML.Voice.Pause)">
            <summary>
            Append a <Pause/> element as a child of this element
            </summary>
            <param name="pause"> A Pause instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Prompt.Pause(System.Nullable{System.Int32})">
            <summary>
            Create a new <Pause/> element and append it as a child of this element.
            </summary>
            <param name="length"> Length in seconds to pause </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Prompt.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Prompt.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Queue">
            <summary>
            Queue TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Queue.Name">
            <summary>
            Queue name
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Queue.Url">
            <summary>
            Action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Queue.Method">
            <summary>
            Action URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Queue.ReservationSid">
            <summary>
            TaskRouter Reservation SID
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Queue.PostWorkActivitySid">
            <summary>
            TaskRouter Activity SID
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Queue.#ctor(System.String,System.Uri,Twilio.Http.HttpMethod,System.String,System.String)">
            <summary>
            Create a new Queue
            </summary>
            <param name="name"> Queue name, the body of the TwiML Element. </param>
            <param name="url"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="reservationSid"> TaskRouter Reservation SID </param>
            <param name="postWorkActivitySid"> TaskRouter Activity SID </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Queue.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Queue.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Queue.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Queue.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Record">
            <summary>
            Record TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.Action">
            <summary>
            Action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.Method">
            <summary>
            Action URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.Timeout">
            <summary>
            Timeout to begin recording
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.FinishOnKey">
            <summary>
            Finish recording on key
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.MaxLength">
            <summary>
            Max time to record in seconds
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.PlayBeep">
            <summary>
            Play beep
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.Trim">
            <summary>
            Trim the recording
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.RecordingStatusCallback">
            <summary>
            Status callback URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.RecordingStatusCallbackMethod">
            <summary>
            Status callback URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.RecordingStatusCallbackEvent">
            <summary>
            Recording status callback events
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.Transcribe">
            <summary>
            Transcribe the recording
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Record.TranscribeCallback">
            <summary>
            Transcribe callback URL
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Record.#ctor(System.Uri,Twilio.Http.HttpMethod,System.Nullable{System.Int32},System.String,System.Nullable{System.Int32},System.Nullable{System.Boolean},Twilio.TwiML.Voice.Record.TrimEnum,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Record.RecordingEventEnum},System.Nullable{System.Boolean},System.Uri)">
            <summary>
            Create a new Record
            </summary>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="timeout"> Timeout to begin recording </param>
            <param name="finishOnKey"> Finish recording on key </param>
            <param name="maxLength"> Max time to record in seconds </param>
            <param name="playBeep"> Play beep </param>
            <param name="trim"> Trim the recording </param>
            <param name="recordingStatusCallback"> Status callback URL </param>
            <param name="recordingStatusCallbackMethod"> Status callback URL method </param>
            <param name="recordingStatusCallbackEvent"> Recording status callback events </param>
            <param name="transcribe"> Transcribe the recording </param>
            <param name="transcribeCallback"> Transcribe callback URL </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Record.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Record.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Record.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Redirect">
            <summary>
            Redirect TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Redirect.Url">
            <summary>
            Redirect URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Redirect.Method">
            <summary>
            Redirect URL method
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Redirect.#ctor(System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new Redirect
            </summary>
            <param name="url"> Redirect URL, the body of the TwiML Element. </param>
            <param name="method"> Redirect URL method </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Redirect.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Redirect.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Redirect.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Redirect.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Reject">
            <summary>
            Reject TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Reject.Reason">
            <summary>
            Rejection reason
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Reject.#ctor(Twilio.TwiML.Voice.Reject.ReasonEnum)">
            <summary>
            Create a new Reject
            </summary>
            <param name="reason"> Rejection reason </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Reject.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Reject.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Reject.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Room">
            <summary>
            Room TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Room.Name">
            <summary>
            Room name
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Room.ParticipantIdentity">
            <summary>
            Participant identity when connecting to the Room
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Room.#ctor(System.String,System.String)">
            <summary>
            Create a new Room
            </summary>
            <param name="name"> Room name, the body of the TwiML Element. </param>
            <param name="participantIdentity"> Participant identity when connecting to the Room </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Room.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Room.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Room.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Room.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Say">
            <summary>
            Say TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Say.Message">
            <summary>
            Message to say
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Say.Voice">
            <summary>
            Voice to use
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Say.Loop">
            <summary>
            Times to loop message
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Say.Language">
            <summary>
            Message langauge
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.#ctor(System.String,Twilio.TwiML.Voice.Say.VoiceEnum,System.Nullable{System.Int32},Twilio.TwiML.Voice.Say.LanguageEnum)">
            <summary>
            Create a new Say
            </summary>
            <param name="message"> Message to say, the body of the TwiML Element. </param>
            <param name="voice"> Voice to use </param>
            <param name="loop"> Times to loop message </param>
            <param name="language"> Message langauge </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlBreak(Twilio.TwiML.Voice.SsmlBreak)">
            <summary>
            Append a <Break/> element as a child of this element
            </summary>
            <param name="ssmlBreak"> A SsmlBreak instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlBreak(Twilio.TwiML.Voice.SsmlBreak.StrengthEnum,System.String)">
            <summary>
            Create a new <Break/> element and append it as a child of this element.
            </summary>
            <param name="strength"> Set a pause based on strength </param>
            <param name="time"> Set a pause to a specific length of time in seconds or milliseconds, available values:
                       [number]s, [number]ms </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlEmphasis(Twilio.TwiML.Voice.SsmlEmphasis)">
            <summary>
            Append a <Emphasis/> element as a child of this element
            </summary>
            <param name="ssmlEmphasis"> A SsmlEmphasis instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlEmphasis(System.String,Twilio.TwiML.Voice.SsmlEmphasis.LevelEnum)">
            <summary>
            Create a new <Emphasis/> element and append it as a child of this element.
            </summary>
            <param name="words"> Words to emphasize, the body of the TwiML Element. </param>
            <param name="level"> Specify the degree of emphasis </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlLang(Twilio.TwiML.Voice.SsmlLang)">
            <summary>
            Append a <Lang/> element as a child of this element
            </summary>
            <param name="ssmlLang"> A SsmlLang instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlLang(System.String,Twilio.TwiML.Voice.SsmlLang.XmlLangEnum)">
            <summary>
            Create a new <Lang/> element and append it as a child of this element.
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
            <param name="xml:Lang:Lang"> Specify the language </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlP(Twilio.TwiML.Voice.SsmlP)">
            <summary>
            Append a <P/> element as a child of this element
            </summary>
            <param name="ssmlP"> A SsmlP instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlP(System.String)">
            <summary>
            Create a new <P/> element and append it as a child of this element.
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlPhoneme(Twilio.TwiML.Voice.SsmlPhoneme)">
            <summary>
            Append a <Phoneme/> element as a child of this element
            </summary>
            <param name="ssmlPhoneme"> A SsmlPhoneme instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlPhoneme(System.String,Twilio.TwiML.Voice.SsmlPhoneme.AlphabetEnum,System.String)">
            <summary>
            Create a new <Phoneme/> element and append it as a child of this element.
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
            <param name="alphabet"> Specify the phonetic alphabet </param>
            <param name="ph"> Specifiy the phonetic symbols for pronunciation </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlProsody(Twilio.TwiML.Voice.SsmlProsody)">
            <summary>
            Append a <Prosody/> element as a child of this element
            </summary>
            <param name="ssmlProsody"> A SsmlProsody instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlProsody(System.String,System.String,System.String,System.String)">
            <summary>
            Create a new <Prosody/> element and append it as a child of this element.
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
            <param name="volume"> Specify the volume, available values: default, silent, x-soft, soft, medium, loud, x-loud,
                         +ndB, -ndB </param>
            <param name="rate"> Specify the rate, available values: x-slow, slow, medium, fast, x-fast, n% </param>
            <param name="pitch"> Specify the pitch, available values: default, x-low, low, medium, high, x-high, +n%, -n%
                        </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlS(Twilio.TwiML.Voice.SsmlS)">
            <summary>
            Append a <S/> element as a child of this element
            </summary>
            <param name="ssmlS"> A SsmlS instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlS(System.String)">
            <summary>
            Create a new <S/> element and append it as a child of this element.
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlSayAs(Twilio.TwiML.Voice.SsmlSayAs)">
            <summary>
            Append a <Say-As/> element as a child of this element
            </summary>
            <param name="ssmlSayAs"> A SsmlSayAs instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlSayAs(System.String,Twilio.TwiML.Voice.SsmlSayAs.InterpretAsEnum,Twilio.TwiML.Voice.SsmlSayAs.RoleEnum)">
            <summary>
            Create a new <Say-As/> element and append it as a child of this element.
            </summary>
            <param name="words"> Words to be interpreted, the body of the TwiML Element. </param>
            <param name="interpret-As-As"> Specify the type of words are spoken </param>
            <param name="role"> Specify the format of the date when interpret-as is set to date </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlSub(Twilio.TwiML.Voice.SsmlSub)">
            <summary>
            Append a <Sub/> element as a child of this element
            </summary>
            <param name="ssmlSub"> A SsmlSub instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlSub(System.String,System.String)">
            <summary>
            Create a new <Sub/> element and append it as a child of this element.
            </summary>
            <param name="words"> Words to be substituted, the body of the TwiML Element. </param>
            <param name="alias"> Substitute a different word (or pronunciation) for selected text such as an acronym or
                        abbreviation </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlW(Twilio.TwiML.Voice.SsmlW)">
            <summary>
            Append a <W/> element as a child of this element
            </summary>
            <param name="ssmlW"> A SsmlW instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SsmlW(System.String,System.String)">
            <summary>
            Create a new <W/> element and append it as a child of this element.
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
            <param name="role"> Customize the pronunciation of words by specifying the word’s part of speech or alternate
                       meaning </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Say.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Sim">
            <summary>
            Sim TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sim.SimSid">
            <summary>
            SIM SID
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sim.#ctor(System.String)">
            <summary>
            Create a new Sim
            </summary>
            <param name="simSid"> SIM SID, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sim.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sim.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sim.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Sip">
            <summary>
            Sip TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sip.SipUrl">
            <summary>
            SIP URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sip.Username">
            <summary>
            SIP Username
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sip.Password">
            <summary>
            SIP Password
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sip.Url">
            <summary>
            Action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sip.Method">
            <summary>
            Action URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sip.StatusCallbackEvent">
            <summary>
            Status callback events
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sip.StatusCallback">
            <summary>
            Status callback URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sip.StatusCallbackMethod">
            <summary>
            Status callback URL method
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sip.#ctor(System.Uri,System.String,System.String,System.Uri,Twilio.Http.HttpMethod,System.Collections.Generic.List{Twilio.TwiML.Voice.Sip.EventEnum},System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new Sip
            </summary>
            <param name="sipUrl"> SIP URL, the body of the TwiML Element. </param>
            <param name="username"> SIP Username </param>
            <param name="password"> SIP Password </param>
            <param name="url"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="statusCallbackEvent"> Status callback events </param>
            <param name="statusCallback"> Status callback URL </param>
            <param name="statusCallbackMethod"> Status callback URL method </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sip.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sip.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sip.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sip.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Siprec">
            <summary>
            Siprec TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Siprec.Name">
            <summary>
            Friendly name given to SIPREC
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Siprec.ConnectorName">
            <summary>
            Unique name for Connector
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Siprec.#ctor(System.String,System.String)">
            <summary>
            Create a new Siprec
            </summary>
            <param name="name"> Friendly name given to SIPREC </param>
            <param name="connectorName"> Unique name for Connector </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Siprec.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Siprec.Parameter(Twilio.TwiML.Voice.Parameter)">
            <summary>
            Append a <Parameter/> element as a child of this element
            </summary>
            <param name="parameter"> A Parameter instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Siprec.Parameter(System.String,System.String)">
            <summary>
            Create a new <Parameter/> element and append it as a child of this element.
            </summary>
            <param name="name"> The name of the custom parameter </param>
            <param name="value"> The value of the custom parameter </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Siprec.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Siprec.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Sms">
            <summary>
            Sms TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sms.Message">
            <summary>
            Message body
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sms.To">
            <summary>
            Number to send message to
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sms.From">
            <summary>
            Number to send message from
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sms.Action">
            <summary>
            Action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sms.Method">
            <summary>
            Action URL method
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Sms.StatusCallback">
            <summary>
            Status callback URL
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sms.#ctor(System.String,Twilio.Types.PhoneNumber,Twilio.Types.PhoneNumber,System.Uri,Twilio.Http.HttpMethod,System.Uri)">
            <summary>
            Create a new Sms
            </summary>
            <param name="message"> Message body, the body of the TwiML Element. </param>
            <param name="to"> Number to send message to </param>
            <param name="from"> Number to send message from </param>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
            <param name="statusCallback"> Status callback URL </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sms.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sms.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sms.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Sms.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.SsmlBreak">
            <summary>
            Adding a Pause in Say
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlBreak.Strength">
            <summary>
            Set a pause based on strength
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlBreak.Time">
            <summary>
            Set a pause to a specific length of time in seconds or milliseconds, available values: [number]s, [number]ms
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlBreak.#ctor(Twilio.TwiML.Voice.SsmlBreak.StrengthEnum,System.String)">
            <summary>
            Create a new SsmlBreak
            </summary>
            <param name="strength"> Set a pause based on strength </param>
            <param name="time"> Set a pause to a specific length of time in seconds or milliseconds, available values:
                       [number]s, [number]ms </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlBreak.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlBreak.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlBreak.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.SsmlEmphasis">
            <summary>
            Emphasizing Words in Say
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlEmphasis.Words">
            <summary>
            Words to emphasize
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlEmphasis.Level">
            <summary>
            Specify the degree of emphasis
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlEmphasis.#ctor(System.String,Twilio.TwiML.Voice.SsmlEmphasis.LevelEnum)">
            <summary>
            Create a new SsmlEmphasis
            </summary>
            <param name="words"> Words to emphasize, the body of the TwiML Element. </param>
            <param name="level"> Specify the degree of emphasis </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlEmphasis.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlEmphasis.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlEmphasis.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlEmphasis.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.SsmlLang">
            <summary>
            Specifying Another Language for Specific Words in Say
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlLang.Words">
            <summary>
            Words to speak
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlLang.XmlLang">
            <summary>
            Specify the language
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlLang.#ctor(System.String,Twilio.TwiML.Voice.SsmlLang.XmlLangEnum)">
            <summary>
            Create a new SsmlLang
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
            <param name="xml:Lang:Lang"> Specify the language </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlLang.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlLang.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlLang.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlLang.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.SsmlP">
            <summary>
            Adding a Pause Between Paragraphs in Say
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlP.Words">
            <summary>
            Words to speak
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlP.#ctor(System.String)">
            <summary>
            Create a new SsmlP
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlP.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlP.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlP.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.SsmlPhoneme">
            <summary>
            Using Phonetic Pronunciation in Say
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlPhoneme.Words">
            <summary>
            Words to speak
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlPhoneme.Alphabet">
            <summary>
            Specify the phonetic alphabet
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlPhoneme.Ph">
            <summary>
            Specifiy the phonetic symbols for pronunciation
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlPhoneme.#ctor(System.String,Twilio.TwiML.Voice.SsmlPhoneme.AlphabetEnum,System.String)">
            <summary>
            Create a new SsmlPhoneme
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
            <param name="alphabet"> Specify the phonetic alphabet </param>
            <param name="ph"> Specifiy the phonetic symbols for pronunciation </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlPhoneme.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlPhoneme.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlPhoneme.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlPhoneme.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.SsmlProsody">
            <summary>
            Controling Volume, Speaking Rate, and Pitch in Say
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlProsody.Words">
            <summary>
            Words to speak
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlProsody.Volume">
            <summary>
            Specify the volume, available values: default, silent, x-soft, soft, medium, loud, x-loud, +ndB, -ndB
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlProsody.Rate">
            <summary>
            Specify the rate, available values: x-slow, slow, medium, fast, x-fast, n%
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlProsody.Pitch">
            <summary>
            Specify the pitch, available values: default, x-low, low, medium, high, x-high, +n%, -n%
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlProsody.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Create a new SsmlProsody
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
            <param name="volume"> Specify the volume, available values: default, silent, x-soft, soft, medium, loud, x-loud,
                         +ndB, -ndB </param>
            <param name="rate"> Specify the rate, available values: x-slow, slow, medium, fast, x-fast, n% </param>
            <param name="pitch"> Specify the pitch, available values: default, x-low, low, medium, high, x-high, +n%, -n%
                        </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlProsody.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlProsody.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlProsody.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlProsody.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.SsmlS">
            <summary>
            Adding A Pause Between Sentences in Say
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlS.Words">
            <summary>
            Words to speak
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlS.#ctor(System.String)">
            <summary>
            Create a new SsmlS
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlS.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlS.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlS.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.SsmlSayAs">
            <summary>
            Controlling How Special Types of Words Are Spoken in Say
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlSayAs.Words">
            <summary>
            Words to be interpreted
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlSayAs.InterpretAs">
            <summary>
            Specify the type of words are spoken
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlSayAs.Role">
            <summary>
            Specify the format of the date when interpret-as is set to date
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlSayAs.#ctor(System.String,Twilio.TwiML.Voice.SsmlSayAs.InterpretAsEnum,Twilio.TwiML.Voice.SsmlSayAs.RoleEnum)">
            <summary>
            Create a new SsmlSayAs
            </summary>
            <param name="words"> Words to be interpreted, the body of the TwiML Element. </param>
            <param name="interpret-As-As"> Specify the type of words are spoken </param>
            <param name="role"> Specify the format of the date when interpret-as is set to date </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlSayAs.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlSayAs.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlSayAs.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlSayAs.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.SsmlSub">
            <summary>
            Pronouncing Acronyms and Abbreviations in Say
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlSub.Words">
            <summary>
            Words to be substituted
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlSub.Alias">
            <summary>
            Substitute a different word (or pronunciation) for selected text such as an acronym or abbreviation
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlSub.#ctor(System.String,System.String)">
            <summary>
            Create a new SsmlSub
            </summary>
            <param name="words"> Words to be substituted, the body of the TwiML Element. </param>
            <param name="alias"> Substitute a different word (or pronunciation) for selected text such as an acronym or
                        abbreviation </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlSub.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlSub.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlSub.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlSub.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.SsmlW">
            <summary>
            Improving Pronunciation by Specifying Parts of Speech in Say
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlW.Words">
            <summary>
            Words to speak
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.SsmlW.Role">
            <summary>
            Customize the pronunciation of words by specifying the word’s part of speech or alternate meaning
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlW.#ctor(System.String,System.String)">
            <summary>
            Create a new SsmlW
            </summary>
            <param name="words"> Words to speak, the body of the TwiML Element. </param>
            <param name="role"> Customize the pronunciation of words by specifying the word’s part of speech or alternate
                       meaning </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlW.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlW.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlW.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.SsmlW.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Start">
            <summary>
            Start TwiML Verb
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Start.Action">
            <summary>
            Action URL
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Start.Method">
            <summary>
            Action URL method
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Start.#ctor(System.Uri,Twilio.Http.HttpMethod)">
            <summary>
            Create a new Start
            </summary>
            <param name="action"> Action URL </param>
            <param name="method"> Action URL method </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Start.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Start.Stream(Twilio.TwiML.Voice.Stream)">
            <summary>
            Append a <Stream/> element as a child of this element
            </summary>
            <param name="stream"> A Stream instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Start.Stream(System.String,System.String,System.String,Twilio.TwiML.Voice.Stream.TrackEnum)">
            <summary>
            Create a new <Stream/> element and append it as a child of this element.
            </summary>
            <param name="name"> Friendly name given to the Stream </param>
            <param name="connectorName"> Unique name for Stream Connector </param>
            <param name="url"> URL of the remote service where the Stream is routed </param>
            <param name="track"> Track to be streamed to remote service </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Start.Siprec(Twilio.TwiML.Voice.Siprec)">
            <summary>
            Append a <Siprec/> element as a child of this element
            </summary>
            <param name="siprec"> A Siprec instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Start.Siprec(System.String,System.String)">
            <summary>
            Create a new <Siprec/> element and append it as a child of this element.
            </summary>
            <param name="name"> Friendly name given to SIPREC </param>
            <param name="connectorName"> Unique name for Connector </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Start.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Start.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Stop">
            <summary>
            Stop TwiML Verb
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stop.#ctor">
            <summary>
            Create a new Stop
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stop.Stream(Twilio.TwiML.Voice.Stream)">
            <summary>
            Append a <Stream/> element as a child of this element
            </summary>
            <param name="stream"> A Stream instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stop.Stream(System.String,System.String,System.String,Twilio.TwiML.Voice.Stream.TrackEnum)">
            <summary>
            Create a new <Stream/> element and append it as a child of this element.
            </summary>
            <param name="name"> Friendly name given to the Stream </param>
            <param name="connectorName"> Unique name for Stream Connector </param>
            <param name="url"> URL of the remote service where the Stream is routed </param>
            <param name="track"> Track to be streamed to remote service </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stop.Siprec(Twilio.TwiML.Voice.Siprec)">
            <summary>
            Append a <Siprec/> element as a child of this element
            </summary>
            <param name="siprec"> A Siprec instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stop.Siprec(System.String,System.String)">
            <summary>
            Create a new <Siprec/> element and append it as a child of this element.
            </summary>
            <param name="name"> Friendly name given to SIPREC </param>
            <param name="connectorName"> Unique name for Connector </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stop.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stop.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Stream">
            <summary>
            Stream TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Stream.Name">
            <summary>
            Friendly name given to the Stream
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Stream.ConnectorName">
            <summary>
            Unique name for Stream Connector
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Stream.Url">
            <summary>
            URL of the remote service where the Stream is routed
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Stream.Track">
            <summary>
            Track to be streamed to remote service
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stream.#ctor(System.String,System.String,System.String,Twilio.TwiML.Voice.Stream.TrackEnum)">
            <summary>
            Create a new Stream
            </summary>
            <param name="name"> Friendly name given to the Stream </param>
            <param name="connectorName"> Unique name for Stream Connector </param>
            <param name="url"> URL of the remote service where the Stream is routed </param>
            <param name="track"> Track to be streamed to remote service </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stream.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stream.Parameter(Twilio.TwiML.Voice.Parameter)">
            <summary>
            Append a <Parameter/> element as a child of this element
            </summary>
            <param name="parameter"> A Parameter instance. </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stream.Parameter(System.String,System.String)">
            <summary>
            Create a new <Parameter/> element and append it as a child of this element.
            </summary>
            <param name="name"> The name of the custom parameter </param>
            <param name="value"> The value of the custom parameter </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stream.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Stream.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.TwiML.Voice.Task">
            <summary>
            Task TwiML Noun
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Task.Body">
            <summary>
            TaskRouter task attributes
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Task.Priority">
            <summary>
            Task priority
            </summary>
        </member>
        <member name="P:Twilio.TwiML.Voice.Task.Timeout">
            <summary>
            Timeout associated with task
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Task.#ctor(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
            <summary>
            Create a new Task
            </summary>
            <param name="body"> TaskRouter task attributes, the body of the TwiML Element. Also accepts stringified object
                       </param>
            <param name="priority"> Task priority </param>
            <param name="timeout"> Timeout associated with task </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Task.GetElementBody">
            <summary>
            Return the body of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Task.GetElementAttributes">
            <summary>
            Return the attributes of the TwiML tag
            </summary>
        </member>
        <member name="M:Twilio.TwiML.Voice.Task.Append(Twilio.TwiML.TwiML)">
            <summary>
            Append a child TwiML element to this element returning this element to allow chaining.
            </summary>
            <param name="childElem"> Child TwiML element to add </param>
        </member>
        <member name="M:Twilio.TwiML.Voice.Task.SetOption(System.String,System.Object)">
            <summary>
            Add freeform key-value attributes to the generated xml
            </summary>
            <param name="key"> Option key </param>
            <param name="value"> Option value </param>
        </member>
        <member name="T:Twilio.Types.Client">
            <summary>
            Client Endpoint
            </summary>
        </member>
        <member name="M:Twilio.Types.Client.#ctor(System.String)">
            <summary>
            Create new client
            </summary>
            <param name="client">Client name</param>
        </member>
        <member name="M:Twilio.Types.Client.ToString">
            <summary>
            Convert to string
            </summary>
            <returns>String representation</returns>
        </member>
        <member name="T:Twilio.Types.FeedbackIssue">
            <summary>
            Feedback issue POCO
            </summary>
        </member>
        <member name="P:Twilio.Types.FeedbackIssue.Count">
            <summary>
            Number of occurrences
            </summary>
        </member>
        <member name="P:Twilio.Types.FeedbackIssue.Description">
            <summary>
            Description of issue
            </summary>
        </member>
        <member name="P:Twilio.Types.FeedbackIssue.PercentageOfTotalCalls">
            <summary>
            Percentage of calls affected
            </summary>
        </member>
        <member name="M:Twilio.Types.FeedbackIssue.#ctor(System.Int32,System.String,System.String)">
            <summary>
            Create new FeedbackIssue
            </summary>
            <param name="count">Number of occurrences</param>
            <param name="description">Description of issue</param>
            <param name="percentageOfTotalCalls">Percentage of calls affected</param>
        </member>
        <member name="T:Twilio.Types.IceServer">
            <summary>
            Ice Server POCO
            </summary>
        </member>
        <member name="P:Twilio.Types.IceServer.Credential">
            <summary>
            Ice Server credential
            </summary>
        </member>
        <member name="P:Twilio.Types.IceServer.Username">
            <summary>
            Username for server
            </summary>
        </member>
        <member name="P:Twilio.Types.IceServer.Url">
            <summary>
            Server URL
            </summary>
        </member>
        <member name="P:Twilio.Types.IceServer.Urls">
            <summary>
            Server URL
            </summary>
        </member>
        <member name="M:Twilio.Types.IceServer.#ctor(System.String,System.String,System.Uri,System.Uri)">
            <summary>
            Create a new IceServer
            </summary>
            <param name="credential">Ice Server credential</param>
            <param name="username">Server username</param>
            <param name="url">Server URL</param>
            <param name="urls">Server URL</param>
        </member>
        <member name="T:Twilio.Types.IEndpoint">
            <summary>
            Endpoint of a call
            </summary>
        </member>
        <member name="M:Twilio.Types.IEndpoint.ToString">
            <summary>
            Generate string representation
            </summary>
            <returns>String representation</returns>
        </member>
        <member name="T:Twilio.Types.InboundCallPrice">
            <summary>
            POCO to represent an inbound call price
            </summary>
        </member>
        <member name="T:Twilio.Types.InboundCallPrice.TypeEnum">
            <summary>
            Types of inbound numbers
            </summary>
        </member>
        <member name="M:Twilio.Types.InboundCallPrice.TypeEnum.#ctor">
            <summary>
            Generic constructor
            </summary>
        </member>
        <member name="F:Twilio.Types.InboundCallPrice.TypeEnum.Local">
            <summary>
            Local number type
            </summary>
        </member>
        <member name="F:Twilio.Types.InboundCallPrice.TypeEnum.Mobile">
            <summary>
            Mobile number type
            </summary>
        </member>
        <member name="F:Twilio.Types.InboundCallPrice.TypeEnum.National">
            <summary>
            National number type
            </summary>
        </member>
        <member name="F:Twilio.Types.InboundCallPrice.TypeEnum.TollFree">
            <summary>
            Toll Free number type
            </summary>
        </member>
        <member name="P:Twilio.Types.InboundCallPrice.BasePrice">
            <summary>
            Base price of calls
            </summary>
        </member>
        <member name="P:Twilio.Types.InboundCallPrice.CurrentPrice">
            <summary>
            Current price of calls
            </summary>
        </member>
        <member name="P:Twilio.Types.InboundCallPrice.NumberType">
            <summary>
            Type of number
            </summary>
        </member>
        <member name="M:Twilio.Types.InboundCallPrice.#ctor">
            <summary>
            Empty constructor
            </summary>
        </member>
        <member name="T:Twilio.Types.InboundSmsPrice">
            <summary>
            POCO for inbound SMS prices
            </summary>
        </member>
        <member name="T:Twilio.Types.InboundSmsPrice.TypeEnum">
            <summary>
            Phone number types
            </summary>
        </member>
        <member name="M:Twilio.Types.InboundSmsPrice.TypeEnum.#ctor">
            <summary>
            Generic constructor
            </summary>
        </member>
        <member name="F:Twilio.Types.InboundSmsPrice.TypeEnum.Local">
            <summary>
            Local number type
            </summary>
        </member>
        <member name="F:Twilio.Types.InboundSmsPrice.TypeEnum.Mobile">
            <summary>
            Mobile number type
            </summary>
        </member>
        <member name="F:Twilio.Types.InboundSmsPrice.TypeEnum.National">
            <summary>
            National number type
            </summary>
        </member>
        <member name="F:Twilio.Types.InboundSmsPrice.TypeEnum.TollFree">
            <summary>
            Toll Free number type
            </summary>
        </member>
        <member name="P:Twilio.Types.InboundSmsPrice.BasePrice">
            <summary>
            Base price for SMS
            </summary>
        </member>
        <member name="P:Twilio.Types.InboundSmsPrice.CurrentPrice">
            <summary>
            Current price for SMS
            </summary>
        </member>
        <member name="P:Twilio.Types.InboundSmsPrice.NumberType">
            <summary>
            Type of number
            </summary>
        </member>
        <member name="M:Twilio.Types.InboundSmsPrice.#ctor">
            <summary>
            Generic constructor
            </summary>
        </member>
        <member name="T:Twilio.Types.OutboundCallPrice">
            <summary>
            POCO for outbound call prices
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundCallPrice.BasePrice">
            <summary>
            Base price of outbound call
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundCallPrice.CurrentPrice">
            <summary>
            Current price of outbound call
            </summary>
            <returns></returns>
        </member>
        <member name="M:Twilio.Types.OutboundCallPrice.#ctor(System.Double,System.Double)">
            <summary>
            Create a new OutboundCallPrice
            </summary>
            <param name="basePrice">Base price of call</param>
            <param name="currentPrice">Current price of call</param>
        </member>
        <member name="T:Twilio.Types.OutboundCallPriceWithOrigin">
            <summary>
            POCO for outbound call price with origin
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundCallPriceWithOrigin.BasePrice">
            <summary>
            Base price of outbound call
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundCallPriceWithOrigin.CurrentPrice">
            <summary>
            Current price of outbound call
            </summary>
            <returns></returns>
        </member>
        <member name="P:Twilio.Types.OutboundCallPriceWithOrigin.OriginationPrefixes">
            <summary>
            List of origination prefixes of outbound call
            </summary>
            <returns></returns>
        </member>
        <member name="M:Twilio.Types.OutboundCallPriceWithOrigin.#ctor(System.Double,System.Double,System.Collections.Generic.List{System.String})">
            <summary>
            Create a new OutboundCallPriceWithOrigin
            </summary>
            <param name="basePrice">Base price of call</param>
            <param name="currentPrice">Current price of call</param>
            <param name="originationPrefixes">List of origination prefixes of call</param>
        </member>
        <member name="T:Twilio.Types.OutboundPrefixPrice">
            <summary>
            POCO for outbound prefix prices
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundPrefixPrice.Prefixes">
            <summary>
            Prefix list
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundPrefixPrice.FriendlyName">
            <summary>
            Prefix friendly name
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundPrefixPrice.BasePrice">
            <summary>
            Base price for prefix
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundPrefixPrice.CurrentPrice">
            <summary>
            Current price of prefix
            </summary>
        </member>
        <member name="M:Twilio.Types.OutboundPrefixPrice.#ctor(System.Collections.Generic.List{System.String},System.String,System.Double,System.Double)">
            <summary>
            Create a new OutboundPrefixPrice
            </summary>
            <param name="prefixes">List of prefixes</param>
            <param name="friendlyName">Prefix friendly name</param>
            <param name="basePrice">Base price of prefix</param>
            <param name="currentPrice">Current price of prefix</param>
        </member>
        <member name="T:Twilio.Types.OutboundPrefixPriceWithOrigin">
            <summary>
            POCO for outbound prefix prices with origins
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundPrefixPriceWithOrigin.DestinationPrefixes">
            <summary>
            Destination Prefix list
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundPrefixPriceWithOrigin.OriginationPrefixes">
            <summary>
            Destination Prefix list
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundPrefixPriceWithOrigin.FriendlyName">
            <summary>
            Prefix friendly name
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundPrefixPriceWithOrigin.BasePrice">
            <summary>
            Base price for prefix
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundPrefixPriceWithOrigin.CurrentPrice">
            <summary>
            Current price of prefix
            </summary>
        </member>
        <member name="M:Twilio.Types.OutboundPrefixPriceWithOrigin.#ctor(System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.String,System.Double,System.Double)">
            <summary>
            Create a new OutboundPrefixPrice
            </summary>
            <param name="destinationPrefixes">List of destination prefixes</param>
            <param name="originationPrefixes">List of origination prefixes</param>
            <param name="friendlyName">Prefix friendly name</param>
            <param name="basePrice">Base price of prefix</param>
            <param name="currentPrice">Current price of prefix</param>
        </member>
        <member name="T:Twilio.Types.OutboundSmsPrice">
            <summary>
            POCO to represent an outbound SMS price
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundSmsPrice.Mcc">
            <summary>
            SMS mcc
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundSmsPrice.Mnc">
            <summary>
            SMS mnc
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundSmsPrice.Carrier">
            <summary>
            Carrier name
            </summary>
        </member>
        <member name="P:Twilio.Types.OutboundSmsPrice.Prices">
            <summary>
            List of prices
            </summary>
        </member>
        <member name="M:Twilio.Types.OutboundSmsPrice.#ctor(System.String,System.String,System.String,System.Collections.Generic.List{Twilio.Types.InboundSmsPrice})">
            <summary>
            Create a new OutboundSmsPrice
            </summary>
            <param name="mcc">SMS mcc</param>
            <param name="mnc">SMS mnc</param>
            <param name="carrier">Carrier name</param>
            <param name="prices">List of prices</param>
        </member>
        <member name="T:Twilio.Types.PhoneNumber">
            <summary>
            Phone number endpoint
            </summary>
        </member>
        <member name="M:Twilio.Types.PhoneNumber.#ctor(System.String)">
            <summary>
            Create a new PhoneNumber
            </summary>
            <param name="number">Phone number</param>
        </member>
        <member name="M:Twilio.Types.PhoneNumber.op_Implicit(System.String)~Twilio.Types.PhoneNumber">
            <summary>
            Add implicit constructor for PhoneNumber to make it assignable from string
            </summary>
            <param name="number">Phone number</param>
            <returns></returns>
        </member>
        <member name="M:Twilio.Types.PhoneNumber.ToString">
            <summary>
            Convert to string
            </summary>
            <returns>String representation</returns>
        </member>
        <member name="T:Twilio.Types.PhoneNumberCapabilities">
            <summary>
            Capabilites of a phone number
            </summary>
        </member>
        <member name="P:Twilio.Types.PhoneNumberCapabilities.Mms">
            <summary>
            MMS capable
            </summary>
        </member>
        <member name="P:Twilio.Types.PhoneNumberCapabilities.Sms">
            <summary>
            SMS capable
            </summary>
        </member>
        <member name="P:Twilio.Types.PhoneNumberCapabilities.Voice">
            <summary>
            Voice capable
            </summary>
        </member>
        <member name="M:Twilio.Types.PhoneNumberCapabilities.#ctor(System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Create a new PhoneNumberCapability
            </summary>
            <param name="mms">MMS capable</param>
            <param name="sms">SMS capable</param>
            <param name="voice">Voice capable</param>
        </member>
        <member name="T:Twilio.Types.PhoneNumberPrice">
            <summary>
            Phone number price POCO
            </summary>
        </member>
        <member name="T:Twilio.Types.PhoneNumberPrice.TypeEnum">
            <summary>
            Phone numbe types
            </summary>
        </member>
        <member name="M:Twilio.Types.PhoneNumberPrice.TypeEnum.#ctor">
            <summary>
            Generic constructor
            </summary>
        </member>
        <member name="F:Twilio.Types.PhoneNumberPrice.TypeEnum.Local">
            <summary>
            Local number type
            </summary>
        </member>
        <member name="F:Twilio.Types.PhoneNumberPrice.TypeEnum.Mobile">
            <summary>
            Mobile number type
            </summary>
        </member>
        <member name="F:Twilio.Types.PhoneNumberPrice.TypeEnum.National">
            <summary>
            National number type
            </summary>
        </member>
        <member name="F:Twilio.Types.PhoneNumberPrice.TypeEnum.TollFree">
            <summary>
            Toll free number type
            </summary>
        </member>
        <member name="P:Twilio.Types.PhoneNumberPrice.BasePrice">
            <summary>
            Base price of number
            </summary>
        </member>
        <member name="P:Twilio.Types.PhoneNumberPrice.CurrentPrice">
            <summary>
            Current price of number
            </summary>
        </member>
        <member name="P:Twilio.Types.PhoneNumberPrice.NumberType">
            <summary>
            Type of number
            </summary>
        </member>
        <member name="M:Twilio.Types.PhoneNumberPrice.#ctor">
            <summary>
            Generic constructor
            </summary>
        </member>
        <member name="T:Twilio.Types.StringEnum">
            <summary>
            Enum object for strings
            </summary>
        </member>
        <member name="M:Twilio.Types.StringEnum.#ctor">
            <summary>
            Generic constructor
            </summary>
        </member>
        <member name="M:Twilio.Types.StringEnum.#ctor(System.String)">
            <summary>
            Create from string
            </summary>
            <param name="value">String value</param>
        </member>
        <member name="M:Twilio.Types.StringEnum.FromString(System.String)">
            <summary>
            Generate from string
            </summary>
            <param name="value">String value</param>
        </member>
        <member name="M:Twilio.Types.StringEnum.ToString">
            <summary>
            Convert to string
            </summary>
            <returns>String representation</returns>
        </member>
    </members>
</doc>
