/// <summary>
        /// Get the next page of scan forms based on the original parameters used to generate the list
        /// </summary>
        /// <param name="client">Easy post client to use</param>
        /// <returns>A new ScanFormList instance.</returns>
        public async Task <ScanFormList> Next(
            IEasyPostClient client)
        {
            var options = Options ?? new ScanFormListOptions();

            options.BeforeId = ScanForms.Last().Id;
            return(await client.ListScanForms(options));
        }