Class: Quickfix::TotalNotAffectedOrders

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TotalNotAffectedOrders

Returns a new instance of TotalNotAffectedOrders.



75354
75355
75356
75357
75358
75359
75360
# File 'lib/quickfix_fields.rb', line 75354

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