Class: Quickfix::PriceLimitType

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

Returns a new instance of PriceLimitType.



17335
17336
17337
17338
17339
17340
17341
# File 'lib/quickfix_fields.rb', line 17335

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

Class Method Details

.fieldObject



17332
17333
17334
# File 'lib/quickfix_fields.rb', line 17332

def PriceLimitType.field
	return 1306
end