Class: Quickfix::RiskLimitCheckType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RiskLimitCheckType

Returns a new instance of RiskLimitCheckType.



56660
56661
56662
56663
56664
56665
56666
# File 'lib/quickfix_fields.rb', line 56660

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