Class: Quickfix::MiscFeeSubType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MiscFeeSubType

Returns a new instance of MiscFeeSubType.



62731
62732
62733
62734
62735
62736
62737
# File 'lib/quickfix_fields.rb', line 62731

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