Class: Quickfix::PosAmt

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) ⇒ PosAmt

Returns a new instance of PosAmt.



9717
9718
9719
9720
9721
9722
9723
# File 'lib/quickfix_fields.rb', line 9717

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

Class Method Details

.fieldObject



9714
9715
9716
# File 'lib/quickfix_fields.rb', line 9714

def PosAmt.field
	return 708
end