Ejemplo n.º 1
0
        /// <summary>
        /// read
        /// </summary>
        /// <param name="options"> Read Sample parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of Sample </returns>
        public static ResourceSet <SampleResource> Read(ReadSampleOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildReadRequest(options, client));

            var page = Page <SampleResource> .FromJson("samples", response.Content);

            return(new ResourceSet <SampleResource>(page, options, client));
        }
Ejemplo n.º 2
0
 private static Request BuildReadRequest(ReadSampleOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Autopilot,
                "/v1/Assistants/" + options.PathAssistantSid + "/Tasks/" + options.PathTaskSid + "/Samples",
                queryParams: options.GetParams()
                ));
 }
Ejemplo n.º 3
0
        /// <summary>
        /// read
        /// </summary>
        /// <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
        ///                        resources to read </param>
        /// <param name="pathTaskSid"> The SID of the Task associated with the Sample resources to read </param>
        /// <param name="language"> The ISO language-country string that specifies the language used for the sample </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 Sample </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <SampleResource> > ReadAsync(string pathAssistantSid,
                                                                                                  string pathTaskSid,
                                                                                                  string language          = null,
                                                                                                  int?pageSize             = null,
                                                                                                  long?limit               = null,
                                                                                                  ITwilioRestClient client = null)
        {
            var options = new ReadSampleOptions(pathAssistantSid, pathTaskSid)
            {
                Language = language, PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }
Ejemplo n.º 4
0
        /// <summary>
        /// read
        /// </summary>
        /// <param name="pathAssistantSid"> The SID of the Assistant that is the parent of the Task associated with the
        ///                        resources to read </param>
        /// <param name="pathTaskSid"> The SID of the Task associated with the Sample resources to read </param>
        /// <param name="language"> The ISO language-country string that specifies the language used for the sample </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 Sample </returns>
        public static ResourceSet <SampleResource> Read(string pathAssistantSid,
                                                        string pathTaskSid,
                                                        string language          = null,
                                                        int?pageSize             = null,
                                                        long?limit               = null,
                                                        ITwilioRestClient client = null)
        {
            var options = new ReadSampleOptions(pathAssistantSid, pathTaskSid)
            {
                Language = language, PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
Ejemplo n.º 5
0
        /// <summary>
        /// read
        /// </summary>
        /// <param name="options"> Read Sample parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of Sample </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <SampleResource> > ReadAsync(ReadSampleOptions options,
                                                                                                  ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildReadRequest(options, client));

            var page = Page <SampleResource> .FromJson("samples", response.Content);

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