Class: Quickfix::MiscFeeRate

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ MiscFeeRate

Returns a new instance of MiscFeeRate.



43595
43596
43597
43598
43599
43600
43601
# File 'lib/quickfix_fields.rb', line 43595

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

Class Method Details

.fieldObject



43592
43593
43594
# File 'lib/quickfix_fields.rb', line 43592

def MiscFeeRate.field
  return 2216
end