Sha256: 3fec17b107384348a894eb69df442a44cdb6c59ad9a6231b15f011cb31158184
Contents?: true
Size: 476 Bytes
Versions: 13
Compression:
Stored size: 476 Bytes
Contents
# frozen_string_literal: true module CoinsPaid module API class Currency < Dry::Struct transform_keys(&:to_sym) attribute :id, Types::Integer attribute :type, Types::String attribute :currency, Types::String attribute :minimum_amount, Types::JSON::Decimal attribute :deposit_fee_percent, Types::JSON::Decimal attribute :withdrawal_fee_percent, Types::JSON::Decimal attribute :precision, Types::Integer end end end
Version data entries
13 entries across 13 versions & 1 rubygems