Ejemplo n.º 1
0
        /// <summary>
        /// read
        /// </summary>
        ///
        /// <param name="pathWorkspaceSid"> The workspace_sid </param>
        /// <param name="pathWorkerSid"> The worker_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 WorkerChannel </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <WorkerChannelResource> > ReadAsync(string pathWorkspaceSid, string pathWorkerSid, int?pageSize = null, long?limit = null, ITwilioRestClient client = null)
        {
            var options = new ReadWorkerChannelOptions(pathWorkspaceSid, pathWorkerSid)
            {
                PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }
Ejemplo n.º 2
0
        /// <summary>
        /// read
        /// </summary>
        ///
        /// <param name="options"> Read WorkerChannel parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of WorkerChannel </returns>
        public static ResourceSet <WorkerChannelResource> Read(ReadWorkerChannelOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildReadRequest(options, client));

            var page = Page <WorkerChannelResource> .FromJson("channels", response.Content);

            return(new ResourceSet <WorkerChannelResource>(page, options, client));
        }
Ejemplo n.º 3
0
        /// <summary>
        /// read
        /// </summary>
        ///
        /// <param name="pathWorkspaceSid"> The workspace_sid </param>
        /// <param name="pathWorkerSid"> The worker_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 WorkerChannel </returns>
        public static ResourceSet <WorkerChannelResource> Read(string pathWorkspaceSid, string pathWorkerSid, int?pageSize = null, long?limit = null, ITwilioRestClient client = null)
        {
            var options = new ReadWorkerChannelOptions(pathWorkspaceSid, pathWorkerSid)
            {
                PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
 private static Request BuildReadRequest(ReadWorkerChannelOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Taskrouter,
                "/v1/Workspaces/" + options.PathWorkspaceSid + "/Workers/" + options.PathWorkerSid + "/Channels",
                queryParams: options.GetParams()
                ));
 }
        /// <summary>
        /// read
        /// </summary>
        /// <param name="options"> Read WorkerChannel parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of WorkerChannel </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <WorkerChannelResource> > ReadAsync(ReadWorkerChannelOptions options,
                                                                                                         ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildReadRequest(options, client));

            var page = Page <WorkerChannelResource> .FromJson("channels", response.Content);

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