/// <summary>
        /// update
        /// </summary>
        /// <param name="options"> Update Intent parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Intent </returns>
        public static IntentResource Update(UpdateIntentOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildUpdateRequest(options, client));

            return(FromJson(response.Content));
        }
        /// <summary>
        /// update
        /// </summary>
        /// <param name="options"> Update Intent parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Intent </returns>
        public static async System.Threading.Tasks.Task <IntentResource> UpdateAsync(UpdateIntentOptions options,
                                                                                     ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildUpdateRequest(options, client));

            return(FromJson(response.Content));
        }
 private static Request BuildUpdateRequest(UpdateIntentOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Post,
                Rest.Domain.Preview,
                "/understand/Services/" + options.PathServiceSid + "/Intents/" + options.PathSid + "",
                client.Region,
                postParams: options.GetParams()
                ));
 }
        /// <summary>
        /// update
        /// </summary>
        /// <param name="pathServiceSid"> The service_sid </param>
        /// <param name="pathSid"> The sid </param>
        /// <param name="friendlyName"> The friendly_name </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 Intent </returns>
        public static async System.Threading.Tasks.Task <IntentResource> UpdateAsync(string pathServiceSid,
                                                                                     string pathSid,
                                                                                     string friendlyName      = null,
                                                                                     string uniqueName        = null,
                                                                                     ITwilioRestClient client = null)
        {
            var options = new UpdateIntentOptions(pathServiceSid, pathSid)
            {
                FriendlyName = friendlyName, UniqueName = uniqueName
            };

            return(await UpdateAsync(options, client));
        }
        /// <summary>
        /// update
        /// </summary>
        /// <param name="pathServiceSid"> The service_sid </param>
        /// <param name="pathSid"> The sid </param>
        /// <param name="friendlyName"> The friendly_name </param>
        /// <param name="uniqueName"> The unique_name </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Intent </returns>
        public static IntentResource Update(string pathServiceSid,
                                            string pathSid,
                                            string friendlyName      = null,
                                            string uniqueName        = null,
                                            ITwilioRestClient client = null)
        {
            var options = new UpdateIntentOptions(pathServiceSid, pathSid)
            {
                FriendlyName = friendlyName, UniqueName = uniqueName
            };

            return(Update(options, client));
        }