class Stripe::Product

and more about [Products and Prices](stripe.com/docs/products-prices/overview)
[accept payments with Checkout](stripe.com/docs/payments/accept-a-payment#create-product-prices-upfront),
[share a Payment Link](stripe.com/docs/payment-links),
Related guides: [Set up a subscription](stripe.com/docs/billing/subscriptions/set-up-subscription),
They can be used in conjunction with [Prices](stripe.com/docs/api#prices) to configure pricing in Payment Links, Checkout, and Subscriptions.
For example, you might offer a Standard and Premium version of your goods or service; each version would be a separate Product.
Products describe the specific goods or services you offer to your customers.

def self.search(params = {}, opts = {})

def self.search(params = {}, opts = {})
  _search("/v1/products/search", params, opts)
end

def self.search_auto_paging_each(params = {}, opts = {}, &blk)

def self.search_auto_paging_each(params = {}, opts = {}, &blk)
  search(params, opts).auto_paging_each(&blk)
end