Sha256: 7ee74e16d0b7db0f59147c403a3d0c60a675966f74102016e9f2c44a55ad382e
Contents?: true
Size: 501 Bytes
Versions: 19
Compression:
Stored size: 501 Bytes
Contents
# frozen_string_literal: true module Stripe module APIOperations module List def list(filters = {}, opts = {}) opts = Util.normalize_opts(opts) resp, opts = request(:get, resource_url, filters, opts) obj = ListObject.construct_from(resp.data, opts) # set filters so that we can fetch the same limit, expansions, and # predicates when accessing the next and previous pages obj.filters = filters.dup obj end end end end
Version data entries
19 entries across 19 versions & 1 rubygems