Class: Quickfix::MinQty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MinQty

Returns a new instance of MinQty.



903
904
905
906
907
908
909
# File 'lib/quickfix_fields.rb', line 903

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

Class Method Details

.fieldObject



900
901
902
# File 'lib/quickfix_fields.rb', line 900

def MinQty.field
  return 110
end