Class: Quickfix::PosAmtMarketID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PosAmtMarketID

Returns a new instance of PosAmtMarketID.



40397
40398
40399
40400
40401
40402
40403
# File 'lib/quickfix_fields.rb', line 40397

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