Class: Quickfix::ListOrderStatus

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

Returns a new instance of ListOrderStatus.



5388
5389
5390
5391
5392
5393
5394
# File 'lib/quickfix_fields.rb', line 5388

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

Class Method Details

.fieldObject



5385
5386
5387
# File 'lib/quickfix_fields.rb', line 5385

def ListOrderStatus.field
  return 431
end