1
0
зеркало из https://github.com/glebtv/yookassa.git synced 2026-08-28 15:16:18 +03:00
Files
yookassa/lib/yookassa/entity/amount.rb
2026-03-06 17:46:32 +03:00

13 строки
227 B
Ruby

# frozen_string_literal: true
require_relative "types"
module Yookassa
module Entity
class Amount < Dry::Struct
attribute :value, Types::Coercible::Float
attribute :currency, Types::String
end
end
end