Class: Quickfix::OrderDelay

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrderDelay

Returns a new instance of OrderDelay.



18908
18909
18910
18911
18912
18913
18914
# File 'lib/quickfix_fields.rb', line 18908

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