Class: Quickfix::NumberOfOrders

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NumberOfOrders

Returns a new instance of NumberOfOrders.



14423
14424
14425
14426
14427
14428
14429
# File 'lib/quickfix_fields.rb', line 14423

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

Class Method Details

.fieldObject



14420
14421
14422
# File 'lib/quickfix_fields.rb', line 14420

def NumberOfOrders.field
  return 346
end