Class: Quickfix::DiscretionMoveType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DiscretionMoveType

Returns a new instance of DiscretionMoveType.



11407
11408
11409
11410
11411
11412
11413
# File 'lib/quickfix_fields.rb', line 11407

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