Class: Quickfix::UnderlyingStreamTotalNotional

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) ⇒ UnderlyingStreamTotalNotional

Returns a new instance of UnderlyingStreamTotalNotional.



56556
56557
56558
56559
56560
56561
56562
# File 'lib/quickfix_fields.rb', line 56556

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

Class Method Details

.fieldObject



56553
56554
56555
# File 'lib/quickfix_fields.rb', line 56553

def UnderlyingStreamTotalNotional.field
  return 42023
end