helenye-stripe dc5174725f
Add RBI annotations for fields and params (#1559)
* 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
2025-03-31 14:29:41 -07:00

10 lines
128 B
Ruby

# frozen_string_literal: true
module Stripe
module V2
class Amount
attr_reader :value, :currency
end
end
end