Sha256: 6f4f8b5eab2f7ee0539f277b5652ef41ce92c6291a6bf2e0d8e17d0007fa0a64
Contents?: true
Size: 875 Bytes
Versions: 46
Compression:
Stored size: 875 Bytes
Contents
# File generated from our OpenAPI spec # frozen_string_literal: true module Stripe module Issuing # A Physical Bundle represents the bundle of physical items - card stock, carrier letter, and envelope - that is shipped to a cardholder when you create a physical card. class PhysicalBundle < APIResource extend Stripe::APIOperations::List OBJECT_NAME = "issuing.physical_bundle" def self.object_name "issuing.physical_bundle" end # Returns a list of physical bundle objects. The objects are sorted in descending order by creation date, with the most recently created object appearing first. def self.list(filters = {}, opts = {}) request_stripe_object( method: :get, path: "/v1/issuing/physical_bundles", params: filters, opts: opts ) end end end end
Version data entries
46 entries across 46 versions & 1 rubygems