Class: Quickfix::RiskLimitStatus

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

Class Method Details

.fieldObject



23052
23053
23054
# File 'lib/quickfix_fields.rb', line 23052

def RiskLimitStatus.field
  return 1763
end