Class: Quickfix::TradingCurrency

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TradingCurrency

Returns a new instance of TradingCurrency.



16542
16543
16544
16545
16546
16547
16548
# File 'lib/quickfix_fields.rb', line 16542

def initialize(data = nil)
  if( data == nil )
    super(1245)
  else
    super(1245, data)
  end
end

Class Method Details

.fieldObject



16539
16540
16541
# File 'lib/quickfix_fields.rb', line 16539

def TradingCurrency.field
  return 1245
end