/// <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)); }
private static Request BuildReadRequest(ReadFieldOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.Preview, "/understand/Services/" + options.PathServiceSid + "/Intents/" + options.PathIntentSid + "/Fields", client.Region, queryParams: options.GetParams() )); }
/// <summary> /// read /// </summary> /// <param name="pathServiceSid"> The service_sid </param> /// <param name="pathIntentSid"> The intent_sid </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 pathServiceSid, string pathIntentSid, int?pageSize = null, long?limit = null, ITwilioRestClient client = null) { var options = new ReadFieldOptions(pathServiceSid, pathIntentSid) { PageSize = pageSize, Limit = limit }; return(await ReadAsync(options, client)); }
/// <summary> /// read /// </summary> /// <param name="pathServiceSid"> The service_sid </param> /// <param name="pathIntentSid"> The intent_sid </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 pathServiceSid, string pathIntentSid, int?pageSize = null, long?limit = null, ITwilioRestClient client = null) { var options = new ReadFieldOptions(pathServiceSid, pathIntentSid) { PageSize = pageSize, Limit = limit }; return(Read(options, client)); }
/// <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)); }