It would be good if you could document the new auto_paging_iter method for listable object in the Pagination docs: https://stripe.com/docs/api/python#pagination
I'm not quite sure of the best way to use it. Should I do this:
customers = stripe.Customer.auto_paging_iter()
for customer in customers:
do_something(customer)
What's the deal with limit - do I still need to set it? The docs still say the default value is 10, but I can't find any mention of the limit within the code - I'm assuming the default limit is set server-side?
It would be good if you could document the new
auto_paging_itermethod for listable object in the Pagination docs: https://stripe.com/docs/api/python#paginationI'm not quite sure of the best way to use it. Should I do this:
What's the deal with
limit- do I still need to set it? The docs still say the default value is 10, but I can't find any mention of the limit within the code - I'm assuming the default limit is set server-side?