Class: Quickfix::StrikeCurrencyCodeSource

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StrikeCurrencyCodeSource

Returns a new instance of StrikeCurrencyCodeSource.



78604
78605
78606
78607
78608
78609
78610
# File 'lib/quickfix_fields.rb', line 78604

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