Esempio n. 1
0
        /// <summary>
        /// Retrieve a list of all Regulations.
        /// </summary>
        /// <param name="endUserType"> The type of End User of the Regulation resource </param>
        /// <param name="isoCountry"> The ISO country code of the phone number's country </param>
        /// <param name="numberType"> The type of phone number being regulated </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 Regulation </returns>
        public static ResourceSet <RegulationResource> Read(RegulationResource.EndUserTypeEnum endUserType = null,
                                                            string isoCountry        = null,
                                                            string numberType        = null,
                                                            int?pageSize             = null,
                                                            long?limit               = null,
                                                            ITwilioRestClient client = null)
        {
            var options = new ReadRegulationOptions()
            {
                EndUserType = endUserType, IsoCountry = isoCountry, NumberType = numberType, PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
Esempio n. 2
0
        /// <summary>
        /// Retrieve a list of all Regulations.
        /// </summary>
        /// <param name="endUserType"> The type of End User of the Regulation resource </param>
        /// <param name="isoCountry"> The ISO country code of the phone number's country </param>
        /// <param name="numberType"> The type of phone number being regulated </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 Regulation </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <RegulationResource> > ReadAsync(RegulationResource.EndUserTypeEnum endUserType = null,
                                                                                                      string isoCountry        = null,
                                                                                                      string numberType        = null,
                                                                                                      int?pageSize             = null,
                                                                                                      long?limit               = null,
                                                                                                      ITwilioRestClient client = null)
        {
            var options = new ReadRegulationOptions()
            {
                EndUserType = endUserType, IsoCountry = isoCountry, NumberType = numberType, PageSize = pageSize, Limit = limit
            };

            return(await ReadAsync(options, client));
        }