Class: Quickfix::UnderlyingPriceQuoteMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingPriceQuoteMethod

Returns a new instance of UnderlyingPriceQuoteMethod.



26578
26579
26580
26581
26582
26583
26584
# File 'lib/quickfix_fields.rb', line 26578

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