Пример #1
0
        /// <summary>
        /// create
        /// </summary>
        /// <param name="options"> Create Intent parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Intent </returns>
        public static IntentResource Create(CreateIntentOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildCreateRequest(options, client));

            return(FromJson(response.Content));
        }
Пример #2
0
        /// <summary>
        /// create
        /// </summary>
        /// <param name="options"> Create 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> CreateAsync(CreateIntentOptions options,
                                                                                     ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildCreateRequest(options, client));

            return(FromJson(response.Content));
        }
Пример #3
0
 private static Request BuildCreateRequest(CreateIntentOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Post,
                Rest.Domain.Preview,
                "/understand/Services/" + options.PathServiceSid + "/Intents",
                client.Region,
                postParams: options.GetParams()
                ));
 }
Пример #4
0
        /// <summary>
        /// create
        /// </summary>
        /// <param name="pathServiceSid"> The service_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 Intent </returns>
        public static async System.Threading.Tasks.Task <IntentResource> CreateAsync(string pathServiceSid,
                                                                                     string uniqueName,
                                                                                     string friendlyName      = null,
                                                                                     ITwilioRestClient client = null)
        {
            var options = new CreateIntentOptions(pathServiceSid, uniqueName)
            {
                FriendlyName = friendlyName
            };

            return(await CreateAsync(options, client));
        }
Пример #5
0
        /// <summary>
        /// create
        /// </summary>
        /// <param name="pathServiceSid"> The service_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 Intent </returns>
        public static IntentResource Create(string pathServiceSid,
                                            string uniqueName,
                                            string friendlyName      = null,
                                            ITwilioRestClient client = null)
        {
            var options = new CreateIntentOptions(pathServiceSid, uniqueName)
            {
                FriendlyName = friendlyName
            };

            return(Create(options, client));
        }