mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-05 00:02:50 -04:00
* Introduce types to ruby * rubocop * forgot these files * other request methods * more tests, fix for raw request * Add README entry for types * rebase and regen
10 lines
128 B
Ruby
10 lines
128 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
module V2
|
|
class Amount
|
|
attr_reader :value, :currency
|
|
end
|
|
end
|
|
end
|