/// <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/Assistants/" + options.PathAssistantSid + "/FieldTypes/" + options.PathFieldTypeSid + "/FieldValues", queryParams: options.GetParams() )); }
/// <summary> /// read /// </summary> /// <param name="pathAssistantSid"> The assistant_sid </param> /// <param name="pathFieldTypeSid"> The field_type_sid </param> /// <param name="language"> An ISO language-country string of the value. For example: en-US </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 pathAssistantSid, string pathFieldTypeSid, string language = null, int?pageSize = null, long?limit = null, ITwilioRestClient client = null) { var options = new ReadFieldValueOptions(pathAssistantSid, pathFieldTypeSid) { Language = language, PageSize = pageSize, Limit = limit }; return(await ReadAsync(options, client)); }
/// <summary> /// read /// </summary> /// <param name="pathAssistantSid"> The assistant_sid </param> /// <param name="pathFieldTypeSid"> The field_type_sid </param> /// <param name="language"> An ISO language-country string of the value. For example: en-US </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 pathAssistantSid, string pathFieldTypeSid, string language = null, int?pageSize = null, long?limit = null, ITwilioRestClient client = null) { var options = new ReadFieldValueOptions(pathAssistantSid, 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)); }