Class: Quickfix::SecondaryPriceLimitType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecondaryPriceLimitType

Returns a new instance of SecondaryPriceLimitType.



17322
17323
17324
17325
17326
17327
17328
# File 'lib/quickfix_fields.rb', line 17322

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