Class: Quickfix::PosAmt

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PosAmt

Returns a new instance of PosAmt.



11225
11226
11227
11228
11229
11230
11231
# File 'lib/quickfix_fields.rb', line 11225

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

Class Method Details

.fieldObject



11222
11223
11224
# File 'lib/quickfix_fields.rb', line 11222

def PosAmt.field
	return 708
end