Class: Quickfix::AssignmentUnit

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AssignmentUnit

Returns a new instance of AssignmentUnit.



10198
10199
10200
10201
10202
10203
10204
# File 'lib/quickfix_fields.rb', line 10198

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