Class: Quickfix::LockedQty

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

Returns a new instance of LockedQty.



23640
23641
23642
23643
23644
23645
23646
# File 'lib/quickfix_fields.rb', line 23640

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

Class Method Details

.fieldObject



23637
23638
23639
# File 'lib/quickfix_fields.rb', line 23637

def LockedQty.field
  return 1808
end