Class: Quickfix::QuoteStatus

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) ⇒ QuoteStatus

Returns a new instance of QuoteStatus.



6194
6195
6196
6197
6198
6199
6200
# File 'lib/quickfix_fields.rb', line 6194

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

Class Method Details

.fieldObject



6191
6192
6193
# File 'lib/quickfix_fields.rb', line 6191

def QuoteStatus.field
	return 297
end