示例#1
0
        /// <summary>
        /// Retrieve a list of all End User for an account.
        /// </summary>
        /// <param name="options"> Read EndUser parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of EndUser </returns>
        public static ResourceSet <EndUserResource> Read(ReadEndUserOptions options, ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildReadRequest(options, client));

            var page = Page <EndUserResource> .FromJson("results", response.Content);

            return(new ResourceSet <EndUserResource>(page, options, client));
        }
示例#2
0
 private static Request BuildReadRequest(ReadEndUserOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Trusthub,
                "/v1/EndUsers",
                queryParams: options.GetParams(),
                headerParams: null
                ));
 }
示例#3
0
        /// <summary>
        /// Retrieve a list of all End User for an account.
        /// </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 EndUser </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <EndUserResource> > ReadAsync(int?pageSize             = null,
                                                                                                   long?limit               = null,
                                                                                                   ITwilioRestClient client = null)
        {
            var options = new ReadEndUserOptions()
            {
                PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }
示例#4
0
        /// <summary>
        /// Retrieve a list of all End User for an account.
        /// </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 EndUser </returns>
        public static ResourceSet <EndUserResource> Read(int?pageSize             = null,
                                                         long?limit               = null,
                                                         ITwilioRestClient client = null)
        {
            var options = new ReadEndUserOptions()
            {
                PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
示例#5
0
        /// <summary>
        /// Retrieve a list of all End User for an account.
        /// </summary>
        /// <param name="options"> Read EndUser parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> Task that resolves to A single instance of EndUser </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <EndUserResource> > ReadAsync(ReadEndUserOptions options,
                                                                                                   ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = await client.RequestAsync(BuildReadRequest(options, client));

            var page = Page <EndUserResource> .FromJson("results", response.Content);

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