コード例 #1
0
        /// <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>
        public static ResourceSet <FieldResource> Read(ReadFieldOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildReadRequest(options, client));

            var page = Page <FieldResource> .FromJson("fields", response.Content);

            return(new ResourceSet <FieldResource>(page, options, client));
        }
コード例 #2
0
 private static Request BuildReadRequest(ReadFieldOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Preview,
                "/understand/Assistants/" + options.PathAssistantSid + "/Tasks/" + options.PathTaskSid + "/Fields",
                queryParams: options.GetParams()
                ));
 }
コード例 #3
0
        /// <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>
        public static async System.Threading.Tasks.Task <ResourceSet <FieldResource> > ReadAsync(string pathAssistantSid,
                                                                                                 string pathTaskSid,
                                                                                                 int?pageSize             = null,
                                                                                                 long?limit               = null,
                                                                                                 ITwilioRestClient client = null)
        {
            var options = new ReadFieldOptions(pathAssistantSid, pathTaskSid)
            {
                PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }
コード例 #4
0
        /// <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>
        public static ResourceSet <FieldResource> Read(string pathAssistantSid,
                                                       string pathTaskSid,
                                                       int?pageSize             = null,
                                                       long?limit               = null,
                                                       ITwilioRestClient client = null)
        {
            var options = new ReadFieldOptions(pathAssistantSid, pathTaskSid)
            {
                PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
コード例 #5
0
        /// <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>
        public static async System.Threading.Tasks.Task <ResourceSet <FieldResource> > ReadAsync(ReadFieldOptions options,
                                                                                                 ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildReadRequest(options, client));

            var page = Page <FieldResource> .FromJson("fields", response.Content);

            return(new ResourceSet <FieldResource>(page, options, client));
        }