Class: Quickfix::UnderlyingUnitOfMeasureQty

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

Returns a new instance of UnderlyingUnitOfMeasureQty.



17621
17622
17623
17624
17625
17626
17627
# File 'lib/quickfix_fields.rb', line 17621

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

Class Method Details

.fieldObject



17618
17619
17620
# File 'lib/quickfix_fields.rb', line 17618

def UnderlyingUnitOfMeasureQty.field
  return 1423
end