Class: Quickfix::QuotePriceType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuotePriceType

Returns a new instance of QuotePriceType.



9509
9510
9511
9512
9513
9514
9515
# File 'lib/quickfix_fields.rb', line 9509

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