Class: Quickfix::RiskLimitStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RiskLimitStatus

Returns a new instance of RiskLimitStatus.



23055
23056
23057
23058
23059
23060
23061
# File 'lib/quickfix_fields.rb', line 23055

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