Class: Quickfix::UnderlyingAssignmentMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingAssignmentMethod

Returns a new instance of UnderlyingAssignmentMethod.



26318
26319
26320
26321
26322
26323
26324
# File 'lib/quickfix_fields.rb', line 26318

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