Пример #1
0
        /// <summary>
        /// Retrieve a list of usage-records belonging to the account used to make the request
        /// </summary>
        /// <param name="pathAccountSid"> The account_sid </param>
        /// <param name="category"> Only include usage of a given category </param>
        /// <param name="startDate"> Filter by start date </param>
        /// <param name="endDate"> Filter by end date </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 Record </returns>
        public static ResourceSet <RecordResource> Read(string pathAccountSid = null,
                                                        RecordResource.CategoryEnum category = null,
                                                        DateTime?startDate       = null,
                                                        DateTime?endDate         = null,
                                                        int?pageSize             = null,
                                                        long?limit               = null,
                                                        ITwilioRestClient client = null)
        {
            var options = new ReadRecordOptions()
            {
                PathAccountSid = pathAccountSid, Category = category, StartDate = startDate, EndDate = endDate, PageSize = pageSize, Limit = limit
            };

            return(Read(options, client));
        }
Пример #2
0
        /// <summary>
        /// Retrieve a list of usage-records belonging to the account used to make the request
        /// </summary>
        /// <param name="pathAccountSid"> The SID of the Account that created the resources to read </param>
        /// <param name="category"> The usage category of the UsageRecord resources to read </param>
        /// <param name="startDate"> Only include usage that has occurred on or after this date </param>
        /// <param name="endDate"> Only include usage that occurred on or before this date </param>
        /// <param name="includeSubaccounts"> Whether to include usage from the master account and all its subaccounts </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 Record </returns>
        public static async System.Threading.Tasks.Task <ResourceSet <RecordResource> > ReadAsync(string pathAccountSid = null,
                                                                                                  RecordResource.CategoryEnum category = null,
                                                                                                  DateTime?startDate      = null,
                                                                                                  DateTime?endDate        = null,
                                                                                                  bool?includeSubaccounts = null,
                                                                                                  int?pageSize            = null,
                                                                                                  long?limit = null,
                                                                                                  ITwilioRestClient client = null)
        {
            var options = new ReadRecordOptions()
            {
                PathAccountSid = pathAccountSid, Category = category, StartDate = startDate, EndDate = endDate, IncludeSubaccounts = includeSubaccounts, PageSize = pageSize, Limit = limit
            };

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