Class: Quickfix::QuoteStatus

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ QuoteStatus

Returns a new instance of QuoteStatus.



13032
13033
13034
13035
13036
13037
13038
# File 'lib/quickfix_fields.rb', line 13032

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

Class Method Details

.fieldObject



13029
13030
13031
# File 'lib/quickfix_fields.rb', line 13029

def QuoteStatus.field
	return 297
end