Class: Quickfix::MiscFeeQualifier

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MiscFeeQualifier

Returns a new instance of MiscFeeQualifier.



75796
75797
75798
75799
75800
75801
75802
# File 'lib/quickfix_fields.rb', line 75796

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