Class: Quickfix::OrderDelayUnit

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ OrderDelayUnit

Returns a new instance of OrderDelayUnit.



18921
18922
18923
18924
18925
18926
18927
# File 'lib/quickfix_fields.rb', line 18921

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

Class Method Details

.fieldObject



18918
18919
18920
# File 'lib/quickfix_fields.rb', line 18918

def OrderDelayUnit.field
  return 1429
end