Class: Quickfix::MinBidSize

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ MinBidSize

Returns a new instance of MinBidSize.



8716
8717
8718
8719
8720
8721
8722
# File 'lib/quickfix_fields.rb', line 8716

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

Class Method Details

.fieldObject



8713
8714
8715
# File 'lib/quickfix_fields.rb', line 8713

def MinBidSize.field
	return 647
end