mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-06 00:02:18 -04:00
12 lines
230 B
Ruby
12 lines
230 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class Price < APIResource
|
|
extend Stripe::APIOperations::Create
|
|
extend Stripe::APIOperations::List
|
|
include Stripe::APIOperations::Save
|
|
|
|
OBJECT_NAME = "price"
|
|
end
|
|
end
|