/// <summary>
        /// read
        /// </summary>
        /// <param name="options"> Read FieldValue parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of FieldValue </returns>
        public static ResourceSet <FieldValueResource> Read(ReadFieldValueOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildReadRequest(options, client));

            var page = Page <FieldValueResource> .FromJson("field_values", response.Content);

            return(new ResourceSet <FieldValueResource>(page, options, client));
        }
 private static Request BuildReadRequest(ReadFieldValueOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Preview,
                "/understand/Services/" + options.PathServiceSid + "/FieldTypes/" + options.PathFieldTypeSid + "/FieldValues",
                client.Region,
                queryParams: options.GetParams()
                ));
 }
        /// <summary>
        /// read
        /// </summary>
        /// <param name="pathServiceSid"> The service_sid </param>
        /// <param name="pathFieldTypeSid"> The field_type_sid </param>
        /// <param name="language"> The language </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 FieldValue </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <FieldValueResource> > ReadAsync(string pathServiceSid,
                                                                                                      string pathFieldTypeSid,
                                                                                                      string language          = null,
                                                                                                      int?pageSize             = null,
                                                                                                      long?limit               = null,
                                                                                                      ITwilioRestClient client = null)
        {
            var options = new ReadFieldValueOptions(pathServiceSid, pathFieldTypeSid)
            {
                Language = language, PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }
        /// <summary>
        /// read
        /// </summary>
        /// <param name="pathServiceSid"> The service_sid </param>
        /// <param name="pathFieldTypeSid"> The field_type_sid </param>
        /// <param name="language"> The language </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 FieldValue </returns>
        public static ResourceSet <FieldValueResource> Read(string pathServiceSid,
                                                            string pathFieldTypeSid,
                                                            string language          = null,
                                                            int?pageSize             = null,
                                                            long?limit               = null,
                                                            ITwilioRestClient client = null)
        {
            var options = new ReadFieldValueOptions(pathServiceSid, pathFieldTypeSid)
            {
                Language = language, PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
        /// <summary>
        /// read
        /// </summary>
        /// <param name="options"> Read FieldValue parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of FieldValue </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <FieldValueResource> > ReadAsync(ReadFieldValueOptions options,
                                                                                                      ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildReadRequest(options, client));

            var page = Page <FieldValueResource> .FromJson("field_values", response.Content);

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