Sha256: e6fb8a8c81f559714f58950128bf8aba05ab57400e96e90ac6417e8cba9ddf46

Contents?: true

Size: 374 Bytes

Versions: 3

Compression:

Stored size: 374 Bytes

Contents

# frozen_string_literal: true

module SevenBankFxRate
  module Elements
    # Corresponds to the currency tag in xml:
    # <currency>
    #   <currencycode>USD</currencycode>
    #   <currencyname>US Dollar</currencyname>
    #   <fxrate>0.0090386</fxrate>
    # </currency>
    class Currency
      attr_accessor :currency_code, :currency_name, :fx_rate
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
seven_bank_fx_rate-1.1.1 lib/seven_bank_fx_rate/elements/currency.rb
seven_bank_fx_rate-1.1.0 lib/seven_bank_fx_rate/elements/currency.rb
seven_bank_fx_rate-1.0.0 lib/seven_bank_fx_rate/elements/currency.rb