class Security::ComboboxOption include ActiveModel::Model attr_accessor :symbol, :name, :logo_url, :exchange_operating_mic, :country_code def id "#{symbol}|#{exchange_operating_mic}" end def exchange_name Security.exchange_name_for(exchange_operating_mic) end def to_combobox_display I18n.t( "securities.combobox.display", symbol: symbol, name: name, exchange: exchange_name ) end end