mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-05 00:02:50 -04:00
13 lines
257 B
Ruby
13 lines
257 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
module Issuing
|
|
class Transaction < Stripe::APIResource
|
|
extend Stripe::APIOperations::List
|
|
include Stripe::APIOperations::Save
|
|
|
|
OBJECT_NAME = "issuing.transaction".freeze
|
|
end
|
|
end
|
|
end
|