Class: Quickfix::UnderlyingPriceQuoteMethod

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

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

Class Method Details

.fieldObject



26575
26576
26577
# File 'lib/quickfix_fields.rb', line 26575

def UnderlyingPriceQuoteMethod.field
	return 2030
end