mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-06 00:02:18 -04:00
* Add generated RBIs/fields * Manual changes, lint, rubocop, amount * fix accessors * Undo list param change and add extra fields to pass sorbet tc * add typed true * test fix * fix T.any * Ignore rbis in gem for now * fix docstrings and spaces * regen after rebase
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
|