Exemplo n.º 1
0
        /// <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>
        public static TaskResource Update(UpdateTaskOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildUpdateRequest(options, client));

            return(FromJson(response.Content));
        }
Exemplo n.º 2
0
        /// <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>
        public static async System.Threading.Tasks.Task <TaskResource> UpdateAsync(UpdateTaskOptions options,
                                                                                   ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildUpdateRequest(options, client));

            return(FromJson(response.Content));
        }
Exemplo n.º 3
0
 private static Request BuildUpdateRequest(UpdateTaskOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Post,
                Rest.Domain.Preview,
                "/understand/Assistants/" + options.PathAssistantSid + "/Tasks/" + options.PathSid + "",
                postParams: options.GetParams()
                ));
 }
Exemplo n.º 4
0
        /// <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>
        public static async System.Threading.Tasks.Task <TaskResource> UpdateAsync(string pathAssistantSid,
                                                                                   string pathSid,
                                                                                   string friendlyName      = null,
                                                                                   string uniqueName        = null,
                                                                                   object actions           = null,
                                                                                   Uri actionsUrl           = null,
                                                                                   ITwilioRestClient client = null)
        {
            var options = new UpdateTaskOptions(pathAssistantSid, pathSid)
            {
                FriendlyName = friendlyName, UniqueName = uniqueName, Actions = actions, ActionsUrl = actionsUrl
            };

            return(await UpdateAsync(options, client));
        }
Exemplo n.º 5
0
        /// <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>
        public static TaskResource Update(string pathAssistantSid,
                                          string pathSid,
                                          string friendlyName      = null,
                                          string uniqueName        = null,
                                          object actions           = null,
                                          Uri actionsUrl           = null,
                                          ITwilioRestClient client = null)
        {
            var options = new UpdateTaskOptions(pathAssistantSid, pathSid)
            {
                FriendlyName = friendlyName, UniqueName = uniqueName, Actions = actions, ActionsUrl = actionsUrl
            };

            return(Update(options, client));
        }