Class: Quickfix::StrikeIndexQuote

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ StrikeIndexQuote

Returns a new instance of StrikeIndexQuote.



64460
64461
64462
64463
64464
64465
64466
# File 'lib/quickfix_fields.rb', line 64460

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

Class Method Details

.fieldObject



64457
64458
64459
# File 'lib/quickfix_fields.rb', line 64457

def StrikeIndexQuote.field
	return 2601
end