Class: Quickfix::SecondaryLockedQty

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

Returns a new instance of SecondaryLockedQty.



23653
23654
23655
23656
23657
23658
23659
# File 'lib/quickfix_fields.rb', line 23653

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

Class Method Details

.fieldObject



23650
23651
23652
# File 'lib/quickfix_fields.rb', line 23650

def SecondaryLockedQty.field
  return 1809
end