Class: Quickfix::RiskLimitType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RiskLimitType

Returns a new instance of RiskLimitType.



20572
20573
20574
20575
20576
20577
20578
# File 'lib/quickfix_fields.rb', line 20572

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