Example #1
0
 private static Request BuildReadRequest(ReadItemAssignmentOptions options, ITwilioRestClient client)
 {
     return(new Request(
                HttpMethod.Get,
                Rest.Domain.Numbers,
                "/v2/RegulatoryCompliance/Bundles/" + options.PathBundleSid + "/ItemAssignments",
                queryParams: options.GetParams()
                ));
 }
Example #2
0
        /// <summary>
        /// Retrieve a list of all Assigned Items for an account.
        /// </summary>
        /// <param name="options"> Read ItemAssignment parameters </param>
        /// <param name="client"> Client to make requests to Twilio </param>
        /// <returns> A single instance of ItemAssignment </returns>
        public static ResourceSet <ItemAssignmentResource> Read(ReadItemAssignmentOptions options,
                                                                ITwilioRestClient client = null)
        {
            client = client ?? TwilioClient.GetRestClient();
            var response = client.Request(BuildReadRequest(options, client));

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

            return(new ResourceSet <ItemAssignmentResource>(page, options, client));
        }
Example #3
0
        /// <summary>
        /// Retrieve a list of all Assigned Items for an account.
        /// </summary>
        /// <param name="pathBundleSid"> The unique string that identifies the resource. </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 ItemAssignment </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <ItemAssignmentResource> > ReadAsync(string pathBundleSid,
                                                                                                          int?pageSize             = null,
                                                                                                          long?limit               = null,
                                                                                                          ITwilioRestClient client = null)
        {
            var options = new ReadItemAssignmentOptions(pathBundleSid)
            {
                PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }
Example #4
0
        /// <summary>
        /// Retrieve a list of all Assigned Items for an account.
        /// </summary>
        /// <param name="pathBundleSid"> The unique string that identifies the resource. </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 ItemAssignment </returns>
        public static ResourceSet <ItemAssignmentResource> Read(string pathBundleSid,
                                                                int?pageSize             = null,
                                                                long?limit               = null,
                                                                ITwilioRestClient client = null)
        {
            var options = new ReadItemAssignmentOptions(pathBundleSid)
            {
                PageSize = pageSize, Limit = limit
            };

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

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

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