Sha256: ee07cc7a84c2451f2b60584837375a0af7a008cb0cd02e3ca29c46b68eab4925
Contents?: true
Size: 518 Bytes
Versions: 38
Compression:
Stored size: 518 Bytes
Contents
# frozen_string_literal: true module Stripe module APIOperations module List def list(filters = {}, opts = {}) opts = Util.normalize_opts(opts) resp, opts = execute_resource_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
38 entries across 38 versions & 1 rubygems