mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-06 00:02:18 -04:00
11 lines
260 B
Ruby
11 lines
260 B
Ruby
module Stripe
|
|
class InvoiceItem < APIResource
|
|
extend Stripe::APIOperations::List
|
|
extend Stripe::APIOperations::Create
|
|
include Stripe::APIOperations::Delete
|
|
include Stripe::APIOperations::Save
|
|
|
|
OBJECT_NAME = "invoiceitem".freeze
|
|
end
|
|
end
|