mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
13 lines
283 B
Ruby
13 lines
283 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class Product < APIResource
|
|
extend Stripe::APIOperations::Create
|
|
include Stripe::APIOperations::Delete
|
|
extend Stripe::APIOperations::List
|
|
include Stripe::APIOperations::Save
|
|
|
|
OBJECT_NAME = "product".freeze
|
|
end
|
|
end
|