Class: Quickfix::PosAmtType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PosAmtType

Returns a new instance of PosAmtType.



9704
9705
9706
9707
9708
9709
9710
# File 'lib/quickfix_fields.rb', line 9704

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