Skip to content

Instantly share code, notes, and snippets.

@sherazlodhi
Created April 17, 2021 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sherazlodhi/bf2bff0bf3348f65c55894be20d88926 to your computer and use it in GitHub Desktop.
Save sherazlodhi/bf2bff0bf3348f65c55894be20d88926 to your computer and use it in GitHub Desktop.
charges = Stripe::Charge.list({limit: 100})
charges.auto_paging_each do |charge|
# Do something with customer
puts "Charge ID => #{charge.id} \t Charge Amount => #{charge.amount}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment