예제 #1
0
 /// <summary>
 /// read
 /// </summary>
 /// <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </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 Task </returns> 
 public static ResourceSet<TaskResource> Read(string pathAssistantSid, 
                                              int? pageSize = null, 
                                              long? limit = null, 
                                              ITwilioRestClient client = null)
 {
     var options = new ReadTaskOptions(pathAssistantSid){PageSize = pageSize, Limit = limit};
     return Read(options, client);
 }
예제 #2
0
 /// <summary>
 /// read
 /// </summary>
 /// <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the resources to read </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 Task </returns> 
 public static async System.Threading.Tasks.Task<ResourceSet<TaskResource>> ReadAsync(string pathAssistantSid, 
                                                                                      int? pageSize = null, 
                                                                                      long? limit = null, 
                                                                                      ITwilioRestClient client = null)
 {
     var options = new ReadTaskOptions(pathAssistantSid){PageSize = pageSize, Limit = limit};
     return await ReadAsync(options, client);
 }
예제 #3
0
        /// <summary>
        /// read
        /// </summary>
        /// <param name="options"> Read Task parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Task </returns> 
        public static ResourceSet<TaskResource> Read(ReadTaskOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildReadRequest(options, client));

            var page = Page<TaskResource>.FromJson("tasks", response.Content);
            return new ResourceSet<TaskResource>(page, options, client);
        }
예제 #4
0
 private static Request BuildReadRequest(ReadTaskOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Autopilot,
                "/v1/Assistants/" + options.PathAssistantSid + "/Tasks",
                queryParams: options.GetParams()
                ));
 }
예제 #5
0
        /// <summary>
        /// read
        /// </summary>
        /// <param name="options"> Read Task parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Task </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <TaskResource> > ReadAsync(ReadTaskOptions options,
                                                                                                ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildReadRequest(options, client));

            var page = Page <TaskResource> .FromJson("tasks", response.Content);

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