# frozen_string_literal: true module SevenBankFxRate module Elements # Corresponds to the currency tag in xml: # # USD # US Dollar # 0.0090386 # class Currency attr_accessor :currency_code, :currency_name, :fx_rate end end end