Class: Quickfix::PriceType

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

Returns a new instance of PriceType.



5284
5285
5286
5287
5288
5289
5290
# File 'lib/quickfix_fields.rb', line 5284

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

Class Method Details

.fieldObject



5281
5282
5283
# File 'lib/quickfix_fields.rb', line 5281

def PriceType.field
	return 423
end