/// <summary> /// read /// </summary> /// <param name="options"> Read ByocTrunk parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> A single instance of ByocTrunk </returns> public static ResourceSet <ByocTrunkResource> Read(ReadByocTrunkOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = client.Request(BuildReadRequest(options, client)); var page = Page <ByocTrunkResource> .FromJson("byoc_trunks", response.Content); return(new ResourceSet <ByocTrunkResource>(page, options, client)); }
private static Request BuildReadRequest(ReadByocTrunkOptions options, ITwilioRestClient client) { return(new Request( HttpMethod.Get, Rest.Domain.Voice, "/v1/ByocTrunks", queryParams: options.GetParams() )); }
/// <summary> /// read /// </summary> /// <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 ByocTrunk </returns> public static async System.Threading.Tasks.Task <ResourceSet <ByocTrunkResource> > ReadAsync(int?pageSize = null, long?limit = null, ITwilioRestClient client = null) { var options = new ReadByocTrunkOptions() { PageSize = pageSize, Limit = limit }; return(await ReadAsync(options, client)); }
/// <summary> /// read /// </summary> /// <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 ByocTrunk </returns> public static ResourceSet <ByocTrunkResource> Read(int?pageSize = null, long?limit = null, ITwilioRestClient client = null) { var options = new ReadByocTrunkOptions() { PageSize = pageSize, Limit = limit }; return(Read(options, client)); }
/// <summary> /// read /// </summary> /// <param name="options"> Read ByocTrunk parameters </param> /// <param name="client"> Client to make requests to Twilio </param> /// <returns> Task that resolves to A single instance of ByocTrunk </returns> public static async System.Threading.Tasks.Task <ResourceSet <ByocTrunkResource> > ReadAsync(ReadByocTrunkOptions options, ITwilioRestClient client = null) { client = client ?? TwilioClient.GetRestClient(); var response = await client.RequestAsync(BuildReadRequest(options, client)); var page = Page <ByocTrunkResource> .FromJson("byoc_trunks", response.Content); return(new ResourceSet <ByocTrunkResource>(page, options, client)); }