示例#1
0
        /// <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));
        }
示例#2
0
        /// <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));
        }
示例#3
0
 private static Request BuildUpdateRequest(UpdateIntentOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Post,
                Rest.Domain.Preview,
                "/understand/Assistants/" + options.PathAssistantSid + "/Intents/" + options.PathSid + "",
                client.Region,
                postParams: options.GetParams()
                ));
 }
示例#4
0
        /// <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 Intent </returns>
        public static async System.Threading.Tasks.Task <IntentResource> UpdateAsync(string pathAssistantSid,
                                                                                     string pathSid,
                                                                                     string friendlyName      = null,
                                                                                     string uniqueName        = null,
                                                                                     ITwilioRestClient client = null)
        {
            var options = new UpdateIntentOptions(pathAssistantSid, pathSid)
            {
                FriendlyName = friendlyName, UniqueName = uniqueName
            };

            return(await UpdateAsync(options, client));
        }
示例#5
0
        /// <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 Intent </returns>
        public static IntentResource Update(string pathAssistantSid,
                                            string pathSid,
                                            string friendlyName      = null,
                                            string uniqueName        = null,
                                            ITwilioRestClient client = null)
        {
            var options = new UpdateIntentOptions(pathAssistantSid, pathSid)
            {
                FriendlyName = friendlyName, UniqueName = uniqueName
            };

            return(Update(options, client));
        }